:root {
    --bg: #0a0a0a;
    --bg-elevated: #141414;
    --bg-card: #1a1a1a;
    
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.5);
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    
    --text: #f5f5f5;
    --text-muted: #737373;
    --text-dim: #525252;
    
    --border: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(139, 92, 246, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== PARTICLE BACKGROUND ========== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

/* ========== SCANLINES ========== */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
}

/* ========== GLITCH OVERLAY ========== */
.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.05) 50%, 
        transparent 100%);
    animation: glitch-sweep 8s infinite;
}

@keyframes glitch-sweep {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 0.1; }
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo img {
    height: 36px;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav__access {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.access-indicator {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.access-text {
    color: #c4b5fd;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.encrypted-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--border-glow);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.encrypted-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

.encrypted-badge i {
    color: var(--primary);
}

.hero__title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
}

/* ========== GLITCH EFFECT ========== */
.glitch {
    position: relative;
    color: #fff;
    text-shadow: 
        0.02em 0 0 var(--primary),
        -0.02em -0.02em 0 var(--accent);
    animation: glitch-text 5s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--primary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-text {
    0%, 100% { text-shadow: 0.02em 0 0 var(--primary), -0.02em -0.02em 0 var(--accent); }
    14% { text-shadow: 0.02em 0 0 var(--primary), -0.02em -0.02em 0 var(--accent); }
    15% { text-shadow: -0.02em -0.02em 0 var(--primary), 0.02em 0.02em 0 var(--accent); }
    49% { text-shadow: -0.02em -0.02em 0 var(--primary), 0.02em 0.02em 0 var(--accent); }
    50% { text-shadow: 0.02em 0.02em 0 var(--primary), -0.02em 0 0 var(--accent); }
    99% { text-shadow: 0.02em 0.02em 0 var(--primary), -0.02em 0 0 var(--accent); }
}

@keyframes glitch-anim {
    0% { clip: rect(23px, 9999px, 53px, 0); }
    10% { clip: rect(76px, 9999px, 12px, 0); }
    20% { clip: rect(41px, 9999px, 95px, 0); }
    30% { clip: rect(88px, 9999px, 31px, 0); }
    40% { clip: rect(15px, 9999px, 68px, 0); }
    50% { clip: rect(62px, 9999px, 44px, 0); }
    60% { clip: rect(34px, 9999px, 71px, 0); }
    70% { clip: rect(92px, 9999px, 18px, 0); }
    80% { clip: rect(49px, 9999px, 86px, 0); }
    90% { clip: rect(27px, 9999px, 59px, 0); }
    100% { clip: rect(73px, 9999px, 37px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 21px, 0); }
    10% { clip: rect(38px, 9999px, 84px, 0); }
    20% { clip: rect(91px, 9999px, 47px, 0); }
    30% { clip: rect(19px, 9999px, 73px, 0); }
    40% { clip: rect(56px, 9999px, 29px, 0); }
    50% { clip: rect(82px, 9999px, 14px, 0); }
    60% { clip: rect(43px, 9999px, 67px, 0); }
    70% { clip: rect(25px, 9999px, 95px, 0); }
    80% { clip: rect(78px, 9999px, 36px, 0); }
    90% { clip: rect(52px, 9999px, 61px, 0); }
    100% { clip: rect(11px, 9999px, 89px, 0); }
}

.hero__subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.hero__subtitle .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero__subtitle p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.tech-tag {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.cta-section {
    margin-bottom: 80px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #5865f2, #7289da);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(88, 101, 242, 0.6);
}

.btn-icon {
    font-size: 1.4rem;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.access-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.access-note i {
    color: var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    font-size: 1.3rem;
    color: #fff;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== TITLES SECTION ========== */
.titles-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.game-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-glow), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
}

.game-card:hover::before {
    opacity: 0.1;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

.status-dot--dev {
    background: var(--warning);
}

.status-dot--locked {
    background: var(--text-dim);
    animation: none;
}

.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.game-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-stats {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.card-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-stats i {
    color: var(--accent);
}

.card-eta,
.card-locked {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-eta i,
.card-locked i {
    color: var(--warning);
}

.card-locked i {
    color: var(--text-dim);
}

.game-card--mystery {
    position: relative;
}

.game-card--mystery::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
    animation: mystery-pulse 3s infinite;
}

@keyframes mystery-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* ========== SERVERS TERMINAL ========== */
.servers-showcase {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.servers-terminal {
    max-width: 900px;
    margin: 0 auto 32px;
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot--red { background: #ef4444; }
.terminal-dot--yellow { background: #f59e0b; }
.terminal-dot--green { background: #10b981; }

.terminal-title {
    margin-left: 12px;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
}

.terminal-body {
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.terminal-line {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.prompt {
    color: var(--accent);
    font-weight: 600;
}

.command {
    color: #fff;
}

.output {
    padding-left: 24px;
}

.timestamp {
    color: var(--text-dim);
}

.status-ok {
    color: var(--success);
    font-weight: 600;
}

.badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
}

.badge--undetected {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.servers-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.servers-note i {
    color: var(--accent);
}

/* ========== EXCLUSIVE SECTION ========== */
.exclusive-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.exclusive-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 48px;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.05), rgba(0, 0, 0, 0.3));
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.exclusive-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
    animation: exclusive-pulse 6s infinite;
}

@keyframes exclusive-pulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(1.1); }
}

.exclusive-icon {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    font-size: 3rem;
    color: #fff;
    box-shadow: 0 20px 60px var(--primary-glow);
}

.exclusive-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.exclusive-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.exclusive-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-mini:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.feature-mini i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-mini span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* ========== FOOTER ========== */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-logo img {
    height: 32px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-dim);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 4rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .exclusive-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ========== NEW STYLES ========== */

.btn-login {
    padding: 8px 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--primary);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.pricing-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.premium-card {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(0, 0, 0, 0.3));
    border-color: rgba(139, 92, 246, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price span:first-child {
    font-size: 2rem;
    color: var(--text-muted);
}

.price .period {
    font-size: 1rem;
    color: var(--text-dim);
}

.features-list {
    list-style: none;
    margin-bottom: 48px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text);
}

.features-list i {
    color: var(--success);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.real-servers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.real-server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    text-align: center;
}

.real-server-card:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    background: rgba(255,255,255,0.03);
    padding: 4px 12px;
    border-radius: 20px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .real-servers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .real-servers-grid {
        grid-template-columns: 1fr;
    }
}
