
        /* ===== Reset & Base ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }
        
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #0a0a0a;
            color: #e8e8e8;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* ===== Typography ===== */
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        
        /* ===== Color Variables ===== */
        :root {
            --gold-primary: #d4af37;
            --gold-light: #f4e4b8;
            --gold-dark: #996515;
            --bg-dark: #0a0a0a;
            --bg-card: #1a1a1a;
            --text-primary: #e8e8e8;
            --text-secondary: #a0a0a0;
            --border-color: rgba(212, 175, 55, 0.3);
        }
        
        /* ===== Scrollbar ===== */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark));
            border-radius: 6px;
        }
        
        /* ===== Navigation ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.5rem 0;
            background: rgba(10, 10, 10, 0.98);
        }
        
        .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.5rem;
            text-decoration: none;
            color: var(--gold-primary);
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--gold-primary);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            color: var(--bg-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--gold-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* ===== Hero Section ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 100px 2rem 2rem;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            z-index: 0;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-versions {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        
        .version-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            width: 280px;
            transition: all 0.3s ease;
        }
        
        .version-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold-primary);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
        }
        
        .version-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold-primary);
            margin-bottom: 0.5rem;
        }
        
        .version-name {
            font-size: 1.25rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        
        .version-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        /* ===== Sections ===== */
        section {
            padding: 80px 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--gold-primary);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
            margin: 1rem auto 0;
        }
        
        /* ===== Features ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
            color: var(--gold-primary);
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--gold-light);
        }
        
        .feature-desc {
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        /* ===== Classes ===== */
        .classes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .class-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .class-card:hover {
            border-color: var(--gold-primary);
            transform: scale(1.05);
        }
        
        .class-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            color: var(--gold-primary);
        }
        
        .class-name {
            font-size: 1.5rem;
            color: var(--gold-light);
            margin-bottom: 1rem;
        }
        
        .class-skills {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        
        .skill-tag {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold-primary);
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.85rem;
        }
        
        /* ===== Download ===== */
        .download-section {
            background: linear-gradient(135deg, var(--bg-card) 0%, #2a2a2a 100%);
            border-radius: 12px;
            padding: 4rem 2rem;
            text-align: center;
            border: 1px solid var(--border-color);
        }
        
        .download-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .download-btn {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            color: var(--bg-dark);
            padding: 1rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
        }
        
        .download-btn-secondary {
            background: transparent;
            border: 2px solid var(--gold-primary);
            color: var(--gold-primary);
        }
        
        .download-btn-secondary:hover {
            background: var(--gold-primary);
            color: var(--bg-dark);
        }
        
        /* ===== Footer ===== */
        .footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold-primary);
        }
        
        .footer-copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-container {
                position: relative;
            }

            .nav-links.is-open {
                display: flex;
                position: absolute;
                top: calc(100% + 1rem);
                left: 1rem;
                right: 1rem;
                flex-direction: column;
                gap: 0;
                padding: 0.5rem 1rem;
                background: rgba(10, 10, 10, 0.98);
                border: 1px solid var(--border-color);
                border-radius: 6px;
            }

            .nav-links.is-open a {
                display: block;
                padding: 0.75rem 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-cta {
                display: none;
            }
            
            .hero-versions {
                flex-direction: column;
                align-items: center;
            }
            
            .version-card {
                width: 100%;
                max-width: 350px;
            }
        }
        
        /* ===== Animations ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

/* ===== 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) {
    .col-md-4, .col-md-6, .col-lg-3, .col-lg-4, .col-lg-6 { flex: 0 0 100%; max-width: 100%; }
}

/* ===== 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-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #e8d5a3;
}
.section-subtitle {
    text-align: center;
    color: #a0a0b0;
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ===== Cards ===== */
.card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ===== Server Status Cards ===== */
.server-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.server-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.server-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8d5a3;
    margin-bottom: 0.8rem;
}
.server-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.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: #a0a0b0;
    margin-top: 0.5rem;
}
.server-progress {
    width: 100%;
    height: 6px;
    background: #2a2a3e;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.8rem;
}
.server-progress-bar {
    height: 100%;
    background: #c8aa6e;
    border-radius: 3px;
    transition: width 0.6s ease;
}

/* ===== Review Cards ===== */
.review-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}
.review-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: #c8aa6e;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}
.review-stars {
    color: #c8aa6e;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}
.review-text {
    color: #a0a0b0;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}
.review-author {
    font-weight: 600;
    color: #e8d5a3;
    font-size: 0.85rem;
}
.review-role {
    color: #a0a0b0;
    font-size: 0.75rem;
}

/* ===== FAQ / Accordion ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s;
}
.accordion-item:hover {
    border-color: #c8aa6e;
}
.accordion-header {
    margin: 0;
}
.accordion-button {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: #e8d5a3;
    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: #c8aa6e;
}
.accordion-button::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #c8aa6e;
    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: #a0a0b0;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== Update/News Cards ===== */
.update-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.update-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
}
.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #c8aa6e;
    border-radius: 4px 0 0 4px;
}
.update-date {
    font-size: 0.75rem;
    color: #a0a0b0;
    margin-bottom: 0.5rem;
}
.update-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #c8aa6e22;
    color: #c8aa6e;
    margin-bottom: 0.8rem;
}
.update-title {
    font-size: 1rem;
    font-weight: 700;
    color: #e8d5a3;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.update-desc {
    font-size: 0.85rem;
    color: #a0a0b0;
    line-height: 1.6;
}

/* ===== Version Cards ===== */
.version-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.version-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.version-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    background: #c8aa6e22;
    color: #c8aa6e;
    margin-bottom: 1rem;
}
.version-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e8d5a3;
    margin-bottom: 0.5rem;
}
.version-desc {
    font-size: 0.9rem;
    color: #a0a0b0;
    line-height: 1.7;
    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: #a0a0b0;
    border-bottom: 1px solid #c8aa6e33;
}
.version-features li:last-child {
    border-bottom: none;
}
.version-features li::before {
    content: '✓ ';
    color: #c8aa6e;
    font-weight: 700;
}

/* ===== Equipment Cards (cyber only) ===== */
.equipment-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.equipment-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
}
.equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.equipment-name {
    font-weight: 700;
    color: #e8d5a3;
    margin-bottom: 0.3rem;
}
.equipment-desc {
    font-size: 0.8rem;
    color: #a0a0b0;
}

/* ===== Dungeon Cards ===== */
.dungeon-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.dungeon-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
}
.dungeon-name {
    font-weight: 700;
    color: #e8d5a3;
    margin-bottom: 0.3rem;
}
.dungeon-level {
    font-size: 0.75rem;
    color: #c8aa6e;
    background: #c8aa6e22;
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.dungeon-desc {
    font-size: 0.85rem;
    color: #a0a0b0;
    line-height: 1.6;
}

/* ===== Guide Section ===== */
.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.guide-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #c8aa6e;
    color: #0d0d1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.guide-content h4 {
    color: #e8d5a3;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.guide-content p {
    color: #a0a0b0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Community Section ===== */
.community-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.community-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
}
.community-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}
.community-name {
    font-weight: 700;
    color: #e8d5a3;
    margin-bottom: 0.3rem;
}
.community-desc {
    font-size: 0.8rem;
    color: #a0a0b0;
    margin-bottom: 0.8rem;
}
.community-link {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #c8aa6e22;
    color: #c8aa6e;
    text-decoration: none;
    transition: all 0.3s;
}
.community-link:hover {
    background: #c8aa6e;
    color: #0d0d1a;
}

/* ===== Badge ===== */
.badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #c8aa6e22;
    color: #c8aa6e;
}

