
        /* ===== Reset & Base ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }
        
        body {
            font-family: 'STKaiti', 'KaiTi', '楷体', serif;
            background: #f5f0e8;
            color: #2c2c2c;
            line-height: 1.8;
            overflow-x: hidden;
            position: relative;
        }
        
        /* ===== Paper Texture ===== */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(139, 90, 43, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 90, 43, 0.02) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }
        
        /* ===== Typography ===== */
        h1, h2, h3, h4 {
            font-family: 'STKaiti', 'KaiTi', '楷体', serif;
            font-weight: 400;
            color: #1a1a1a;
        }
        
        h1 { 
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            letter-spacing: 8px;
        }
        
        h2 { 
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            letter-spacing: 4px;
        }
        
        h3 { 
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            letter-spacing: 2px;
        }
        
        /* ===== Color Variables ===== */
        :root {
            --ink-black: #1a1a1a;
            --ink-dark: #2c2c2c;
            --ink-medium: #5a5a5a;
            --ink-light: #8a8a8a;
            --vermillion: #c23b22;
            --vermillion-dark: #8b2500;
            --gold-accent: #b8860b;
            --paper-bg: #f5f0e8;
            --paper-light: #faf7f2;
            --paper-dark: #e8e0d0;
        }
        
        /* ===== Ink Wash Effect ===== */
        @keyframes inkDrop {
            0% { transform: scale(0); opacity: 0.8; }
            50% { transform: scale(1); opacity: 0.4; }
            100% { transform: scale(1.5); opacity: 0; }
        }
        
        @keyframes brushStroke {
            0% { width: 0; }
            100% { width: 100%; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ===== Scrollbar ===== */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--paper-dark); }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--ink-medium), var(--vermillion));
            border-radius: 5px;
        }
        
        /* ===== Navigation ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(245, 240, 232, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--ink-black);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.75rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        .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: 1rem;
            text-decoration: none;
        }
        
        .logo-seal {
            width: 50px;
            height: 50px;
            background: var(--vermillion);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--paper-bg);
            font-size: 1.5rem;
            font-weight: 700;
            transform: rotate(-5deg);
            box-shadow: 2px 2px 0 var(--vermillion-dark);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ink-black);
            letter-spacing: 4px;
        }
        
        .logo-sub {
            font-size: 0.75rem;
            color: var(--ink-light);
            letter-spacing: 2px;
        }
        
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--ink-dark);
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 2px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--vermillion);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-links a:hover {
            color: var(--vermillion);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--ink-black);
            color: var(--paper-bg);
            padding: 0.75rem 2rem;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 2px;
            border: 2px solid var(--ink-black);
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: var(--vermillion);
            border-color: var(--vermillion);
        }
        
        /* ===== Hero Section ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 2rem 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg-art {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            opacity: 0.1;
            background: radial-gradient(ellipse at center, var(--ink-black) 0%, transparent 70%);
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .hero-vertical {
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            writing-mode: vertical-rl;
            font-size: 1rem;
            color: var(--ink-light);
            letter-spacing: 8px;
            opacity: 0.3;
        }
        
        .hero-stamp {
            display: inline-block;
            border: 2px solid var(--vermillion);
            color: var(--vermillion);
            padding: 0.5rem 1.5rem;
            font-size: 0.9rem;
            letter-spacing: 4px;
            margin-bottom: 2rem;
            transform: rotate(-2deg);
        }
        
        .hero-title {
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .hero-title::before,
        .hero-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: var(--vermillion);
            top: 50%;
        }
        
        .hero-title::before {
            right: calc(100% + 20px);
        }
        
        .hero-title::after {
            left: calc(100% + 20px);
        }
        
        .hero-desc {
            font-size: 1.125rem;
            color: var(--ink-medium);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 2;
        }
        
        .hero-poem {
            font-size: 1rem;
            color: var(--ink-light);
            font-style: italic;
            margin-bottom: 3rem;
            letter-spacing: 2px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--vermillion);
            color: var(--paper-bg);
            padding: 1rem 3rem;
            text-decoration: none;
            font-size: 1.1rem;
            letter-spacing: 3px;
            border: 2px solid var(--vermillion);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(194, 59, 34, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--ink-black);
            padding: 1rem 3rem;
            text-decoration: none;
            font-size: 1.1rem;
            letter-spacing: 3px;
            border: 2px solid var(--ink-black);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--ink-black);
            color: var(--paper-bg);
        }
        
        /* ===== Section Base ===== */
        section {
            padding: 6rem 2rem;
            position: relative;
            z-index: 1;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-icon {
            font-size: 2rem;
            color: var(--vermillion);
            margin-bottom: 1rem;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--vermillion);
        }
        
        .section-desc {
            color: var(--ink-medium);
            margin-top: 1.5rem;
            font-size: 1.1rem;
        }
        
        /* ===== Versions Section ===== */
        .versions-section {
            background: var(--paper-light);
            border-top: 1px solid var(--paper-dark);
            border-bottom: 1px solid var(--paper-dark);
        }
        
        .versions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        
        .version-card {
            background: var(--paper-bg);
            border: 1px solid var(--paper-dark);
            padding: 2.5rem;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .version-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--vermillion);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .version-card:hover::before {
            transform: scaleX(1);
        }
        
        .version-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--vermillion);
        }
        
        .version-header {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .version-num {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--vermillion);
            line-height: 1;
        }
        
        .version-info h3 {
            margin-bottom: 0.25rem;
        }
        
        .version-info p {
            color: var(--ink-light);
            font-size: 0.9rem;
        }
        
        .version-desc {
            color: var(--ink-medium);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }
        
        .version-features {
            list-style: none;
            border-top: 1px solid var(--paper-dark);
            padding-top: 1.5rem;
        }
        
        .version-features li {
            padding: 0.5rem 0;
            color: var(--ink-dark);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .version-features li::before {
            content: '◆';
            color: var(--vermillion);
            font-size: 0.7rem;
        }
        
        /* ===== Features Section ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: var(--paper-light);
            padding: 2.5rem;
            border: 1px solid var(--paper-dark);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            background: var(--paper-bg);
            border-color: var(--vermillion);
            transform: translateY(-5px);
        }
        
        .feature-symbol {
            font-size: 3rem;
            color: var(--vermillion);
            margin-bottom: 1.5rem;
        }
        
        .feature-title {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .feature-desc {
            color: var(--ink-medium);
            font-size: 0.95rem;
            line-height: 1.8;
        }
        
        /* ===== Classes Section ===== */
        .classes-section {
            background: var(--ink-black);
            color: var(--paper-bg);
        }
        
        .classes-section h2 {
            color: var(--paper-bg);
        }
        
        .classes-section .section-desc {
            color: var(--paper-dark);
        }
        
        .classes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .class-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .class-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--vermillion);
            transform: scale(1.05);
        }
        
        .class-symbol {
            font-size: 4rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .class-name {
            color: var(--paper-bg);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            letter-spacing: 4px;
        }
        
        .class-desc {
            color: var(--paper-dark);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        .class-skills {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .skill-tag {
            background: rgba(194, 59, 34, 0.2);
            color: var(--paper-bg);
            padding: 0.3rem 0.8rem;
            font-size: 0.8rem;
            border: 1px solid var(--vermillion);
            letter-spacing: 1px;
        }
        
        /* ===== Download Section ===== */
        .download-section {
            background: linear-gradient(to bottom, var(--paper-bg), var(--paper-light));
        }
        
        .download-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .download-scroll {
            width: 100%;
            max-width: 600px;
            margin: 3rem auto;
            background: var(--paper-light);
            border: 2px solid var(--ink-black);
            padding: 3rem;
            position: relative;
        }
        
        .download-scroll::before,
        .download-scroll::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            border: 2px solid var(--vermillion);
        }
        
        .download-scroll::before {
            top: -2px;
            left: -2px;
            border-right: none;
            border-bottom: none;
        }
        
        .download-scroll::after {
            bottom: -2px;
            right: -2px;
            border-left: none;
            border-top: none;
        }
        
        .download-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 2rem 0;
        }
        
        .download-btn {
            background: var(--vermillion);
            color: var(--paper-bg);
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-size: 1.1rem;
            letter-spacing: 2px;
            border: 2px solid var(--vermillion);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .download-btn:hover {
            background: var(--vermillion-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(194, 59, 34, 0.3);
        }
        
        .download-btn-outline {
            background: transparent;
            color: var(--ink-black);
            border-color: var(--ink-black);
        }
        
        .download-btn-outline:hover {
            background: var(--ink-black);
            color: var(--paper-bg);
        }
        
        .download-info {
            margin-top: 2rem;
            color: var(--ink-medium);
            font-size: 0.9rem;
            line-height: 1.8;
        }
        
        /* ===== Footer ===== */
        .footer {
            background: var(--ink-black);
            color: var(--paper-dark);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h4 {
            color: var(--paper-bg);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-section a {
            color: var(--paper-dark);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            letter-spacing: 1px;
        }
        
        .footer-section a:hover {
            color: var(--vermillion);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.85rem;
            color: var(--paper-dark);
        }
        
        .footer-seal {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: var(--vermillion);
            border-radius: 4px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--paper-bg);
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 1rem;
        }
        
        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-cta { display: none; }
            
            .hero-vertical { display: none; }
            
            .hero-title::before,
            .hero-title::after { display: none; }
            
            section { padding: 4rem 1.5rem; }
        }
        
        /* ===== Animations ===== */
        .fade-in {
            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: #2c2c2c;
}
.section-subtitle {
    text-align: center;
    color: #6b6b6b;
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ===== Cards ===== */
.card {
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.card:hover {
    border-color: #8b4513;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ===== Server Status Cards ===== */
.server-card {
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.server-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.server-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    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: #6b6b6b;
    margin-top: 0.5rem;
}
.server-progress {
    width: 100%;
    height: 6px;
    background: #d4c5a9;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.8rem;
}
.server-progress-bar {
    height: 100%;
    background: #8b4513;
    border-radius: 3px;
    transition: width 0.6s ease;
}

/* ===== Review Cards ===== */
.review-card {
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}
.review-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: #8b4513;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}
.review-stars {
    color: #c0392b;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}
.review-text {
    color: #6b6b6b;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}
.review-author {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.85rem;
}
.review-role {
    color: #6b6b6b;
    font-size: 0.75rem;
}

/* ===== FAQ / Accordion ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s;
}
.accordion-item:hover {
    border-color: #8b4513;
}
.accordion-header {
    margin: 0;
}
.accordion-button {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: #2c2c2c;
    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: #8b4513;
}
.accordion-button::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #8b4513;
    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: #6b6b6b;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== Update/News Cards ===== */
.update-card {
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.update-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
}
.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #8b4513;
    border-radius: 4px 0 0 4px;
}
.update-date {
    font-size: 0.75rem;
    color: #6b6b6b;
    margin-bottom: 0.5rem;
}
.update-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #8b451322;
    color: #8b4513;
    margin-bottom: 0.8rem;
}
.update-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.update-desc {
    font-size: 0.85rem;
    color: #6b6b6b;
    line-height: 1.6;
}

/* ===== Version Cards ===== */
.version-card {
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.version-card:hover {
    border-color: #8b4513;
    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: #8b451322;
    color: #8b4513;
    margin-bottom: 1rem;
}
.version-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}
.version-desc {
    font-size: 0.9rem;
    color: #6b6b6b;
    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: #6b6b6b;
    border-bottom: 1px solid #d4c5a9;
}
.version-features li:last-child {
    border-bottom: none;
}
.version-features li::before {
    content: '✓ ';
    color: #8b4513;
    font-weight: 700;
}

/* ===== Equipment Cards (cyber only) ===== */
.equipment-card {
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.equipment-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
}
.equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.equipment-name {
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.3rem;
}
.equipment-desc {
    font-size: 0.8rem;
    color: #6b6b6b;
}

/* ===== Dungeon Cards ===== */
.dungeon-card {
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.dungeon-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
}
.dungeon-name {
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.3rem;
}
.dungeon-level {
    font-size: 0.75rem;
    color: #8b4513;
    background: #8b451322;
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.dungeon-desc {
    font-size: 0.85rem;
    color: #6b6b6b;
    line-height: 1.6;
}

/* ===== Guide Section ===== */
.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.guide-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #8b4513;
    color: #f0ece4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.guide-content h4 {
    color: #2c2c2c;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.guide-content p {
    color: #6b6b6b;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== Community Section ===== */
.community-card {
    background: #faf8f5;
    border: 1px solid #d4c5a9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.community-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
}
.community-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}
.community-name {
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.3rem;
}
.community-desc {
    font-size: 0.8rem;
    color: #6b6b6b;
    margin-bottom: 0.8rem;
}
.community-link {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #8b451322;
    color: #8b4513;
    text-decoration: none;
    transition: all 0.3s;
}
.community-link:hover {
    background: #8b4513;
    color: #f0ece4;
}

/* ===== Badge ===== */
.badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #8b451322;
    color: #8b4513;
}

/* ===== Text Utilities ===== */
.text-warning { color: #f59e0b; }
.text-muted { color: #6b6b6b; }
.text-accent { color: #8b4513; }

/* ===== Section Backgrounds ===== */
.section-alt {
    background: #f5f1ea;
    padding: 4rem 0;
}
.section-dark {
    background: #f0ece4;
    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: #6b5344; }
.text-warning { color: #d97706; }
.text-accent { color: #8b4513; }
.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: #2c1810;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #8b4513;
    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 #8b451333;
    font-size: 0.85rem;
}
.stat-row:last-child {
    border-bottom: none;
}
.stat-label {
    color: #6b5344;
}
.stat-value {
    color: #2c1810;
    font-weight: 600;
}
.progress-bar {
    width: 100%;
    height: 6px;
    background: #8b451333;
    border-radius: 3px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b4513, #c0392b);
    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: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.review-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.review-stars {
    color: #d97706;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}
.review-text {
    color: #6b5344;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}
.review-text::before { content: '\201C'; font-size: 1.5rem; color: #8b4513; margin-right: 4px; }
.review-text::after { content: '\201D'; font-size: 1.5rem; color: #8b4513; margin-left: 4px; }
.review-author {
    color: #2c1810;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ===== FAQ ACCORDION ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}
.accordion-item:hover {
    border-color: #8b4513;
}
.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: #2c1810;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}
.accordion-button:hover {
    color: #8b4513;
}
.accordion-button::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #8b4513;
    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: #6b5344;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== UPDATE CARDS ===== */
.update-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    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: #8b4513;
    border-radius: 2px 0 0 2px;
}
.update-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.update-date {
    color: #8b4513;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.update-tag {
    display: inline-block;
    background: #8b451322;
    color: #8b4513;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.update-title {
    color: #2c1810;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.update-desc {
    color: #6b5344;
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ===== VERSION CARDS ===== */
.version-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.version-card:hover {
    border-color: #8b4513;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b4513, #c0392b);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.version-title {
    color: #2c1810;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.version-desc {
    color: #6b5344;
    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: #6b5344;
    font-size: 0.85rem;
    border-bottom: 1px solid #8b451333;
}
.version-features li:last-child { border-bottom: none; }
.version-features li::before {
    content: '\2713';
    color: #8b4513;
    font-weight: 700;
    margin-right: 8px;
}
.version-feature {
    padding: 6px 0;
    color: #6b5344;
    font-size: 0.85rem;
}

/* ===== EQUIPMENT CARDS ===== */
.equipment-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.equipment-card:hover {
    border-color: #8b4513;
    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: #2c1810;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.equipment-desc {
    color: #6b5344;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== DUNGEON CARDS ===== */
.dungeon-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.dungeon-card:hover {
    border-color: #8b4513;
    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: #2c1810;
    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: #6b5344;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== GUIDE CARDS ===== */
.guide-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.guide-card:hover {
    border-color: #8b4513;
    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: #8b4513;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}
.guide-title {
    color: #2c1810;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.guide-desc {
    color: #6b5344;
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ===== COMMUNITY CARDS ===== */
.community-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.community-card:hover {
    border-color: #8b4513;
    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: #2c1810;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.community-desc {
    color: #6b5344;
    font-size: 0.85rem;
    line-height: 1.6;
}
.community-count {
    color: #8b4513;
    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: #8b451322;
    color: #8b4513;
}
.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: #6b5344;
    font-size: 0.8rem;
}

/* ===== LIST STYLES ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: 8px 0;
    color: #6b5344;
    font-size: 0.9rem;
    border-bottom: 1px solid #8b451333;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '\2713';
    color: #8b4513;
    font-weight: 700;
    margin-right: 8px;
}

/* ===== SEO CONTENT AND ACCESSIBILITY ENHANCEMENTS ===== */
.logo-seal {
    font-size: 0.8rem;
    letter-spacing: 0;
}
.reveal-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.accordion-button:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.download-btn:focus-visible,
.footer a:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 3px;
}
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    .logo-seal {
        width: 42px;
        height: 42px;
        font-size: 0.68rem;
    }
    .logo-main {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    .logo-sub {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        letter-spacing: 2px;
        overflow-wrap: anywhere;
    }
    .hero-poem {
        font-size: 1rem;
        line-height: 1.8;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .download-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ===== 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: #6b5344; }
.text-warning { color: #d97706; }
.text-accent { color: #8b4513; }
.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: #ffffff44;
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2c1810;
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #8b4513;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}
section > .container > p.text-center {
    color: #6b5344;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* ===== CARD BASE ===== */
.card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}
.card:hover {
    border-color: #8b4513;
    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: #2c1810;
    margin: 0 0 0.8rem 0;
}
.card-body p {
    color: #6b5344;
    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 #8b451333;
    font-size: 0.85rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-label { color: #6b5344; font-size: 0.8rem; }
.stat-value { color: #2c1810; font-weight: 700; font-size: 0.9rem; }
.progress-bar {
    width: 100%;
    height: 6px;
    background: #8b451333;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b4513, #c0392b);
    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: #ffffff;
    border: 1px solid #8b451333;
    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: #8b4513;
    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: #6b5344;
    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, #8b4513, #c0392b);
    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: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}
.accordion-item:hover { border-color: #8b4513; }
.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: #2c1810;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
    line-height: 1.5;
}
.accordion-button:hover { color: #8b4513; }
.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #8b4513;
    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: #6b5344;
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ===== UPDATE CARDS ===== */
.update-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    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: #8b4513;
    border-radius: 2px 0 0 2px;
}
.update-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.update-date {
    color: #8b4513;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.update-tag {
    display: inline-block;
    background: #8b451322;
    color: #8b4513;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.update-title {
    color: #2c1810;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.update-desc {
    color: #6b5344;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== VERSION CARDS ===== */
.version-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.version-card:hover {
    border-color: #8b4513;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b4513, #c0392b);
    color: #fff;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.version-title {
    color: #2c1810;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.version-desc {
    color: #6b5344;
    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: #6b5344;
    font-size: 0.85rem;
    border-bottom: 1px solid #8b451333;
}
.version-features li:last-child { border-bottom: none; }
.version-features li::before {
    content: '\2713';
    color: #8b4513;
    font-weight: 700;
    margin-right: 8px;
}
.version-feature {
    padding: 8px 0;
    color: #6b5344;
    font-size: 0.88rem;
}

/* ===== EQUIPMENT CARDS ===== */
.equipment-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.equipment-card:hover {
    border-color: #8b4513;
    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: #2c1810;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.equipment-desc {
    color: #6b5344;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== DUNGEON CARDS ===== */
.dungeon-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.dungeon-card:hover {
    border-color: #8b4513;
    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: #2c1810;
    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: #6b5344;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== GUIDE CARDS ===== */
.guide-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.guide-card:hover {
    border-color: #8b4513;
    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: #8b4513;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.guide-title {
    color: #2c1810;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.guide-desc {
    color: #6b5344;
    font-size: 0.88rem;
    line-height: 1.8;
}

/* ===== COMMUNITY CARDS ===== */
.community-card {
    background: #ffffff;
    border: 1px solid #8b451333;
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-sizing: border-box;
}
.community-card:hover {
    border-color: #8b4513;
    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: #2c1810;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.community-desc {
    color: #6b5344;
    font-size: 0.88rem;
    line-height: 1.7;
}
.community-count {
    color: #8b4513;
    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: #8b451322;
    color: #8b4513;
}
.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: #6b5344;
    font-size: 0.8rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: 8px 0;
    color: #6b5344;
    font-size: 0.9rem;
    border-bottom: 1px solid #8b451333;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '\2713';
    color: #8b4513;
    font-weight: 700;
    margin-right: 8px;
}
