/* ===== RESET & BASE ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            background: #0a0806;
            color: #e8dcc8;
            overflow-x: hidden;
            line-height: 1.6;
        }
        a { color: inherit; text-decoration: none; }
        img, video { max-width: 100%; display: block; }

        /* ===== COLOR PALETTE ===== */
        :root {
            --bg-dark: #0a0806;
            --bg-section: #0d0b08;
            --gold: #caa36a;
            --gold-light: #dfcda5;
            --gold-dark: #967c57;
            --text: #e8dcc8;
            --text-dim: rgba(232,220,200,0.5);
            --border-gold: rgba(202,163,106,0.3);
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            height: 72px;
            background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 48px;
            transition: background 0.3s;
        }
        .nav.scrolled {
            background: rgba(10,8,6,0.95);
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        }
        .nav-logo {
            font-family: 'Spectral', serif;
            font-size: 22px; font-weight: 700;
            color: var(--gold); letter-spacing: 3px;
            text-transform: uppercase;
        }
        .nav-links { display: flex; gap: 32px; align-items: center; }
        .nav-links a {
            font-family: 'Spectral', serif;
            font-size: 15px; font-weight: 600;
            color: #fff; letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0.85; transition: opacity 0.3s;
        }
        .nav-links a:hover { opacity: 1; color: var(--gold-light); }
        .nav-cta {
            background: linear-gradient(135deg, #b88317, #ffd36b, #b88317);
            color: #1a1200 !important; padding: 8px 24px;
            font-size: 13px !important; font-weight: 700 !important;
            letter-spacing: 1px; opacity: 1 !important;
        }
        .nav-hamburger {
            display: none; background: none; border: none;
            width: 32px; height: 24px; position: relative; cursor: pointer;
        }
        .nav-hamburger span {
            display: block; width: 100%; height: 2px;
            background: var(--gold); position: absolute; left: 0;
            transition: all 0.3s;
        }
        .nav-hamburger span:nth-child(1) { top: 0; }
        .nav-hamburger span:nth-child(2) { top: 11px; }
        .nav-hamburger span:nth-child(3) { top: 22px; }
        .nav-hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
        .nav-hamburger.active span:nth-child(2) { opacity: 0; }
        .nav-hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

        /* ===== SECTION DIVIDER ===== */
        .divider {
            width: 100%; max-width: 800px; height: 40px;
            margin: 0 auto; position: relative;
            display: flex; align-items: center; justify-content: center;
        }
        .divider::before, .divider::after {
            content: ''; flex: 1; height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-gold) 40%, var(--border-gold) 60%, transparent);
        }
        .divider span {
            width: 12px; height: 12px; flex-shrink: 0;
            border: 1px solid var(--gold); transform: rotate(45deg);
            margin: 0 16px;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative; height: 100vh; min-height: 600px;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute; inset: 0; z-index: 0;
        }
        .hero-bg video, .hero-bg img {
            width: 100%; height: 100%; object-fit: cover;
        }
        .hero-overlay {
            position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(10,8,6,0.8) 90%, #0a0806 100%);
        }
        .hero-content {
            position: relative; z-index: 2;
            text-align: center; padding: 0 24px;
        }
        .hero-title {
            font-family: 'Spectral', serif;
            font-size: clamp(40px, 6vw, 80px);
            font-weight: 700; color: #fff;
            letter-spacing: 2px; margin-bottom: 16px;
        }
        .hero-sub {
            font-size: clamp(14px, 2vw, 18px);
            color: var(--gold-light);
            letter-spacing: 3px; text-transform: uppercase;
            margin-bottom: 32px;
        }
        .btn-primary {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 14px 40px;
            background: linear-gradient(135deg, #b88317, #ffd36b, #b88317);
            color: #1a1200; font-family: 'Spectral', serif;
            font-size: 16px; font-weight: 700;
            letter-spacing: 1.5px; text-transform: uppercase;
            border: none; cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(184,131,23,0.3);
        }
        .btn-outline {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 12px 36px;
            border: 1px solid var(--border-gold);
            color: #fff; font-size: 15px; font-weight: 500;
            letter-spacing: 1px; transition: all 0.3s;
        }
        .btn-outline:hover {
            border-color: var(--gold);
            background: rgba(202,163,106,0.08);
        }

        /* ===== GENERIC SECTION ===== */
        .section {
            padding: 80px 48px;
            max-width: 1200px; margin: 0 auto;
        }
        .section-title {
            font-family: 'Spectral', serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 600; color: #fff;
            text-align: center; margin-bottom: 16px;
        }
        .section-subtitle {
            text-align: center; color: var(--gold-dark);
            font-size: 14px; letter-spacing: 2px;
            text-transform: uppercase; margin-bottom: 48px;
        }

        /* ===== FEATURES ===== */
        .feature-row {
            display: flex; gap: 48px; align-items: center;
            margin-bottom: 64px;
        }
        .feature-row.reverse { flex-direction: row-reverse; }
        .feature-img {
            flex: 1; position: relative; overflow: hidden;
            border-radius: 4px;
        }
        .feature-img img, .feature-img video {
            width: 100%; height: 100%; object-fit: cover;
            aspect-ratio: 16/9;
        }
        .feature-text { flex: 1; }
        .feature-text h3 {
            font-family: 'Spectral', serif;
            font-size: clamp(22px, 3vw, 32px);
            font-weight: 600; color: #fff;
            margin-bottom: 16px; line-height: 1.3;
        }
        .feature-text p {
            color: var(--text); font-size: 15px;
            line-height: 1.7; opacity: 0.8;
        }

        /* ===== CHARACTERS ===== */
        .characters {
            position: relative; padding: 80px 0;
            background: var(--bg-section);
            overflow: hidden;
        }
        .char-bg {
            position: absolute; inset: 0; z-index: 0;
            background-size: cover; background-position: center;
            transition: background-image 0.6s ease;
        }
        .char-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(10,8,6,0.6) 0%, rgba(10,8,6,0.3) 40%, rgba(10,8,6,0.8) 100%);
        }
        .char-inner {
            position: relative; z-index: 1;
            max-width: 1200px; margin: 0 auto;
            display: flex; gap: 48px; padding: 0 48px;
            min-height: 500px; align-items: center;
        }
        .char-info { flex: 1; }
        .char-name {
            font-family: 'Spectral', serif;
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700; color: #fff;
            margin-bottom: 8px; letter-spacing: 1px;
        }
        .char-class {
            font-size: 14px; color: var(--gold);
            letter-spacing: 2px; text-transform: uppercase;
            margin-bottom: 20px;
        }
        .char-desc {
            font-size: 16px; color: var(--text);
            line-height: 1.7; max-width: 480px; opacity: 0.85;
        }
        .char-video-wrap {
            flex: 1; position: relative;
            display: flex; align-items: center; justify-content: center;
        }
        .char-video-wrap video {
            width: 100%; max-width: 500px;
            aspect-ratio: 9/16; object-fit: cover;
            border-radius: 4px;
        }
        .char-nav {
            display: flex; flex-direction: column; gap: 12px;
            position: absolute; right: 48px; top: 50%;
            transform: translateY(-50%); z-index: 2;
        }
        .char-nav-btn {
            width: 48px; height: 48px;
            border: 2px solid var(--border-gold);
            background: rgba(10,8,6,0.6);
            transform: rotate(45deg);
            cursor: pointer; transition: all 0.3s;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .char-nav-btn.active {
            border-color: var(--gold);
            box-shadow: 0 0 16px rgba(202,163,106,0.3);
        }
        .char-nav-btn img {
            transform: rotate(-45deg);
            width: 130%; height: 130%; object-fit: cover;
        }

        /* ===== NEWS ===== */
        .news-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 24px; margin-bottom: 40px;
        }
        .news-card {
            background: var(--bg-section);
            border: 1px solid rgba(202,163,106,0.1);
            overflow: hidden; transition: transform 0.3s, border-color 0.3s;
        }
        .news-card:hover {
            transform: translateY(-4px);
            border-color: rgba(202,163,106,0.3);
        }
        .news-card-img {
            width: 100%; aspect-ratio: 16/9;
            background: linear-gradient(135deg, #1a1200 0%, #0d0b08 100%);
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .news-card-img img { width: 100%; height: 100%; object-fit: cover; }
        .news-card-img .placeholder {
            font-family: 'Spectral', serif;
            font-size: 24px; color: var(--gold-dark); opacity: 0.4;
            letter-spacing: 3px;
        }
        .news-card-body { padding: 20px; }
        .news-card-cat {
            font-size: 11px; font-weight: 700;
            color: var(--gold-dark); letter-spacing: 1.5px;
            text-transform: uppercase; margin-bottom: 8px;
        }
        .news-card-title {
            font-family: 'Spectral', serif;
            font-size: 18px; font-weight: 500;
            color: #fff; line-height: 1.4; margin-bottom: 16px;
        }
        .news-card-meta {
            display: flex; gap: 12px; align-items: center;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 12px;
        }
        .news-card-meta .author { color: var(--gold-dark); font-weight: 600; }
        .news-card-meta .date { color: var(--text-dim); }

        /* ===== FOOTER ===== */
        .footer {
            border-top: 1px solid rgba(202,163,106,0.1);
            padding: 48px;
            text-align: center;
        }
        .footer-logo {
            font-family: 'Spectral', serif;
            font-size: 20px; font-weight: 700;
            color: var(--gold); letter-spacing: 3px;
            margin-bottom: 16px;
        }
        .footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; }
        .footer-links a {
            font-size: 13px; color: var(--text-dim);
            transition: color 0.3s;
        }
        .footer-links a:hover { color: var(--gold); }
        .footer-copy { font-size: 12px; color: var(--text-dim); }
        .footer-social { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; }
        .footer-social a {
            width: 40px; height: 40px;
            border: 1px solid var(--border-gold);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; color: var(--gold-dark);
            transition: all 0.3s;
        }
        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(202,163,106,0.08);
        }

        /* ===== MOBILE ===== */
        @media (max-width: 768px) {
            .nav { padding: 0 20px; height: 60px; }
            .nav-links { display: none; }
            .nav-links.open {
                display: flex; flex-direction: column;
                position: fixed; top: 60px; left: 0; right: 0;
                background: rgba(10,8,6,0.98);
                padding: 24px; gap: 20px;
                backdrop-filter: blur(12px);
            }
            .nav-hamburger { display: block; }
            .nav-cta { margin: 0; }

            .hero { min-height: 70vh; }
            .section { padding: 48px 20px; }

            .feature-row, .feature-row.reverse {
                flex-direction: column; gap: 24px;
            }

            .char-inner {
                flex-direction: column; padding: 0 20px;
                min-height: auto; gap: 24px;
            }
            .char-nav {
                position: relative; right: auto; top: auto;
                transform: none;
                flex-direction: row; justify-content: center;
                margin-bottom: 24px;
            }
            .char-nav-btn { width: 40px; height: 40px; }
            .char-video-wrap video { max-width: 100%; }

            .news-grid { grid-template-columns: 1fr; gap: 16px; }

            .footer { padding: 32px 20px; }
        }