        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #7B001C;
            --primary-light: #A52A2A;
            --gold: #C9A84C;
            --gold-light: #E8D48B;
            --dark: #1A1025;
            --dark-soft: #2C1F3D;
            --light: #F9F5F0;
            --gray: #6B5E7B;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
            --radius: 12px;
            --transition: 0.3s ease;
            --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --font-heading: 'Georgia', 'Times New Roman', serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-body);
            background: var(--light);
            color: var(--dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary);
            text-decoration: underline;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--gold);
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
            color: var(--dark-soft);
        }
        ::selection {
            background: var(--gold);
            color: var(--dark);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--gold) !important;
            text-decoration: none !important;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity var(--transition);
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo i {
            color: var(--gold-light);
            font-size: 1.3rem;
        }
        .my-logo span {
            color: var(--light);
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: var(--gold);
            color: var(--dark);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
        }
        .nav-menu a {
            color: var(--light) !important;
            text-decoration: none !important;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color var(--transition), color var(--transition);
        }
        .nav-menu a:hover {
            border-bottom-color: var(--gold);
            color: var(--gold-light) !important;
        }
        .nav-menu .active a {
            border-bottom-color: var(--gold);
            color: var(--gold) !important;
        }
        .breadcrumb {
            background: var(--light);
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: var(--gray);
            font-weight: 500;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media(max-width:992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h1 {
            font-size: 2.3rem;
            margin-bottom: 12px;
            color: var(--primary);
        }
        .article-body .meta {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .article-body .meta i {
            margin-right: 4px;
        }
        .article-body .last-updated {
            background: var(--gold-light);
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 20px;
        }
        .article-body h2 {
            font-size: 1.8rem;
            margin-top: 48px;
            margin-bottom: 18px;
            color: var(--primary);
            border-left: 5px solid var(--gold);
            padding-left: 16px;
        }
        .article-body h3 {
            font-size: 1.35rem;
            margin-top: 32px;
            margin-bottom: 12px;
            color: var(--dark-soft);
        }
        .article-body h4 {
            font-size: 1.1rem;
            margin-top: 24px;
            margin-bottom: 8px;
            color: var(--dark-soft);
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 18px;
            font-size: 1.02rem;
        }
        .article-body ul,
        .article-body ol {
            margin-bottom: 20px;
            padding-left: 24px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body blockquote {
            border-left: 4px solid var(--gold);
            background: rgba(201, 168, 76, 0.08);
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: var(--dark-soft);
        }
        .article-body .featured-image {
            margin: 28px 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-body .featured-image figcaption {
            font-size: 0.85rem;
            color: var(--gray);
            text-align: center;
            margin-top: 8px;
        }
        .article-body .highlight-box {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
            color: var(--light);
            padding: 24px 28px;
            border-radius: var(--radius);
            margin: 28px 0;
            box-shadow: var(--shadow);
        }
        .article-body .highlight-box h4 {
            color: var(--gold);
            margin-top: 0;
        }
        .article-body .highlight-box p {
            color: rgba(255, 255, 255, 0.9);
        }
        .article-body .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .article-body .stat-item {
            background: white;
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .article-body .stat-item .num {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            font-family: var(--font-heading);
        }
        .article-body .stat-item .label {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 4px;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: white;
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 24px;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 16px;
            border-bottom: 2px solid var(--gold-light);
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card a {
            text-decoration: none;
            font-weight: 500;
        }
        .sidebar-card a:hover {
            text-decoration: underline;
        }
        .search-form {
            display: flex;
            gap: 8px;
            width: 100%;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: border-color var(--transition);
            background: var(--light);
        }
        .search-form input:focus {
            border-color: var(--gold);
            outline: none;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            transition: background var(--transition);
        }
        .search-form button:hover {
            background: var(--primary-light);
        }
        .feedback-section {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid rgba(0, 0, 0, 0.06);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        @media(max-width:768px) {
            .feedback-section {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .feedback-card {
            background: white;
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .feedback-card h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 10px 14px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 0.95rem;
            font-family: var(--font-body);
            transition: border-color var(--transition);
            background: var(--light);
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--gold);
            outline: none;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            font-size: 1rem;
        }
        .feedback-card .btn:hover {
            background: var(--primary-light);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--gold);
        }
        .friend-links-section {
            background: var(--dark);
            padding: 32px 0 20px;
            margin-top: 40px;
        }
        .friend-links-section h3 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 16px;
            text-align: center;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
        }
        friend-link a {
            color: var(--gold-light) !important;
            text-decoration: none !important;
            font-weight: 400;
            font-size: 0.9rem;
            transition: color var(--transition);
        }
        friend-link a:hover {
            color: var(--gold) !important;
            text-decoration: underline !important;
        }
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 20px 0 32px;
            text-align: center;
            font-size: 0.85rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .site-footer .copyright {
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.5);
        }
        .site-footer a {
            color: var(--gold-light) !important;
        }
        @media(max-width:768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 8px;
                padding: 16px 0 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                font-size: 1rem;
                padding: 8px 0;
            }
            .article-body h1 {
                font-size: 1.8rem;
            }
            .article-body h2 {
                font-size: 1.4rem;
            }
            .article-body h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .feedback-card {
                padding: 18px;
            }
            .sidebar {
                position: static;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            .article-body h1 {
                font-size: 1.5rem;
            }
            .article-body .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
            }
        }
        .section-reveal {
            animation: fadeUp 0.5s ease forwards;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