/* ===== Text Utilities ===== */
.text-warning { color: #f59e0b; }
.text-muted { color: #a0a0b0; }
.text-accent { color: #c8aa6e; }

/* ===== Section Backgrounds ===== */
.section-alt {
    background: #12121f;
    padding: 4rem 0;
}
.section-dark {
    background: #0d0d1a;
    padding: 4rem 0;
}

/* ===== SPACING ===== */
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.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; }
.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; }
.mt-5 { margin-top: 3rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.ms-2 { margin-left: 0.5rem; }
.ms-3 { margin-left: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== TEXT & LAYOUT ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: #94a3b8; }
.text-warning { color: #f59e0b; }
.text-accent { color: #c8aa6e; }
.text-small { font-size: 0.85rem; }
.fw-bold { font-weight: 700; }
.fs-5 { font-size: 1.1rem; }
.fs-6 { font-size: 0.9rem; }
.d-flex { display: flex; }
.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; }
.align-items-center { align-items: center; }
.h-100 { height: 100%; }
.w-100 { width: 100%; }

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #e2e8f0;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c8aa6e;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* ===== CARD BODY ===== */
.card-body {
    padding: 0;
}

/* ===== SERVER STATUS ===== */
.server-stats {
    text-align: left;
    margin-top: 0.5rem;
}
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #c8aa6e33;
    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: #c8aa6e33;
    border-radius: 3px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c8aa6e, #8b1a1a);
    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-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.review-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}
.review-text {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}
.review-text::before { content: '\201C'; font-size: 1.5rem; color: #c8aa6e; margin-right: 4px; }
.review-text::after { content: '\201D'; font-size: 1.5rem; color: #c8aa6e; margin-left: 4px; }
.review-author {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ===== FAQ ACCORDION ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}
.accordion-item:hover {
    border-color: #c8aa6e;
}
.accordion-header {
    margin: 0;
}
.accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}
.accordion-button:hover {
    color: #c8aa6e;
}
.accordion-button::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #c8aa6e;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.accordion-button.active::after,
.accordion-button:not(.collapsed)::after {
    content: '\2212';
    transform: rotate(0deg);
}
.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.accordion-collapse.show {
    max-height: 500px;
}
.accordion-body {
    padding: 0 1.5rem 1.2rem;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== UPDATE CARDS ===== */
.update-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.update-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: #c8aa6e;
    border-radius: 2px 0 0 2px;
}
.update-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.update-date {
    color: #c8aa6e;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.update-tag {
    display: inline-block;
    background: #c8aa6e22;
    color: #c8aa6e;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.update-title {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.update-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ===== VERSION CARDS ===== */
.version-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.version-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c8aa6e, #8b1a1a);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.version-title {
    color: #e2e8f0;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.version-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.version-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.version-features li {
    padding: 6px 0;
    color: #94a3b8;
    font-size: 0.85rem;
    border-bottom: 1px solid #c8aa6e33;
}
.version-features li:last-child { border-bottom: none; }
.version-features li::before {
    content: '\2713';
    color: #c8aa6e;
    font-weight: 700;
    margin-right: 8px;
}
.version-feature {
    padding: 6px 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ===== EQUIPMENT CARDS ===== */
.equipment-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.equipment-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.equipment-name {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.equipment-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== DUNGEON CARDS ===== */
.dungeon-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.dungeon-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.dungeon-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.dungeon-name {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}
.dungeon-grade {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.dungeon-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== GUIDE CARDS ===== */
.guide-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.guide-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.guide-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #c8aa6e;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}
.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-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.community-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.community-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.community-name {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.community-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}
.community-count {
    color: #c8aa6e;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ===== BADGE ===== */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}
.badge-primary {
    background: #c8aa6e22;
    color: #c8aa6e;
}
.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 #c8aa6e33;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '\2713';
    color: #c8aa6e;
    font-weight: 700;
    margin-right: 8px;
}

/* ===== LAYOUT PATCH v2 ===== */

/* ===== SPACING ===== */
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3.5rem; padding-bottom: 3.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; }
.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; }
.mt-5 { margin-top: 3rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.ms-2 { margin-left: 0.5rem; }
.ms-3 { margin-left: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== TEXT & LAYOUT ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: #94a3b8; }
.text-warning { color: #f59e0b; }
.text-accent { color: #c8aa6e; }
.text-small { font-size: 0.85rem; }
.fw-bold { font-weight: 700; }
.fs-5 { font-size: 1.1rem; }
.fs-6 { font-size: 0.9rem; }
.d-flex { display: flex; }
.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; }
.align-items-center { align-items: center; }
.h-100 { height: 100%; }
.w-100 { width: 100%; }

/* ===== SECTION ===== */
section {
    padding: 4rem 0;
}
section:nth-child(even) {
    background: #1a1a2e44;
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #e2e8f0;
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c8aa6e;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}
section > .container > p.text-center {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* ===== CARD BASE ===== */
.card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}
.card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.card-body {
    padding: 1.5rem;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.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;
}
.server-stats {
    width: 100%;
    text-align: left;
    margin: 0.8rem 0 0;
}
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #c8aa6e33;
    font-size: 0.85rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-label { color: #94a3b8; font-size: 0.8rem; }
.stat-value { color: #e2e8f0; font-weight: 700; font-size: 0.9rem; }
.progress-bar {
    width: 100%;
    height: 6px;
    background: #c8aa6e33;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c8aa6e, #8b1a1a);
    border-radius: 3px;
    transition: width 0.6s ease;
}
.status-indicator {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.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-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.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, #c8aa6e, #8b1a1a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== FAQ ACCORDION ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}
.accordion-item:hover { border-color: #c8aa6e; }
.accordion-header { margin: 0; }
.accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
    line-height: 1.5;
}
.accordion-button:hover { color: #c8aa6e; }
.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #c8aa6e;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}
.accordion-button.active::after,
.accordion-button:not(.collapsed)::after {
    content: '\2212';
}
.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.accordion-collapse.show { max-height: 500px; }
.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ===== UPDATE CARDS ===== */
.update-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.update-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: #c8aa6e;
    border-radius: 2px 0 0 2px;
}
.update-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.update-date {
    color: #c8aa6e;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.update-tag {
    display: inline-block;
    background: #c8aa6e22;
    color: #c8aa6e;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.update-title {
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.update-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== VERSION CARDS ===== */
.version-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.version-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c8aa6e, #8b1a1a);
    color: #fff;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.version-title {
    color: #e2e8f0;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.version-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.version-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.version-features li {
    padding: 8px 0;
    color: #94a3b8;
    font-size: 0.85rem;
    border-bottom: 1px solid #c8aa6e33;
}
.version-features li:last-child { border-bottom: none; }
.version-features li::before {
    content: '\2713';
    color: #c8aa6e;
    font-weight: 700;
    margin-right: 8px;
}
.version-feature {
    padding: 8px 0;
    color: #94a3b8;
    font-size: 0.88rem;
}

/* ===== EQUIPMENT CARDS ===== */
.equipment-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.equipment-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.equipment-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.equipment-name {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.equipment-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== DUNGEON CARDS ===== */
.dungeon-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.dungeon-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.dungeon-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.dungeon-name {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.dungeon-grade {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.dungeon-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== GUIDE CARDS ===== */
.guide-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.guide-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.guide-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #c8aa6e;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.guide-title {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.guide-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.8;
}

/* ===== COMMUNITY CARDS ===== */
.community-card {
    background: #1a1a2e;
    border: 1px solid #c8aa6e33;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.community-card:hover {
    border-color: #c8aa6e;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.community-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.community-name {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.community-desc {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.7;
}
.community-count {
    color: #c8aa6e;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.8rem;
}

/* ===== BADGE ===== */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}
.badge-primary {
    background: #c8aa6e22;
    color: #c8aa6e;
}
.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;
}

/* ===== MISC ===== */
.update-time {
    color: #94a3b8;
    font-size: 0.8rem;
}
.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 #c8aa6e33;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '\2713';
    color: #c8aa6e;
    font-weight: 700;
    margin-right: 8px;
}

/* ===== 史诗暗黑 - 补齐缺失组件 ===== */
.featured { position: relative; border: 2px solid #d4a843; box-shadow: 0 0 30px rgba(212,168,67,.25); }
.featured::after { content: '⭐ 推荐'; position: absolute; top: 12px; right: 12px; background: linear-gradient(135deg,#d4a843,#8a6d1f); color: #0a0a1a; font-size: .75rem; padding: 3px 10px; border-radius: 4px; font-weight: 600; }
.version-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.version-header h3 { font-size: 1.4rem; color: #d4a843; }
.version-stats { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(212,168,67,.15); }
.version-stats span { font-size: .85rem; color: #889; }
