:root {
    --bg-body: #09090b;       
    --bg-card: #18181b;       
    --bg-card-hover: #27272a;
    
    --primary: #8b5cf6;       
    --primary-hover: #7c3aed;
    --accent: #3b82f6;        
    
    --text-main: #f4f4f5;     
    --text-muted: #a1a1aa;    
    
    --border: #27272a;        
    --border-light: #3f3f46;
    
    --container-width: 1200px;
    --radius: 12px;
    --header-height: 80px;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden; 
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #52525b;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.01em; }

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.badge--new {
    background: rgba(139, 92, 246, 0.1); 
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.39);
}
.btn--primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(139, 92, 246, 0.23);
}

.btn--secondary {
    background: transparent;
    color: var(--text-muted);
}
.btn--secondary:hover {
    color: #fff;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}
.btn--outline:hover {
    border-color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn--full {
    width: 90%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(9, 9, 11, 0.8); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__logo img {
    max-height: 40px;
}

.logo-icon { color: var(--primary); }

.navbar__menu {
    display: flex;
    gap: 32px;
}
.navbar__menu a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}
.navbar__menu a:hover { color: #fff; }

.navbar__actions { display: flex; gap: 16px; }


.hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, transparent 80%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.code-window {
    background: #0f0f12;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
}

.code-header {
    background: #18181b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #10b981; }
.filename { 
    margin-left: 10px; 
    font-size: 0.85rem; 
    color: var(--text-muted); 
}

.code-window pre {
    padding: 24px;
    margin: 0;
    color: #e4e4e7;
    font-size: 0.9rem;
    line-height: 1.6;
}

.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section__header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}
.section__title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.game-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-muted);
    transition: 0.3s;
}
.game-card:hover .game-card__icon { color: var(--primary); }

.game-card__info h3 { font-size: 1.5rem; margin-bottom: 10px; }

.status {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}
.status--online { color: #10b981; }
.status--dev { color: #f59e0b; }

.game-card .description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.game-card__action { margin-top: auto; }

.btn-link {
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-link i { transition: 0.3s; }
.btn-link:hover i { transform: translateX(5px); }
.btn-link.disabled { color: var(--text-muted); cursor: not-allowed; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-box {
    background: rgba(255,255,255,0.02);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: 0.3s;
}
.feature-box:hover {
    background: rgba(255,255,255,0.04);
    border-color: var(--border);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.feature-box h4 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-box p { font-size: 0.9rem; color: var(--text-muted); }

.pricing-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
}

.pricing-card--main {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.05);
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.pricing-footer {
    margin-top: 30px;
}

.price {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}
.currency { font-size: 1.5rem; color: var(--text-muted); }
.amount { font-size: 3.5rem; font-weight: 800; color: #fff; }
.period { font-size: 1rem; color: var(--text-muted); }

.features-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    color: var(--text-main);
}
.features-list i { color: var(--primary); margin-top: 4px;}

.addons-selector {
    margin-top: 30px;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
}
.addons-selector h4 { font-size: 1rem; margin-bottom: 16px; }

.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
}
.addon-checkbox:last-child { margin-bottom: 0; }

.addon-content { flex-grow: 1; }
.addon-name { display: block; font-weight: 500; font-size: 0.95rem; }
.addon-desc { display: block; font-size: 0.8rem; color: var(--text-muted); }
.addon-price { font-weight: 600; color: var(--primary); }

.vat-info {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.lifetime-info-box {
    background: linear-gradient(145deg, #1e1e24, #18181b);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}
.lifetime-info-box .icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 16px;
}
.lifetime-info-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


.footer {
    border-top: 1px solid var(--border);
    padding-top: 80px;
    margin-top: 50px;
    background: #050505;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 16px;
}

.footer__col p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }

.socials { display: flex; gap: 16px; }
.socials a {
    width: 40px; height: 40px;
    background: var(--bg-card);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
}
.socials a:hover { background: var(--primary); color: #fff; }

.footer__col h4 { font-size: 1rem; margin-bottom: 20px; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { color: var(--text-muted); font-size: 0.9rem; }
.footer__col ul a:hover { color: var(--primary); }

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 24px;
    text-align: center;
    color: #52525b;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .hero__container { grid-template-columns: 1fr; text-align: center; }
    .hero__description { margin: 0 auto 2.5rem auto; }
    .hero__buttons { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual { display: none;  }
    
    .features-grid { grid-template-columns: 1fr 1fr; }
    .pricing-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .navbar__menu { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .footer__container { grid-template-columns: 1fr; text-align: center; }
    .socials { justify-content: center; }
}

/* --- SERVERS SECTION --- */
.section--servers {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 100%);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.server-card {
    background: #0f0f11;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.2s ease;
}

.server-card:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.server-card__icon {
    color: #52525b;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.server-card__content {
    flex: 1;
    overflow: hidden;
}

.server-card__content h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e4e4e7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Status Badges */
.server-card__status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.status-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.status-info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.servers-footer {
    text-align: center;
    margin-top: 30px;
}

/* ==================== TWO MODES SECTION ==================== */
.section--modes {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.03) 0%, rgba(9, 9, 11, 0) 100%);
    position: relative;
    overflow: hidden;
}

.section--modes::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.badge-new {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #d8b4fe;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .modes-grid {
        grid-template-columns: 1fr;
    }
}

.mode-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mode-card--featured {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
}

.mode-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.mode-card__header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.mode-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.mode-card--script .mode-icon {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: white;
}

.mode-card__header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.mode-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.mode-card__body {
    flex: 1;
    position: relative;
    z-index: 1;
}

.mode-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.mode-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mode-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: 0.2s;
}

.mode-feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(139, 92, 246, 0.3);
}

.mode-feature-item > i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.mode-feature-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.mode-feature-item span {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.mode-highlight {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 24px;
}

.mode-highlight--accent {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
    border-color: rgba(139, 92, 246, 0.4);
}

.mode-highlight > i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.mode-highlight span {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.mode-card__footer {
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.modes-footer {
    margin-top: 50px;
    text-align: center;
}

.modes-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 14px 24px;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.modes-note i {
    color: var(--accent);
}
