        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #FDF8F0;
            color: #2C3E50;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #B22222;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8B0000;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1A1A2E;
        }
        :root {
            --primary: #B22222;
            --primary-dark: #8B0000;
            --gold: #D4A017;
            --gold-light: #F0D080;
            --bg-cream: #FDF8F0;
            --bg-white: #FFFFFF;
            --text-dark: #2C3E50;
            --text-medium: #4A5568;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: var(--bg-white);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--gold);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--primary-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: var(--gold);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: var(--primary);
        }
        .my-logo span {
            font-weight: 300;
            color: var(--text-medium);
            font-size: 0.9rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 0.25rem;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: var(--transition);
        }
        .nav-list li a:hover {
            background: var(--gold-light);
            color: var(--primary-dark);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--primary-dark);
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .hamburger:hover {
            background: var(--gold-light);
        }
        .breadcrumb {
            background: var(--bg-cream);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #999;
        }
        .breadcrumb a {
            color: var(--text-medium);
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 60%, #4A1A1A 100%);
            color: #fff;
            padding: 3rem 0 3.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⏱";
            position: absolute;
            right: -2rem;
            bottom: -2rem;
            font-size: 16rem;
            opacity: 0.04;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #fff;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }
        .hero h1 i {
            color: var(--gold);
            margin-right: 0.5rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0.5rem auto 0;
            color: rgba(255, 255, 255, 0.85);
        }
        .hero .badge {
            display: inline-block;
            background: var(--gold);
            color: #1A1A2E;
            padding: 0.25rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 2rem 2.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }
        .widget {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--gold);
        }
        .widget h3 {
            font-size: 1.05rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            border-bottom: 2px solid var(--gold-light);
            padding-bottom: 0.5rem;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .widget ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            font-weight: 500;
            font-size: 0.9rem;
        }
        .widget ul li a i {
            margin-right: 0.4rem;
            color: var(--gold);
            font-size: 0.8rem;
        }
        .content-body h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            border-bottom: 3px solid var(--gold-light);
            padding-bottom: 0.4rem;
        }
        .content-body h2:first-of-type {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
            color: #1A1A2E;
        }
        .content-body h4 {
            font-size: 1.1rem;
            margin-top: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--text-medium);
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 1.1rem;
            font-size: 1rem;
            color: var(--text-dark);
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
        }
        .content-body li {
            margin-bottom: 0.4rem;
        }
        .content-body .highlight-box {
            background: #FEF9E7;
            border-left: 5px solid var(--gold);
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .content-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content-body .stat-block {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .content-body .stat-item {
            background: var(--bg-cream);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .content-body .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }
        .content-body .stat-item .label {
            font-size: 0.85rem;
            color: var(--text-medium);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #eee;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
            background: #ddd;
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            color: var(--text-medium);
            background: var(--bg-cream);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--bg-white);
        }
        .search-form input:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
        }
        .search-form button {
            padding: 0.75rem 1.5rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }
        .interaction-section {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--gold-light);
        }
        .comment-form,
        .rating-form {
            background: var(--bg-cream);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
        }
        .comment-form h3,
        .rating-form h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
            margin-bottom: 0.75rem;
            background: var(--bg-white);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
        }
        .comment-form button,
        .rating-form button {
            padding: 0.65rem 1.8rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: var(--primary-dark);
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
            margin: 0.75rem 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars input:checked~label,
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: var(--gold);
        }
        .site-footer {
            background: #1A1A2E;
            color: rgba(255, 255, 255, 0.85);
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
            border-top: 4px solid var(--gold);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .site-footer a {
            color: rgba(255, 255, 255, 0.75);
        }
        .site-footer a:hover {
            color: var(--gold-light);
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
        }
        .site-footer .footer-links li {
            padding: 0.25rem 0;
        }
        .site-footer .footer-links li a i {
            margin-right: 0.4rem;
            font-size: 0.8rem;
        }
        .friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1rem;
            border-left: 3px solid var(--gold);
        }
        .friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .friend-link a i {
            margin-right: 0.3rem;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .copyright strong {
            color: var(--gold-light);
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.25rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                padding: 0.5rem 0;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-white);
                border-radius: 0 0 var(--radius) var(--radius);
                box-shadow: var(--shadow);
                padding: 0.75rem 0;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                z-index: 999;
                border-top: 2px solid var(--gold-light);
            }
            .nav-list.active {
                display: flex;
            }
            .nav-list li a {
                padding: 0.7rem 1.5rem;
                border-radius: 0;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-body {
                padding: 1.25rem;
            }
            .content-body h2 {
                font-size: 1.4rem;
            }
            .content-body h3 {
                font-size: 1.15rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .stat-block {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero {
                padding: 2rem 0 2.5rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .content-body {
                padding: 1rem;
            }
            .stat-block {
                grid-template-columns: 1fr;
            }
            .my-logo span {
                display: none;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-primary {
            color: var(--primary);
        }
        .fw-700 {
            font-weight: 700;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .last-updated {
            display: inline-block;
            background: var(--gold-light);
            padding: 0.2rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
