        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f6f2;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            list-style: none;
            padding-left: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        :root {
            --primary: #1a3c34;
            --primary-light: #2a5a4e;
            --accent: #d4a12a;
            --accent-light: #f0c75e;
            --bg-cream: #f8f6f2;
            --bg-card: #ffffff;
            --text-dark: #1e1e1e;
            --text-muted: #5a5a5a;
            --border-light: #e6e0d4;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --radius-sm: 6px;
            --font-serif: Georgia, 'Times New Roman', serif;
        }
        .site-header {
            background: var(--primary);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: var(--accent);
            font-size: 1.8rem;
        }
        .my-logo span {
            font-family: var(--font-serif);
            font-style: italic;
            color: var(--accent-light);
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 300;
            opacity: 0.8;
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            color: var(--accent-light);
            border-bottom-color: var(--accent);
        }
        .primary-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            padding: 1rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--primary-light);
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        main {
            padding: 1.5rem 0 3rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body {
            background: var(--bg-card);
            padding: 2rem 2.2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }
        .content-body h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 0.5rem;
            font-family: var(--font-serif);
        }
        .content-body h1 i {
            color: var(--accent);
        }
        .content-body .meta-top {
            font-size: 0.9rem;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 1rem;
            margin-bottom: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }
        .content-body .meta-top .updated {
            font-weight: 600;
            color: var(--primary-light);
        }
        .content-body h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 2.4rem;
            margin-bottom: 0.8rem;
            font-family: var(--font-serif);
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
        }
        .content-body h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--primary-light);
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        .content-body h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-top: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .content-body p {
            margin-bottom: 1.2rem;
            font-size: 1.02rem;
            color: #333;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.4rem;
            padding-left: 1.8rem;
        }
        .content-body ul li {
            list-style: disc;
            margin-bottom: 0.4rem;
        }
        .content-body ol li {
            list-style: decimal;
            margin-bottom: 0.4rem;
        }
        .content-body .highlight-box {
            background: #f0f5f2;
            border-left: 5px solid var(--accent);
            padding: 1.2rem 1.6rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.4rem 0;
        }
        .content-body .highlight-box strong {
            color: var(--primary);
        }
        .content-body .insight-stat {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            padding: 0.1rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            background: #ede8df;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: #fff;
            border-top: 1px solid var(--border-light);
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.4rem 1.6rem;
            box-shadow: var(--shadow-sm);
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.8rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul li {
            list-style: none;
            padding: 0.3rem 0;
            border-bottom: 1px dashed var(--border-light);
        }
        .sidebar-card ul li a {
            color: var(--primary-light);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-card ul li a:hover {
            color: var(--accent);
        }
        .sidebar-card ul li a i {
            font-size: 0.8rem;
            color: var(--accent);
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            background: #fff;
            transition: 0.2s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(212, 161, 42, 0.15);
        }
        .search-form button {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #b88d22;
            transform: translateY(-1px);
        }
        .rating-section,
        .comment-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow-sm);
            margin-top: 2rem;
        }
        .rating-section h3,
        .comment-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.6rem;
        }
        .star-group {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.6rem 0;
        }
        .star-group i.active {
            color: var(--accent);
        }
        .star-group i:hover,
        .star-group i.hover {
            color: var(--accent-light);
        }
        .rating-section form,
        .comment-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .rating-section form input,
        .comment-section form input,
        .comment-section form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-family: inherit;
            transition: 0.2s;
        }
        .rating-section form input:focus,
        .comment-section form input:focus,
        .comment-section form textarea:focus {
            outline: none;
            border-color: var(--accent);
        }
        .rating-section form textarea,
        .comment-section form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-section form button,
        .comment-section form button {
            align-self: flex-start;
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-section form button:hover,
        .comment-section form button:hover {
            background: var(--primary-light);
            transform: translateY(-1px);
        }
        .link-woven {
            color: var(--primary-light);
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 2px;
            text-decoration-color: var(--accent);
        }
        .link-woven:hover {
            color: var(--accent);
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.85);
            padding: 2.8rem 0 1.8rem 0;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: var(--accent-light);
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-grid p,
        .footer-grid a {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-grid a:hover {
            color: var(--accent);
        }
        .footer-grid ul li {
            list-style: none;
            padding: 0.2rem 0;
        }
        .footer-grid ul li a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            color: var(--accent-light);
            font-weight: 500;
            padding: 0.2rem 0.6rem 0.2rem 0;
        }
        friend-link a:hover {
            color: #fff;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 1.4rem;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
        }
        .copyright strong {
            color: var(--accent-light);
            font-weight: 600;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .content-body {
                padding: 1.6rem 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.4rem;
                padding: 1rem 0 0.5rem 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.6rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                width: 100%;
                padding: 0.5rem 0;
                border-bottom: none;
            }
            .primary-nav a:hover {
                border-bottom: none;
                color: var(--accent-light);
            }
            .header-inner {
                align-items: flex-start;
            }
            .content-body h1 {
                font-size: 1.8rem;
            }
            .content-body h2 {
                font-size: 1.4rem;
            }
            .content-body h3 {
                font-size: 1.15rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .rating-section,
            .comment-section {
                padding: 1.2rem 1rem;
            }
            .star-group {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .content-body {
                padding: 1rem 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        :focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
