        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fefbf5;
            color: #1f2937;
            line-height: 1.7;
            padding: 0 0 2rem 0;
        }
        a {
            color: #c75000;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ff7b2b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        :root {
            --saffron: #FF9933;
            --saffron-light: #ffb366;
            --green: #138808;
            --green-dark: #0e6b06;
            --blue: #1a3a6b;
            --gold: #d4a017;
            --cream: #fefbf5;
            --charcoal: #1f2937;
            --warm-gray: #f5ede4;
            --border-light: #e5ddd4;
        }
        .site-header {
            background: linear-gradient(135deg, var(--saffron) 0%, #ffb366 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(255, 153, 51, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a2e;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.2rem 1rem 0.2rem 0.8rem;
            border-radius: 60px;
            backdrop-filter: blur(4px);
            transition: background 0.3s;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.35);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #1a1a2e;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-left: 0.2rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            color: #1a1a2e;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.5);
            color: #000;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #fff;
            color: var(--blue);
            font-weight: 600;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1a1a2e;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        .nav-check {
            display: none;
        }
        .breadcrumb {
            background: #fff7ed;
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            align-items: center;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b8956e;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #8a6d4b;
        }
        .breadcrumb .current {
            color: #1f2937;
            font-weight: 600;
        }
        .hero {
            padding: 2.5rem 0 2rem;
            text-align: center;
            background: linear-gradient(180deg, #fff7ed 0%, var(--cream) 100%);
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.8rem);
            font-weight: 800;
            color: var(--blue);
            line-height: 1.15;
        }
        .hero h1 i {
            color: var(--saffron);
        }
        .hero .sub {
            font-size: 1.2rem;
            color: #5a4a3a;
            max-width: 700px;
            margin: 1rem auto 0;
        }
        .hero .badge {
            display: inline-block;
            background: var(--green);
            color: #fff;
            padding: 0.2rem 1.2rem;
            border-radius: 60px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-top: 0.8rem;
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border-light);
            transition: box-shadow 0.3s;
        }
        .search-form:focus-within {
            box-shadow: 0 4px 24px rgba(255, 153, 51, 0.18);
            border-color: var(--saffron);
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            outline: none;
            background: #fff;
            min-width: 0;
        }
        .search-form button {
            background: var(--saffron);
            border: none;
            color: #1a1a2e;
            padding: 0 2rem;
            font-size: 1.1rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #e6872a;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        .content-area h2 {
            font-size: 1.9rem;
            color: var(--blue);
            border-left: 5px solid var(--saffron);
            padding-left: 1rem;
            margin: 2.5rem 0 1.2rem;
        }
        .content-area h3 {
            font-size: 1.4rem;
            color: #2d4a3e;
            margin: 2rem 0 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-area h4 {
            font-size: 1.15rem;
            color: #3d2b1a;
            margin: 1.5rem 0 0.5rem;
            font-weight: 600;
        }
        .content-area p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #2c2c2c;
        }
        .content-area .highlight {
            background: #fff3e0;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .content-area .insight-box {
            background: #eaf7ea;
            border-left: 5px solid var(--green);
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .content-area .insight-box i {
            color: var(--green);
            margin-right: 0.5rem;
        }
        .content-area .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--saffron);
            line-height: 1;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            background: #fff7ed;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #6a5a4a;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            background: #fffcf7;
            border-radius: 20px;
            padding: 1.5rem;
            border: 1px solid var(--border-light);
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            color: var(--blue);
            border-bottom: 2px solid var(--saffron);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #3d2b1a;
            font-weight: 500;
        }
        .sidebar ul li a:hover {
            color: var(--saffron);
            text-decoration: none;
        }
        .sidebar ul li a i {
            width: 1.2rem;
            color: var(--saffron);
        }
        .interaction-area {
            background: #fff;
            border-radius: 24px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid var(--border-light);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .interaction-area h2 {
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #e0d6c8;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5b342;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.15);
        }
        .score-display {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--blue);
            margin-left: 0.8rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus {
            border-color: var(--saffron);
            outline: none;
        }
        .comment-form .btn {
            background: var(--saffron);
            color: #1a1a2e;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form .btn:hover {
            background: #e6872a;
            transform: translateY(-1px);
        }
        .comment-form .btn-green {
            background: var(--green);
            color: #fff;
        }
        .comment-form .btn-green:hover {
            background: var(--green-dark);
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
            align-items: center;
        }
        .link-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem 1.5rem;
            margin: 1.5rem 0;
            padding: 1.2rem 1.5rem;
            background: #f9f3ec;
            border-radius: 16px;
        }
        .link-list a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 0;
            font-weight: 500;
        }
        .link-list a i {
            font-size: 0.8rem;
            color: var(--saffron);
        }
        @media (max-width: 600px) {
            .link-list {
                grid-template-columns: 1fr;
            }
        }
        .site-footer {
            background: #1a1a2e;
            color: #e5ddd4;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: 32px 32px 0 0;
        }
        .site-footer a {
            color: #f5b87a;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-grid h4 {
            color: var(--saffron);
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            padding: 0.25rem 0;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2d2d4a;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.85rem;
            opacity: 0.7;
            padding-top: 1rem;
            border-top: 1px solid #2d2d4a;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(8px);
                border-radius: 16px;
                padding: 1rem;
                margin-top: 0.5rem;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                gap: 0.25rem;
            }
            .nav-check:checked~.main-nav {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .sidebar {
                position: static;
            }
            .content-area h2 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .interaction-area {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .search-form input {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 0 1.2rem;
                font-size: 0.9rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        .last-updated {
            display: block;
            text-align: right;
            font-size: 0.85rem;
            color: #8a7a6a;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .flex {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
