﻿        :root {
            --obsidian: #050302;
            --draconic-gold: #d4af37;
            --blood-red: #8a0707;
            --gold-glow: rgba(212, 175, 55, 0.3);
            --red-glow: rgba(138, 7, 7, 0.3);
            --text-main: #e0e0e0;
            --text-dim: #a0a0a0;
            --border-gold: rgba(212, 175, 55, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: default;
        }

        body {
            background-color: var(--obsidian);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Global Layout Fix - Force clearance of the fixed header */
        main {
            position: relative;
            z-index: 10;
        }

        body.custom-page main,
        body.blog-page main,
        body.gallery-page main {
            padding-top: 240px !important; 
            padding-bottom: 120px !important;
            min-height: 80vh !important;
        }

        @media (max-width: 768px) {
            body.custom-page main,
            body.blog-page main,
            body.gallery-page main {
                padding-top: 160px !important;
                padding-bottom: 80px !important;
            }
        }

        /* --- PAGE CONTENT STYLING --- */
        .page-content {
            color: var(--text-main);
            line-height: 1.8;
            max-width: 100% !important;
            overflow-x: hidden !important;
        }

        .page-content * {
            max-width: 100% !important;
            overflow-wrap: break-word !important;
            word-wrap: break-word !important;
        }

        .page-content p {
            margin-bottom: 1.5rem;
        }

        .page-content img {
            max-width: 100% !important;
            height: auto !important;
            border-radius: 0.5rem;
            margin: 2rem 0;
            border: 1px solid var(--border-gold);
        }

        .page-content h1, .page-content h2, .page-content h3 {
            color: var(--draconic-gold);
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            font-family: 'Cinzel', serif;
        }

        .page-content ul, .page-content ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .page-content li {
            margin-bottom: 0.5rem;
        }

        .page-content a {
            color: var(--draconic-gold);
            text-decoration: underline;
            transition: opacity 0.3s;
        }

        .page-content a:hover {
            opacity: 0.8;
        }

        .page-content table {
            width: 100% !important;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(0,0,0,0.3);
        }

        .page-content th, .page-content td {
            border: 1px solid rgba(212, 175, 55, 0.2);
            padding: 1rem;
            text-align: left;
        }

        /* Prevent content from leaking outside */
        .raw-content {
            max-width: 100%;
            overflow-x: auto;
        }

        h1, h2, h3, h4 {
            font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .font-cinzel {
            font-family: 'Cinzel', serif;
        }

        /* --- BACKGROUND SYSTEM --- */
        .horde-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -3;
            background: #000;
            overflow: hidden;
        }

        .smoke-layer {
            position: absolute;
            width: 250%;
            height: 250%;
            top: -75%;
            left: -75%;
            background: radial-gradient(circle at 50% 50%, rgba(30, 15, 10, 0.4) 0%, transparent 70%);
            filter: blur(100px);
            animation: smoke-drift 30s infinite linear;
            pointer-events: none;
        }

        .smoke-layer:nth-child(2) {
            background: radial-gradient(circle at 40% 60%, rgba(60, 10, 10, 0.3) 0%, transparent 60%);
            animation-duration: 45s;
            animation-direction: reverse;
        }

        @keyframes smoke-drift {
            from { transform: rotate(0deg) translate(100px) rotate(0deg); }
            to { transform: rotate(360deg) translate(100px) rotate(-360deg); }
        }

        .dragon-silhouette {
            position: fixed;
            bottom: -10%;
            right: -10%;
            width: 90vw;
            height: 90vh;
            z-index: -2;
            opacity: 0.12;
            filter: blur(4px);
            pointer-events: none;
            fill: #2a0000;
            transform: translateZ(0);
            transition: transform 0.1s ease-out;
        }

        .pulse-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: radial-gradient(circle at center, var(--red-glow) 0%, transparent 75%);
            opacity: 0;
            animation: pulse-heartbeat 5s infinite ease-in-out;
        }

        @keyframes pulse-heartbeat {
            0%, 100% { opacity: 0.15; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.1); }
        }

        #embers-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .glass {
            background: rgba(18, 18, 18, 0.7);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-gold);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
        }

        #sidebar-nav-container,
        #admin-sidebar {
            display: flex !important;
            flex-direction: column !important;
            align-items: stretch !important;
        }

        #admin-sidebar a {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            width: 100% !important;
        }

        /* --- NAVIGATION --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: transparent;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
        }

        nav.scrolled {
            padding: 1rem 5%;
            background: rgba(5, 3, 2, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        }

        .logo {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .nav-logo-img {
            max-height: 50px;
            width: auto;
            display: block;
            filter: drop-shadow(0 0 10px var(--gold-glow));
            transition: transform 0.3s ease;
            object-fit: contain;
        }

        .nav-logo-img:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--draconic-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover {
            color: var(--draconic-gold);
            text-shadow: 0 0 15px var(--gold-glow);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* --- DROPDOWN SYSTEM --- */
        .nav-item-dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: rgba(10, 8, 5, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-gold);
            padding: 1.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.8);
        }

        .nav-item-dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            font-size: 0.75rem !important;
            letter-spacing: 0.15em !important;
            padding: 0 !important;
        }

        .dropdown-content a::after {
            display: none;
        }

        .dropdown-content a:hover {
            padding-left: 10px !important;
        }

        /* --- HERO SECTION --- */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 160px 10% 80px;
            position: relative;
        }

        .hero-pretitle {
            font-family: 'Roboto Mono', monospace;
            color: var(--draconic-gold);
            letter-spacing: 0.6em;
            margin-bottom: 2rem;
            font-size: 0.85rem;
            opacity: 0;
            animation: fade-in 1.2s forwards 0.8s;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2rem, 7vw, 5.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2.5rem;
            background: linear-gradient(180deg, #fff 10%, #d4af37 80%, #8a0707 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.4));
            animation: title-reveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero p {
            font-size: clamp(1.1rem, 2.2vw, 1.5rem);
            color: var(--text-dim);
            max-width: 1000px;
            margin-bottom: 5rem;
            font-weight: 300;
            animation: fade-in 2.5s forwards 1.2s;
            opacity: 0;
            letter-spacing: 0.02em;
        }

        @keyframes title-reveal {
            from { opacity: 0; transform: translateY(60px) scale(0.95); filter: blur(20px); }
            to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
        }

        @keyframes fade-in {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .cta-group {
            display: flex;
            gap: 3rem;
            animation: fade-in 2.5s forwards 1.8s;
            opacity: 0;
        }

        .btn {
            padding: 1.5rem 4rem;
            font-family: 'Impact', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            border: none;
            position: relative;
            z-index: 1;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--draconic-gold);
            color: var(--obsidian);
            box-shadow: 0 0 35px var(--gold-glow);
        }

        .btn-primary:hover {
            box-shadow: 0 0 60px var(--draconic-gold);
            transform: translateY(-8px) scale(1.05);
        }

        .btn-secondary {
            background: transparent;
            color: var(--draconic-gold);
            border: 1px solid var(--border-gold);
            overflow: hidden;
        }

        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--draconic-gold);
            transform: translateY(-8px);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
        }

        /* --- PILLARS SECTION --- */
        .pillars {
            padding: 12rem 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1500px;
            margin: 0 auto;
        }

        .pillar-card {
            background: rgba(12, 10, 8, 0.8);
            border: 1px solid var(--border-gold);
            padding: 6rem 3rem;
            text-align: center;
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            backdrop-filter: blur(25px);
            overflow: hidden;
            cursor: pointer;
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(45deg, transparent, var(--draconic-gold), transparent);
            z-index: -1;
            opacity: 0;
            transition: 0.5s;
        }

        .pillar-card:hover::before {
            opacity: 0.3;
        }

        .pillar-card:hover {
            border-color: var(--draconic-gold);
            box-shadow: 0 30px 70px rgba(0,0,0,0.9), 0 0 40px rgba(212, 175, 55, 0.15);
            transform: translateY(-20px);
        }

        .pillar-icon {
            font-size: 4rem;
            margin-bottom: 2.5rem;
            display: block;
            filter: drop-shadow(0 0 15px var(--gold-glow));
            transition: 0.5s;
        }

        .pillar-card:hover .pillar-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .pillar-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--draconic-gold);
            letter-spacing: 0.4em;
        }

        .pillar-card p {
            color: var(--text-dim);
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.8;
        }

        /* --- LEGACY SECTION --- */
        .legacy {
            padding: 12rem 10%;
            display: flex;
            gap: 10rem;
            align-items: center;
            position: relative;
            background: linear-gradient(to right, transparent, rgba(138, 7, 7, 0.03), transparent);
        }

        .video-box {
            flex: 1.4;
            position: relative;
            aspect-ratio: 16/9;
            background: #000;
            border: 1px solid var(--border-gold);
            box-shadow: 0 40px 80px rgba(0,0,0,1);
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .video-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%);
            z-index: 1;
        }

        .video-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            transition: 0.8s;
            filter: grayscale(0.5) contrast(1.2);
        }

        .video-box:hover img {
            opacity: 0.6;
            transform: scale(1.1);
            filter: grayscale(0) contrast(1.3);
        }

        .play-btn {
            position: absolute;
            width: 100px;
            height: 100px;
            background: rgba(212, 175, 55, 0.15);
            border: 2px solid var(--draconic-gold);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--draconic-gold);
            font-size: 2.5rem;
            transition: 0.5s;
            backdrop-filter: blur(10px);
            z-index: 2;
        }

        .video-box:hover .play-btn {
            background: var(--draconic-gold);
            color: var(--obsidian);
            transform: scale(1.15);
            box-shadow: 0 0 50px var(--draconic-gold);
        }

        .stats-grid {
            flex: 1;
            display: grid;
            gap: 5rem;
        }

        .stat-card h2 {
            font-size: 5rem;
            color: var(--draconic-gold);
            margin-bottom: 0.8rem;
            font-weight: 700;
            line-height: 1;
            text-shadow: 0 0 30px var(--gold-glow);
        }

        .stat-card p {
            font-family: 'Roboto Mono', monospace;
            text-transform: uppercase;
            letter-spacing: 0.5em;
            color: var(--text-dim);
            font-size: 0.9rem;
            font-weight: 400;
        }

        /* --- CHRONICLE --- */
        .chronicle {
            padding: 12rem 10%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 8rem;
        }

        .section-header h2 {
            font-size: 3.5rem;
            color: #fff;
            position: relative;
            display: inline-block;
            padding-bottom: 2rem;
            letter-spacing: 0.4em;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0; left: 15%; width: 70%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--draconic-gold), transparent);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            width: 100%;
        }

        .news-item {
            background: #080808;
            border: 1px solid rgba(255,255,255,0.03);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-item:hover {
            border-color: var(--border-gold);
            transform: translateY(-15px);
            box-shadow: 0 40px 80px rgba(0,0,0,0.8);
        }

        .news-thumb {
            width: 100%;
            aspect-ratio: 16/9;
            background: linear-gradient(45deg, #111 25%, #1a1a1a 50%, #111 75%);
            background-size: 200% 200%;
            animation: gradient-flow 10s infinite linear;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .news-thumb-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
            transition: opacity 0.5s ease;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(0.5) contrast(1.2);
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
        }

        .news-item:hover .news-thumb img {
            filter: grayscale(0) contrast(1.1);
            transform: scale(1.1);
        }

        .news-info {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .news-info h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--draconic-gold);
            line-height: 1.3;
            letter-spacing: 0.1em;
            overflow-wrap: break-word;
            word-wrap: break-word;
            hyphens: auto;
        }

        .news-info p {
            color: var(--text-dim);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            font-weight: 300;
            line-height: 1.7;
            flex-grow: 1;
        }

        .read-more {
            color: #fff;
            text-decoration: none;
            font-family: 'Impact', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            display: flex;
            align-items: center;
            gap: 1.2rem;
            transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            font-weight: 700;
        }

        .read-more:hover {
            color: var(--draconic-gold);
            gap: 2rem;
            text-shadow: 0 0 10px var(--gold-glow);
        }

        /* --- FOOTER --- */
        footer {
            padding: 12rem 10% 6rem;
            background: #010101;
            border-top: 1px solid rgba(212, 175, 55, 0.08);
            position: relative;
        }

        .footer-crest {
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 120px;
            background: #010101;
            border: 2px solid var(--draconic-gold);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 40px var(--gold-glow);
            z-index: 5;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2.5fr repeat(3, 1fr);
            gap: 8rem;
            margin-bottom: 8rem;
        }

        .footer-brand h2 {
            color: var(--draconic-gold);
            font-size: 2.2rem;
            margin-bottom: 2.5rem;
            letter-spacing: 0.3em;
        }

        .footer-brand p {
            color: var(--text-dim);
            max-width: 450px;
            font-weight: 300;
            line-height: 2;
            font-size: 1.05rem;
        }

        .footer-nav h4 {
            color: var(--draconic-gold);
            font-size: 0.9rem;
            margin-bottom: 3rem;
            letter-spacing: 0.3em;
            position: relative;
        }

        .footer-nav h4::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 0;
            width: 30px;
            height: 1px;
            background: var(--draconic-gold);
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 1.5rem;
        }

        .footer-nav a {
            color: var(--text-dim);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 300;
            letter-spacing: 0.05em;
        }

        .footer-nav a:hover {
            color: #fff;
            padding-left: 10px;
        }

        .footer-bottom {
            padding-top: 6rem;
            border-top: 1px solid rgba(255,255,255,0.03);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: #333;
            letter-spacing: 0.2em;
            font-family: 'Roboto Mono', monospace;
        }

        /* --- MOBILE MENU OVERLAY --- */
        #mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(5, 3, 2, 0.98);
            backdrop-filter: blur(20px);
            z-index: 2000 !important;
            display: none; /* Controlled by JS */
            flex-direction: column;
            align-items: center;
            justify-content: flex-start; /* Start from top to allow scrolling */
            padding: 8rem 2rem 5rem; /* Large top padding for close button space */
            overflow-y: auto; /* Enable vertical scrolling */
            -webkit-overflow-scrolling: touch;
        }

        #mobile-menu.active {
            display: flex !important;
        }

        #mobile-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            color: var(--draconic-gold);
            cursor: pointer;
        }

        .mobile-links-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            text-align: center;
            width: 100%;
        }

        .mobile-link {
            font-family: 'Impact', sans-serif;
            font-size: 1.8rem;
            color: var(--text-main);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            transition: color 0.3s ease;
        }

        .mobile-link:hover, .mobile-link.active {
            color: var(--draconic-gold);
            text-shadow: 0 0 15px var(--gold-glow);
        }

        .mobile-link-cta {
            border: 1px solid var(--draconic-gold);
            padding: 1rem 2rem;
            color: var(--draconic-gold) !important;
            margin-top: 1rem;
        }

        #mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--draconic-gold);
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        #mobile-toggle svg {
            width: 35px;
            height: 35px;
            stroke: var(--draconic-gold);
            display: block;
        }

        #mobile-close svg {
            width: 40px;
            height: 40px;
            stroke: var(--draconic-gold);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1400px) {
            .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 4rem; }
        }

        @media (max-width: 1200px) {
            .legacy { flex-direction: column; gap: 7rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
        }

        @media (max-width: 768px) {
            body { font-size: 14px; }
            
            #navbar { 
                padding: 1.5rem 5% !important;
                background: rgba(5, 3, 2, 0.8) !important;
                backdrop-filter: blur(10px);
                border-bottom: 1px solid var(--border-gold);
                display: flex !important;
                justify-content: space-between !important;
            }
            
            .logo {
                display: flex;
                align-items: center;
                height: 100%;
            }

            .nav-logo-img {
                height: 40px;
                width: auto;
                max-width: 180px;
                object-fit: contain;
            }

            .nav-links { display: none !important; }
            
            #mobile-toggle { display: block !important; }
            
            .hero {
                padding: 120px 5% 60px;
                height: auto;
                min-height: 80vh;
                text-align: center;
            }
            
            .hero-pretitle { 
                font-size: 0.7rem; 
                letter-spacing: 0.3em; 
                margin-bottom: 1rem;
            }

            .hero h1 { 
                font-size: 2.8rem; 
                line-height: 1.1;
                margin-bottom: 1.5rem;
                filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
            }
            
            .hero p { 
                font-size: 1rem; 
                margin-bottom: 3rem;
                line-height: 1.5;
            }
            
            .cta-group { 
                flex-direction: column; 
                width: 100%; 
                gap: 1rem; 
            }
            
            .btn { 
                width: 100%; 
                padding: 1.2rem 2rem; 
                font-size: 0.8rem;
            }

            .pillars {
                padding: 4rem 5%;
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .pillar-card { padding: 4rem 2rem; }

            .legacy {
                padding: 4rem 5%;
                gap: 4rem;
            }

            .stat-card h2 { font-size: 3.5rem; }

            .chronicle { padding: 4rem 5%; }
            .section-header { margin-bottom: 4rem; }
            .section-header h2 { font-size: 2rem; letter-spacing: 0.2em; }

            .news-grid { 
                grid-template-columns: 1fr; 
                gap: 3rem;
            }
            
            .news-info { padding: 2rem; }

            footer { padding: 6rem 5% 4rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
            .footer-brand p { margin: 0 auto; }
            .footer-nav h4::after { left: 50%; transform: translateX(-50%); }
            .footer-bottom { flex-direction: column; gap: 2rem; text-align: center; }
            
            /* Background Optimization for Mobile */
            .dragon-silhouette {
                width: 150vw;
                height: 150vh;
                bottom: -20%;
                right: -25%;
                opacity: 0.08;
            }

            .smoke-layer {
                width: 400%;
                height: 400%;
            }
        }
