        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #faf9f7;
            color: #1e2a2f;
            line-height: 1.7;
            font-size: 1.0625rem;
            padding: 0 1rem;
        }
        a {
            color: #b86b1f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #7a4512;
            text-decoration: underline;
        }
        a:focus-visible {
            outline: 2px solid #b86b1f;
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        :root {
            --saffron: #ff9933;
            --green: #138808;
            --white: #ffffff;
            --deep-saffron: #cc7a1a;
            --light-bg: #f5f0eb;
            --card-bg: #ffffff;
            --border-light: #e8e0d8;
            --text-dark: #1e2a2f;
            --text-muted: #5a6a72;
            --accent: #b86b1f;
        }
        .site-header {
            background: linear-gradient(135deg, #ffffff 0%, #f5f0eb 100%);
            border-bottom: 3px solid var(--saffron);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--deep-saffron);
            background: linear-gradient(135deg, #b86b1f, #138808);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--saffron);
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text-dark);
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        .primary-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--text-dark);
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: var(--saffron);
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            background: transparent;
            padding: 0.6rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        .hero {
            background: linear-gradient(145deg, #f5f0eb 0%, #e8dfd6 100%);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            margin: 1.5rem 0 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            border-left: 6px solid var(--saffron);
        }
        .hero-text {
            flex: 1 1 300px;
        }
        .hero-text h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }
        .hero-text h1 i {
            color: var(--saffron);
        }
        .hero-text p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 600px;
        }
        .hero-img {
            flex: 0 0 260px;
        }
        .hero-img img {
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
            width: 100%;
            height: auto;
        }
        .search-section {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-light);
        }
        .search-section form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1 1 240px;
            padding: 0.75rem 1.2rem;
            border: 2px solid var(--border-light);
            border-radius: 40px;
            font-size: 1rem;
            background: var(--light-bg);
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-section input[type="text"]:focus {
            outline: none;
            border-color: var(--saffron);
            box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.15);
        }
        .search-section button {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 40px;
            background: var(--saffron);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: var(--deep-saffron);
            transform: scale(1.02);
        }
        .search-section button:active {
            transform: scale(0.97);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.2rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid var(--saffron);
            display: inline-block;
            color: var(--text-dark);
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem 0;
            color: #2d3e45;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem 0;
            color: #3d525a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .content-main ul,
        .content-main ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
        }
        .content-main li {
            margin-bottom: 0.4rem;
        }
        .highlight-box {
            background: var(--light-bg);
            border-left: 5px solid var(--green);
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: var(--green);
        }
        .insight-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-light);
        }
        .link-list {
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 1.5rem 0;
        }
        .link-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .link-list li i {
            color: var(--saffron);
            width: 1.2rem;
            text-align: center;
        }
        .sidebar-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-light);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin: 0 0 0.8rem 0;
            border-bottom: 2px solid var(--saffron);
            padding-bottom: 0.3rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0e8e0;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-weight: 500;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem 0;
        }
        .comment-box,
        .rating-box {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid var(--border-light);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            border-bottom: 2px solid var(--saffron);
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        .comment-box form,
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .comment-box textarea,
        .comment-box input[type="text"] {
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: var(--light-bg);
            transition: border 0.2s;
            width: 100%;
        }
        .comment-box textarea:focus,
        .comment-box input[type="text"]:focus {
            outline: none;
            border-color: var(--saffron);
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-box select {
            padding: 0.7rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-size: 1rem;
            background: var(--light-bg);
            width: 100%;
        }
        .btn-submit {
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 40px;
            background: var(--green);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #0e6e06;
            transform: scale(1.02);
        }
        .btn-submit:active {
            transform: scale(0.97);
        }
        .btn-submit i {
            margin-right: 0.4rem;
        }
        .star-display {
            color: #f4b836;
            font-size: 1.3rem;
            letter-spacing: 2px;
        }
        .content-img-wrap {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .content-img-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }
        .content-img-wrap figcaption {
            background: var(--light-bg);
            padding: 0.6rem 1.2rem;
            font-size: 0.88rem;
            color: var(--text-muted);
            text-align: center;
        }
        .site-footer {
            background: #1e2a2f;
            color: #d4d9dc;
            padding: 2.5rem 0 1.5rem 0;
            border-radius: 24px 24px 0 0;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: var(--saffron);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            border-bottom: 2px solid #3d525a;
            padding-bottom: 0.3rem;
        }
        .footer-col a {
            color: #bcc5c9;
            display: block;
            padding: 0.2rem 0;
            font-size: 0.92rem;
        }
        .footer-col a:hover {
            color: var(--saffron);
            text-decoration: none;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-top: 1.5rem;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #e0d6c8;
            margin-right: 1.5rem;
            display: inline-block;
            padding: 0.2rem 0;
        }
        friend-link a:hover {
            color: var(--saffron);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #3d525a;
            font-size: 0.88rem;
            color: #9aabaf;
        }
        .copyright a {
            color: #d4d9dc;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .hero {
                padding: 2rem 1.5rem;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--white);
                border-radius: 16px;
                padding: 0.8rem 0.2rem;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                border: 1px solid var(--border-light);
                margin-top: 0.5rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 8px;
                width: 100%;
            }
            .hero {
                flex-direction: column-reverse;
                padding: 1.5rem 1.2rem;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .hero-img {
                flex: 0 0 auto;
                max-width: 200px;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                grid-template-columns: 1fr;
            }
            .search-section form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-section input[type="text"] {
                flex: 1 1 auto;
            }
            .search-section button {
                justify-content: center;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1.5rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .comment-box,
            .rating-box {
                padding: 1.2rem;
            }
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .last-updated {
            display: inline-block;
            background: var(--light-bg);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: var(--green);
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
