*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --gold: #C89B3C;
            --gold-light: #E8D48B;
            --deep-blue: #0A1428;
            --blue-mid: #1B2A4A;
            --blue-light: #2C3E6B;
            --steel: #8B9BB4;
            --cream: #F5F0E8;
            --dark-bg: #0E1A2B;
            --card-bg: #132237;
            --text-light: #E8E6E3;
            --text-muted: #A0AEC0;
            --border-glow: rgba(200, 155, 60, 0.35);
            --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.8);
            --radius: 14px;
            --font-sans: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --max-width: 1200px;
            --header-h: 70px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.2s, text-shadow 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: var(--gold-light);
            text-shadow: 0 0 8px rgba(200, 155, 60, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, var(--deep-blue) 0%, #0D1A30 100%);
            border-bottom: 2px solid var(--gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
            min-height: var(--header-h);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
            width: 100%;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--gold);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.2s;
            line-height: 1.2;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--gold-light);
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            color: var(--steel);
            display: block;
            letter-spacing: 2px;
            text-transform: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px 18px;
            flex-wrap: wrap;
        }
        .main-nav a {
            font-size: 0.9rem;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 8px;
            color: var(--steel);
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(200, 155, 60, 0.12);
            color: var(--gold-light);
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 1.6rem;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: background 0.25s;
        }
        .hamburger:hover {
            background: rgba(200, 155, 60, 0.15);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: rgba(10, 20, 40, 0.8);
            padding: 10px 0 6px;
            font-size: 0.8rem;
            border-bottom: 1px solid rgba(200, 155, 60, 0.15);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: var(--steel);
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--steel);
        }
        .breadcrumb .current {
            color: var(--gold);
            font-weight: 600;
        }
        .hero {
            padding: 50px 0 40px;
            background: radial-gradient(ellipse at 20% 50%, rgba(200, 155, 60, 0.08) 0%, transparent 70%);
            border-bottom: 1px solid rgba(200, 155, 60, 0.1);
        }
        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 900;
            line-height: 1.15;
            color: var(--gold);
            text-shadow: 0 0 30px rgba(200, 155, 60, 0.15);
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 780px;
            color: var(--text-muted);
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 30px;
            margin-top: 22px;
            font-size: 0.9rem;
            color: var(--steel);
        }
        .hero-meta i {
            color: var(--gold);
            margin-right: 6px;
        }
        .last-updated {
            font-weight: 600;
            color: var(--gold-light);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0 50px;
        }
        @media(max-width:920px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .main-article h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--gold);
            border-left: 5px solid var(--gold);
            padding-left: 18px;
            margin: 48px 0 18px;
        }
        .main-article h2:first-of-type {
            margin-top: 0;
        }
        .main-article h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold-light);
            margin: 32px 0 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .main-article h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--steel);
            margin: 22px 0 8px;
            padding-left: 8px;
            border-left: 3px solid var(--gold);
        }
        .main-article p {
            margin-bottom: 18px;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
        }
        .main-article p strong {
            color: var(--text-light);
            font-weight: 600;
        }
        .main-article ul,
        .main-article ol {
            margin: 0 0 22px 24px;
            color: var(--text-muted);
        }
        .main-article li {
            margin-bottom: 8px;
        }
        .main-article blockquote {
            border-left: 4px solid var(--gold);
            padding: 14px 24px;
            margin: 24px 0;
            background: rgba(200, 155, 60, 0.06);
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: var(--steel);
        }
        .feature-img {
            margin: 32px 0 28px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(200, 155, 60, 0.2);
        }
        .feature-img img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .feature-img figcaption {
            padding: 10px 14px;
            font-size: 0.85rem;
            color: var(--steel);
            background: rgba(0, 0, 0, 0.4);
            border-radius: 0 0 var(--radius) var(--radius);
        }
        .insight-box {
            background: var(--card-bg);
            border: 1px solid rgba(200, 155, 60, 0.25);
            border-radius: var(--radius);
            padding: 22px 28px;
            margin: 28px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .insight-box h4 {
            color: var(--gold);
            border: none;
            padding: 0;
            margin: 0 0 8px;
            font-size: 1.15rem;
        }
        .insight-box p {
            margin: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 18px 14px;
            text-align: center;
            border: 1px solid rgba(200, 155, 60, 0.12);
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold);
            display: block;
        }
        .stat-card .label {
            font-size: 0.8rem;
            color: var(--steel);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .side-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 22px 20px;
            border: 1px solid rgba(200, 155, 60, 0.12);
        }
        .side-card h3 {
            font-size: 1.15rem;
            color: var(--gold);
            margin-bottom: 14px;
            border-bottom: 1px solid rgba(200, 155, 60, 0.2);
            padding-bottom: 8px;
        }
        .side-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .side-card li {
            margin-bottom: 8px;
        }
        .side-card li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
            padding: 4px 0;
            color: var(--steel);
            transition: color 0.2s, padding-left 0.2s;
        }
        .side-card li a:hover {
            color: var(--gold-light);
            padding-left: 6px;
        }
        .side-card li a i {
            width: 20px;
            color: var(--gold);
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid rgba(200, 155, 60, 0.3);
            background: var(--deep-blue);
            color: var(--text-light);
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.25s;
        }
        .search-form input:focus {
            border-color: var(--gold);
        }
        .search-form button {
            padding: 10px 18px;
            border: none;
            border-radius: 8px;
            background: var(--gold);
            color: var(--deep-blue);
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.9rem;
        }
        .search-form button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .feedback-forms {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-top: 10px;
        }
        .feedback-forms form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .feedback-forms label {
            font-size: 0.85rem;
            color: var(--steel);
            font-weight: 600;
        }
        .feedback-forms textarea,
        .feedback-forms input[type="text"],
        .feedback-forms input[type="number"],
        .feedback-forms select {
            padding: 9px 12px;
            border-radius: 8px;
            border: 1px solid rgba(200, 155, 60, 0.25);
            background: var(--deep-blue);
            color: var(--text-light);
            font-size: 0.9rem;
            resize: vertical;
            outline: none;
            transition: border-color 0.25s;
        }
        .feedback-forms textarea:focus,
        .feedback-forms input:focus,
        .feedback-forms select:focus {
            border-color: var(--gold);
        }
        .feedback-forms .btn-submit {
            padding: 9px 16px;
            border: none;
            border-radius: 8px;
            background: var(--gold);
            color: var(--deep-blue);
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.9rem;
            align-self: flex-start;
        }
        .feedback-forms .btn-submit:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.3rem;
            color: var(--steel);
            cursor: pointer;
        }
        .rating-stars i.active {
            color: var(--gold);
        }
        .rating-stars i:hover {
            color: var(--gold-light);
        }
        .friend-links-section {
            background: var(--deep-blue);
            border-top: 2px solid var(--gold);
            padding: 30px 0 20px;
            margin-top: 20px;
        }
        .friend-links-section h3 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            font-size: 0.9rem;
        }
        friend-link a {
            color: var(--steel);
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: var(--gold-light);
        }
        .site-footer {
            background: #070E1A;
            border-top: 1px solid rgba(200, 155, 60, 0.15);
            padding: 24px 0 30px;
            margin-top: auto;
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .site-footer .copyright {
            margin-top: 6px;
            color: var(--steel);
        }
        .site-footer a {
            color: var(--gold);
        }
        @media(max-width:768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: var(--deep-blue);
                padding: 16px 12px;
                border-radius: 0 0 var(--radius) var(--radius);
                border: 1px solid rgba(200, 155, 60, 0.15);
                margin-top: 6px;
            }
            #nav-toggle:checked+.hamburger+.main-nav {
                display: flex;
            }
            #nav-toggle:checked+.hamburger .fa-bars::before {
                content: "\f00d";
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .content-grid {
                padding: 20px 0 30px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:480px) {
            .wrapper {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .main-article h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            .main-article h3 {
                font-size: 1.15rem;
            }
            .stat-card .num {
                font-size: 1.5rem;
            }
            .side-card {
                padding: 16px;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .gold-text {
            color: var(--gold);
        }
        .mt-0 {
            margin-top: 0 !important;
        }
        .mb-0 {
            margin-bottom: 0 !important;
        }
        @media(prefers-reduced-motion:reduce) {
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }
