
        /* ===== Reset & Base ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 72px;
        }
        
        body {
            font-family: 'Courier New', 'Consolas', monospace;
            background: #0a0e1a;
            color: #c8d6e5;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        /* ===== Scanline Effect ===== */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 200, 0.015) 2px,
                rgba(0, 255, 200, 0.015) 4px
            );
            pointer-events: none;
            z-index: 9999;
        }
        
        /* ===== Typography ===== */
        h1, h2, h3, h4 {
            font-family: 'Courier New', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        
        /* ===== Color Variables ===== */
        :root {
            --neon-cyan: #00ffc8;
            --neon-pink: #ff2d78;
            --neon-purple: #b14dff;
            --neon-yellow: #ffe600;
            --bg-deep: #0a0e1a;
            --bg-panel: #111827;
            --bg-card: #1a2035;
            --text-primary: #e2e8f0;
            --text-muted: #64748b;
            --border-glow: rgba(0, 255, 200, 0.3);
        }
        
        /* ===== Glitch Text ===== */
        @keyframes glitch {
            0%, 100% { text-shadow: 2px 0 var(--neon-cyan), -2px 0 var(--neon-pink); }
            25% { text-shadow: -2px 0 var(--neon-cyan), 2px 0 var(--neon-pink); }
            50% { text-shadow: 2px 2px var(--neon-cyan), -2px -2px var(--neon-pink); }
            75% { text-shadow: -2px 2px var(--neon-cyan), 2px -2px var(--neon-pink); }
        }
        
        @keyframes neonPulse {
        }
        
        @keyframes scanline {
        }
        
        @keyframes dataStream {
        }
        
        .glitch-text {
            animation: glitch 3s infinite;
        }
        
        .neon-text {
            color: var(--neon-cyan);
            text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px rgba(0,255,200,0.3);
        }
        
        /* ===== Scrollbar ===== */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-deep); }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-purple));
            border-radius: 3px;
        }
        
        /* ===== Navigation ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 14, 26, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--border-glow);
            padding: 0.75rem 0;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            border: 2px solid var(--neon-cyan);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-cyan);
            position: relative;
        }
        
        .logo-icon::before {
            content: '';
            position: absolute;
            inset: -4px;
            border: 1px solid rgba(0, 255, 200, 0.2);
            border-radius: 6px;
        }
        
        .logo-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--neon-cyan);
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .logo-sub {
            font-size: 0.6rem;
            color: var(--text-muted);
            letter-spacing: 2px;
            display: block;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-links a::before {
            content: '//';
            margin-right: 4px;
            color: var(--neon-pink);
        }
        
        .nav-links a:hover {
            color: var(--neon-cyan);
            text-shadow: 0 0 10px var(--neon-cyan);
        }
        
        .nav-cta {
            background: transparent;
            color: var(--neon-cyan);
            padding: 0.5rem 1.25rem;
            border: 1px solid var(--neon-cyan);
            text-decoration: none;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,255,200,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .nav-cta:hover::before {
            left: 100%;
        }
        
        .nav-cta:hover {
            background: rgba(0, 255, 200, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 200, 0.3), inset 0 0 20px rgba(0, 255, 200, 0.1);
        }
        
        /* ===== Hero Section ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 2rem 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0,255,200,0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,255,200,0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: dataStream 20s linear infinite;
        }
        
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: neonPulse 4s ease-in-out infinite;
        }
        
        .hero-orb-1 {
            width: 500px;
            height: 500px;
            background: var(--neon-cyan);
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }
        
        .hero-orb-2 {
            width: 400px;
            height: 400px;
            background: var(--neon-pink);
            bottom: -100px;
            left: -100px;
            animation-delay: 2s;
        }
        
        .hero-orb-3 {
            width: 300px;
            height: 300px;
            background: var(--neon-purple);
            top: 50%;
            left: 50%;
            animation-delay: 1s;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-tag {
            display: inline-block;
            border: 1px solid var(--neon-pink);
            color: var(--neon-pink);
            padding: 0.25rem 1rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2rem;
        }
        
        .hero-title {
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-title .neon {
            color: var(--neon-cyan);
            text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px rgba(0,255,200,0.5);
        }
        
        .hero-desc {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }
        
        .hero-stats {
            display: flex;
            gap: 3rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--neon-cyan);
            text-shadow: 0 0 15px var(--neon-cyan);
            display: block;
        }
        
        .hero-stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 0.25rem;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-neon {
            background: var(--neon-cyan);
            color: var(--bg-deep);
            padding: 0.875rem 2rem;
            border: none;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-neon:hover {
            box-shadow: 0 0 30px var(--neon-cyan), 0 0 60px rgba(0,255,200,0.3);
            transform: translateY(-2px);
        }
        
        .btn-ghost {
            background: transparent;
            color: var(--neon-pink);
            padding: 0.875rem 2rem;
            border: 1px solid var(--neon-pink);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        
        .btn-ghost:hover {
            background: rgba(255, 45, 120, 0.1);
            box-shadow: 0 0 20px rgba(255, 45, 120, 0.3);
        }
        
        /* ===== Section Base ===== */
        section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-label {
            font-size: 0.7rem;
            color: var(--neon-pink);
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 0.75rem;
        }
        
        .section-title {
            color: white;
            margin-bottom: 1rem;
        }
        
        .section-desc {
            color: var(--text-muted);
            max-width: 600px;
            margin-bottom: 3rem;
        }
        
        /* ===== Version Cards ===== */
        .versions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }
        
        .version-card {
            background: var(--bg-card);
            border: 1px solid rgba(0, 255, 200, 0.15);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .version-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
        }
        
        .version-card.v60::before { background: linear-gradient(90deg, var(--neon-cyan), transparent); }
        .version-card.v70::before { background: linear-gradient(90deg, var(--neon-pink), transparent); }
        .version-card.v86::before { background: linear-gradient(90deg, var(--neon-purple), transparent); }
        
        .version-card:hover {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 30px rgba(0, 255, 200, 0.1);
            transform: translateY(-5px);
        }
        
        .version-number {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .v60 .version-number { color: var(--neon-cyan); text-shadow: 0 0 20px var(--neon-cyan); }
        .v70 .version-number { color: var(--neon-pink); text-shadow: 0 0 20px var(--neon-pink); }
        .v86 .version-number { color: var(--neon-purple); text-shadow: 0 0 20px var(--neon-purple); }
        
        .version-name {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .version-desc {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .version-specs {
            list-style: none;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 1rem;
        }
        
        .version-specs li {
            padding: 0.4rem 0;
            color: var(--text-muted);
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .version-specs li::before {
            content: '>';
            color: var(--neon-cyan);
            font-weight: 700;
        }
        
        /* ===== Features ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .feature-card {
            background: var(--bg-panel);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .feature-card:hover {
            border-color: var(--neon-pink);
            box-shadow: 0 0 20px rgba(255, 45, 120, 0.1);
        }
        
        .feature-code {
            font-size: 0.65rem;
            color: var(--neon-pink);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }
        
        .feature-title {
            color: white;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feature-desc {
            color: var(--text-muted);
            font-size: 0.8rem;
            line-height: 1.7;
        }
        
        /* ===== Classes ===== */
        .classes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }
        
        .class-card {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .class-card:hover {
            border-color: var(--neon-purple);
            transform: translateY(-3px);
        }
        
        .class-id {
            font-size: 0.6rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }
        
        .class-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .class-name {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .class-role {
            color: var(--neon-cyan);
            font-size: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .class-skills {
            display: flex;
            gap: 0.4rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .skill-chip {
            background: rgba(0, 255, 200, 0.08);
            border: 1px solid rgba(0, 255, 200, 0.2);
            color: var(--neon-cyan);
            padding: 0.2rem 0.6rem;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* ===== Server Status ===== */
        .server-section {
            background: var(--bg-panel);
            border: 1px solid rgba(0, 255, 200, 0.1);
            padding: 3rem;
        }
        
        .server-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .server-item {
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.05);
            background: var(--bg-deep);
        }
        
        .server-name {
            color: var(--neon-cyan);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .server-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #00ff88;
            box-shadow: 0 0 10px #00ff88;
            animation: neonPulse 2s infinite;
        }
        
        .status-text {
            color: #00ff88;
            font-size: 0.75rem;
            text-transform: uppercase;
        }
        
        .server-stats {
            display: flex;
            justify-content: space-between;
            font-size: 0.7rem;
            color: var(--text-muted);
        }
        
        /* ===== Download ===== */
        .download-box {
            background: var(--bg-card);
            border: 2px solid var(--neon-cyan);
            padding: 4rem 3rem;
            text-align: center;
            position: relative;
        }
        
        .download-box::before,
        .download-box::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid var(--neon-cyan);
        }
        
        .download-box::before {
            top: -2px;
            left: -2px;
            border-right: none;
            border-bottom: none;
        }
        
        
        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .download-item {
            padding: 1.5rem;
            border: 1px solid rgba(0, 255, 200, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .download-item:hover {
            background: rgba(0, 255, 200, 0.05);
            border-color: var(--neon-cyan);
        }
        
        .download-item a {
            color: var(--neon-cyan);
            text-decoration: none;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .download-item p {
            color: var(--text-muted);
            font-size: 0.7rem;
            margin-top: 0.5rem;
        }
        
        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1.5rem 0;
        }
        
        .faq-question {
            color: white;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .faq-question::after {
            content: '+';
            color: var(--neon-cyan);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            color: var(--text-muted);
            font-size: 0.8rem;
            line-height: 1.8;
            padding-top: 1rem;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* ===== Footer ===== */
        .footer {
            border-top: 1px solid rgba(0, 255, 200, 0.1);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-cyan);
        }
        
        .footer-copy {
            color: var(--text-muted);
            font-size: 0.7rem;
            letter-spacing: 1px;
        }
        
        /* ===== Responsive ===== */
        @media (max-width: 768px) {
        }

/* ===== Layout & Grid ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-md-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; box-sizing: border-box; }
.col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; box-sizing: border-box; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; box-sizing: border-box; }
.col-lg-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; box-sizing: border-box; }
.col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; box-sizing: border-box; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; box-sizing: border-box; }
@media (max-width: 768px) {
}

/* ===== Spacing ===== */
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ===== Typography ===== */
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.fs-5 { font-size: 1.1rem; }
.fs-6 { font-size: 1rem; }
.text-small { font-size: 0.85rem; }
.align-items-center { align-items: center; }
.d-flex { display: flex; }

/* ===== Section Title ===== */
.section-subtitle {
    text-align: center;
    color: #7080a0;
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ===== Cards ===== */
.card {
    background: #0a0e1a;
    border: 1px solid #00ffff33;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.card:hover {
    border-color: #00ffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ===== Server Status Cards ===== */
.server-card {
    background: #0a0e1a;
    border: 1px solid #00ffff33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.server-card:hover {
    border-color: #00ffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.server-status.online {
    background: #22c55e22;
    color: #22c55e;
}
.server-status.busy {
    background: #f59e0b22;
    color: #f59e0b;
}
.server-status.full {
    background: #ef444422;
    color: #ef4444;
}
.server-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #7080a0;
    margin-top: 0.5rem;
}
.server-progress {
    width: 100%;
    height: 6px;
    background: #1a1e2e;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.8rem;
}
.server-progress-bar {
    height: 100%;
    background: #00ffff;
    border-radius: 3px;
    transition: width 0.6s ease;
}

/* ===== Review Cards ===== */
.review-card {
    background: #0a0e1a;
    border: 1px solid #00ffff33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}
.review-card:hover {
    border-color: #00ffff;
    transform: translateY(-3px);
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: #00ffff;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}
.review-stars {
    color: #00ffff;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}
.review-text {
    color: #7080a0;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}
.review-author {
    font-weight: 600;
    color: #e0e0ff;
    font-size: 0.85rem;
}
.review-role {
    color: #7080a0;
    font-size: 0.75rem;
}

/* ===== FAQ / Accordion ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background: #0a0e1a;
    border: 1px solid #00ffff33;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s;
}
.accordion-item:hover {
    border-color: #00ffff;
}
.accordion-header {
    margin: 0;
}
.accordion-button {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: #e0e0ff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    font-family: inherit;
}
.accordion-button:hover {
    color: #00ffff;
}
.accordion-button::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #00ffff;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.accordion-button.active::after {
    content: '−';
}
.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-collapse.show {
    max-height: 500px;
}
.accordion-body {
    padding: 0 1.5rem 1.2rem;
    color: #7080a0;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== Update/News Cards ===== */
.update-card {
    background: #0a0e1a;
    border: 1px solid #00ffff33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.update-card:hover {
    border-color: #00ffff;
    transform: translateY(-3px);
}
.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #00ffff;
    border-radius: 4px 0 0 4px;
}
.update-date {
    font-size: 0.75rem;
    color: #7080a0;
    margin-bottom: 0.5rem;
}
.update-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #00ffff22;
    color: #00ffff;
    margin-bottom: 0.8rem;
}
.update-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e0e0ff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.update-desc {
    font-size: 0.85rem;
    color: #7080a0;
    line-height: 1.6;
}

/* ===== Version Cards ===== */
.version-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    background: #00ffff22;
    color: #00ffff;
    margin-bottom: 1rem;
}
.version-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.version-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #7080a0;
    border-bottom: 1px solid #00ffff33;
}
.version-features li:last-child {
    border-bottom: none;
}
.version-features li::before {
    content: '✓ ';
    color: #00ffff;
    font-weight: 700;
}

/* ===== Equipment Cards (cyber only) ===== */
.equipment-card {
    background: #0a0e1a;
    border: 1px solid #00ffff33;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.equipment-card:hover {
    border-color: #00ffff;
    transform: translateY(-3px);
}
.equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.equipment-name {
    font-weight: 700;
    color: #e0e0ff;
    margin-bottom: 0.3rem;
}
.equipment-desc {
    font-size: 0.8rem;
    color: #7080a0;
}

/* ===== Dungeon Cards ===== */
.dungeon-card {
    background: #0a0e1a;
    border: 1px solid #00ffff33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.dungeon-card:hover {
    border-color: #00ffff;
    transform: translateY(-3px);
}
.dungeon-name {
    font-weight: 700;
    color: #e0e0ff;
    margin-bottom: 0.3rem;
}
.dungeon-level {
    font-size: 0.75rem;
    color: #00ffff;
    background: #00ffff22;
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.dungeon-desc {
    font-size: 0.85rem;
    color: #7080a0;
    line-height: 1.6;
}

/* ===== Guide Section ===== */
.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: #0a0e1a;
    border: 1px solid #00ffff33;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.guide-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #00ffff;
    color: #050810;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.guide-content h4 {
    color: #e0e0ff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.guide-content p {
    color: #7080a0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Community Section ===== */
.community-card {
    background: #0a0e1a;
    border: 1px solid #00ffff33;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.community-card:hover {
    border-color: #00ffff;
    transform: translateY(-3px);
}
.community-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}
.community-name {
    font-weight: 700;
    color: #e0e0ff;
    margin-bottom: 0.3rem;
}
.community-desc {
    font-size: 0.8rem;
    color: #7080a0;
    margin-bottom: 0.8rem;
}
.community-link {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #00ffff22;
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s;
}
.community-link:hover {
    background: #00ffff;
    color: #050810;
}

/* ===== Badge ===== */
.badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #00ffff22;
    color: #00ffff;
}

/* ===== Text Utilities ===== */
.text-warning { color: #f59e0b; }
.text-muted { color: #7080a0; }
.text-accent { color: #00ffff; }

/* ===== Section Backgrounds ===== */
.section-alt {
    background: #080c18;
    padding: 4rem 0;
}
.section-dark {
    background: #050810;
    padding: 4rem 0;
}

/* ===== SPACING ===== */
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mt-5 { margin-top: 3rem; }
.ms-2 { margin-left: 0.5rem; }
.ms-3 { margin-left: 1rem; }

/* ===== TEXT & LAYOUT ===== */
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-inline-flex { display: inline-flex; }
.d-block { display: block; }
.d-none { display: none; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.h-100 { height: 100%; }
.w-100 { width: 100%; }

/* ===== SECTION TITLE ===== */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #00f0ff;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* ===== CARD BODY ===== */
.card-body {
    padding: 0;
}

/* ===== SERVER STATUS ===== */
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #00f0ff22;
    font-size: 0.85rem;
}
.stat-row:last-child {
    border-bottom: none;
}
.stat-label {
    color: #94a3b8;
}
.stat-value {
    color: #e2e8f0;
    font-weight: 600;
}
.progress-bar {
    width: 100%;
    height: 6px;
    background: #00f0ff22;
    border-radius: 3px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00f0ff, #ff00aa);
    border-radius: 3px;
    transition: width 0.6s ease;
}
.status-indicator {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.status-hot {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
}
.status-good {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
}
.status-smooth {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    border: 1px solid rgba(59,130,246,0.3);
}
.status-full {
    background: rgba(168,85,247,0.15);
    color: #a855f7;
    border: 1px solid rgba(168,85,247,0.3);
}

/* ===== REVIEW CARDS ===== */
.review-text::before { content: '\201C'; font-size: 1.5rem; color: #00f0ff; margin-right: 4px; }
.review-text::after { content: '\201D'; font-size: 1.5rem; color: #00f0ff; margin-left: 4px; }

/* ===== FAQ ACCORDION ===== */
.accordion-button.active::after,
.accordion-button:not(.collapsed)::after {
    content: '\2212';
    transform: rotate(0deg);
}

/* ===== UPDATE CARDS ===== */

/* ===== VERSION CARDS ===== */
.version-title {
    color: #e2e8f0;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.version-feature {
    padding: 6px 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ===== EQUIPMENT CARDS ===== */

/* ===== DUNGEON CARDS ===== */
.dungeon-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.dungeon-grade {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ===== GUIDE CARDS ===== */
.guide-card {
    background: #111118;
    border: 1px solid #00f0ff22;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.guide-card:hover {
    border-color: #00f0ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.guide-title {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.guide-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ===== COMMUNITY CARDS ===== */
.community-count {
    color: #00f0ff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ===== BADGE ===== */
.badge-primary {
    background: #00f0ff22;
    color: #00f0ff;
}
.badge-success {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}
.badge-warning {
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
}
.badge-danger {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

/* ===== UPDATE TIME ===== */
.update-time {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* ===== LIST STYLES ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: 8px 0;
    color: #94a3b8;
    font-size: 0.9rem;
    border-bottom: 1px solid #00f0ff22;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '\2713';
    color: #00f0ff;
    font-weight: 700;
    margin-right: 8px;
}

/* ===== LAYOUT PATCH v2 ===== */

/* ===== SPACING ===== */

/* ===== TEXT & LAYOUT ===== */

/* ===== SECTION ===== */
section:nth-child(even) {
    background: #11111844;
}
section > .container > p.text-center {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* ===== CARD BASE ===== */
.card-body h4, .card-body h5 {
    color: #e2e8f0;
    margin: 0 0 0.8rem 0;
}
.card-body p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== SERVER STATUS ===== */
.server-card .card-body {
    align-items: center;
    text-align: center;
    padding: 1.8rem 1.2rem;
}
.server-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem !important;
}

/* ===== REVIEW CARDS ===== */
.review-card .card-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.review-card .d-flex {
    margin-bottom: 1rem;
}
.review-card .d-flex h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}
.review-card .d-flex .text-warning {
    font-size: 0.8rem;
    letter-spacing: 2px;
}
.review-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: italic;
    flex: 1;
}
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f0ff, #ff00aa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== FAQ ACCORDION ===== */
.accordion-button.active::after,

/* ===== UPDATE CARDS ===== */

/* ===== VERSION CARDS ===== */

/* ===== EQUIPMENT CARDS ===== */

/* ===== DUNGEON CARDS ===== */

/* ===== GUIDE CARDS ===== */

/* ===== COMMUNITY CARDS ===== */

/* ===== BADGE ===== */

/* ===== MISC ===== */

/* ===== 补齐缺失组件 ===== */
.btn-secondary { display: inline-block; padding: 12px 28px; border: 1px solid rgba(0,255,136,.4); color: #00ff88; border-radius: 4px; font-weight: 600; transition: .3s; }
.btn-secondary:hover { background: rgba(0,255,136,.1); box-shadow: 0 0 20px rgba(0,255,136,.2); }
.dungeon-list { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.dungeon-item { background: rgba(0,255,136,.04); border: 1px solid rgba(0,255,136,.15); border-radius: 8px; padding: 24px 26px; transition: .3s; }
.dungeon-item:hover { border-color: #00ff88; box-shadow: 0 0 20px rgba(0,255,136,.12); }
.dungeon-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dungeon-header h3 { font-size: 1.15rem; color: #fff; }
.dungeon-difficulty { font-size: .78rem; padding: 3px 10px; border-radius: 4px; font-weight: 600; }
.difficulty-easy { background: rgba(46,204,113,.15); color: #2ecc71; }
.difficulty-medium { background: rgba(241,196,15,.15); color: #f1c40f; }
.difficulty-hard { background: rgba(231,76,60,.15); color: #e74c3c; }
.difficulty-epic { background: rgba(155,89,182,.2); color: #9b59b6; }
.dungeon-info { font-size: .9rem; color: #9ab; line-height: 1.7; }
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; margin-top: 36px; }
.equipment-stats { display: flex; gap: 16px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(0,255,136,.12); }
.equipment-stats span { font-size: .82rem; color: #889; }
.equipment-tips { margin-top: 24px; padding: 20px; border: 1px dashed rgba(0,255,136,.3); border-radius: 8px; font-size: .88rem; color: #9ab; line-height: 1.7; }
.event-banner { background: linear-gradient(135deg,rgba(0,255,136,.08),rgba(124,58,237,.08)); border: 1px solid rgba(0,255,136,.2); border-radius: 12px; padding: 28px; margin-bottom: 20px; }
.event-card { background: rgba(0,255,136,.04); border: 1px solid rgba(0,255,136,.12); border-radius: 10px; padding: 24px; transition: .3s; }
.event-card:hover { border-color: rgba(0,255,136,.4); }
.event-tag { display: inline-block; padding: 3px 12px; border-radius: 4px; font-size: .75rem; background: rgba(124,58,237,.2); color: #a78bfa; margin-bottom: 10px; }
.event-title { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.event-desc { font-size: .88rem; color: #9ab; line-height: 1.7; margin-bottom: 12px; }
.event-meta { display: flex; gap: 16px; font-size: .8rem; color: #778; }
.event-time { color: #00ff88; }
.event-participants { color: #889; }
.event-content { padding: 20px; }
.event-banner .event-title { font-size: 1.3rem; }
.community-events { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; margin-top: 36px; }
.community-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.link-buttons { display: inline-block; padding: 12px 24px; border: 1px solid rgba(0,255,136,.3); color: #00ff88; border-radius: 6px; transition: .3s; }
.link-buttons:hover { background: rgba(0,255,136,.1); }
.guide-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; margin-top: 36px; }
.step-number { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg,#00ff88,#7c3aed); color: #0a0a14; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-content h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.step-content p { font-size: .9rem; color: #9ab; line-height: 1.7; }
.guide-tips { margin-top: 24px; padding: 20px; border: 1px dashed rgba(0,255,136,.3); border-radius: 8px; font-size: .88rem; color: #9ab; line-height: 1.7; }
.tag-hot, .tag-new, .tag-challenge, .tag-team { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: .75rem; font-weight: 600; }
.tag-hot { background: rgba(231,76,60,.15); color: #e74c3c; }
.tag-new { background: rgba(46,204,113,.15); color: #2ecc71; }
.tag-challenge { background: rgba(241,196,15,.15); color: #f1c40f; }
.tag-team { background: rgba(52,152,219,.15); color: #3498db; }
.stat-item { text-align: center; padding: 24px 16px; }
.stat-item strong { display: block; font-size: 2rem; color: #00ff88; margin-bottom: 6px; text-shadow: 0 0 16px rgba(0,255,136,.3); }
.stat-item span { font-size: .85rem; color: #889; letter-spacing: 2px; }

/* ===== Single-page polish ===== */
.faq-question {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    text-align: left;
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 768px) {
    .navbar { position: sticky; }
    .nav-container { padding: 0 .9rem; gap: .75rem; }
    .logo-icon { width: 34px; height: 34px; font-size: .58rem; }
    .logo-text { font-size: .88rem; letter-spacing: 1px; }
    .logo-sub { font-size: .5rem; letter-spacing: 1px; }
    .nav-links { display: none; }
    .nav-cta { padding: .45rem .65rem; font-size: .68rem; letter-spacing: 1px; white-space: nowrap; }
    .hero { min-height: auto; padding: 6.5rem 1rem 3.5rem; }
    .hero-title { font-size: clamp(1.85rem, 9vw, 2.6rem); letter-spacing: .5px; }
    .hero-tag { max-width: 100%; margin-bottom: 1.25rem; padding: .25rem .5rem; font-size: .58rem; letter-spacing: 1.2px; }
    .hero-desc { font-size: .88rem; margin-bottom: 1.75rem; }
    .hero-buttons { width: 100%; }
    .hero-buttons a { min-width: 0; padding: .78rem 1rem; font-size: .74rem; letter-spacing: 1px; }
    .hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem .5rem; margin-top: 2.25rem; }
    .hero-stat-value { font-size: 1.65rem; }
    .hero-stat-label { font-size: .55rem; letter-spacing: .6px; }
    section { padding: 3.5rem 1rem; }
    .container { padding: 0; }
    .section-label { letter-spacing: 2px; }
    .section-title { font-size: 1.45rem; letter-spacing: .6px; }
    .section-desc { margin-bottom: 1.75rem; }
    .versions-grid, .features-grid, .classes-grid, .equipment-grid { grid-template-columns: 1fr; }
    .version-card, .feature-card { padding: 1.3rem; }
    .server-section, .download-box { padding: 1.5rem 1rem; }
    .server-grid, .download-grid { grid-template-columns: 1fr; }
    .dungeon-item { padding: 1rem; }
    .dungeon-header { gap: .75rem; align-items: flex-start; }
    .dungeon-difficulty { white-space: nowrap; }
    .row { margin: 0; }
    .col-md-6 { flex: 0 0 100%; max-width: 100%; padding: 0; }
    .footer { padding: 2rem 1rem; }
    .footer-links { gap: .85rem 1rem; margin-bottom: 1.25rem; }
}
