        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f5f0;
            color: #2d2a24;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b85a2c;
            text-decoration: underline;
            transition: color .2s;
        }
        a:hover {
            color: #7a3c1a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            color: #1f1b16;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0 0 .5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid #e6d8c8;
            padding-bottom: .4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 .6rem;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 .4rem;
            color: #4a3f35;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 .5rem;
        }
        header {
            background: #2d2a24;
            color: #f8f5f0;
            padding: .8rem 0;
            border-radius: 0 0 18px 18px;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f8f5f0;
            text-decoration: none;
            letter-spacing: -.5px;
            background: linear-gradient(135deg, #f7d794, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: .85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f8f5f0;
            color: #f8f5f0;
            font-size: 1.5rem;
            padding: .3rem .7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background .2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, .1);
        }
        nav {
            display: flex;
            gap: .2rem;
            flex-wrap: wrap;
        }
        nav a {
            color: #f8f5f0;
            text-decoration: none;
            padding: .45rem 1rem;
            border-radius: 30px;
            font-size: .9rem;
            font-weight: 500;
            transition: background .2s, color .2s;
        }
        nav a:hover {
            background: #f5a623;
            color: #1f1b16;
        }
        @media (max-width:820px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: .8rem;
                gap: .3rem;
                background: #3a352e;
                padding: 1rem;
                border-radius: 16px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: .6rem 1rem;
            }
        }
        .breadcrumb {
            font-size: .85rem;
            padding: .6rem 0 1rem;
            color: #6b5e52;
            display: flex;
            flex-wrap: wrap;
            gap: .3rem .6rem;
        }
        .breadcrumb a {
            color: #6b5e52;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: #b85a2c;
        }
        .breadcrumb span {
            margin: 0 .2rem;
        }
        .search-box {
            background: #fff;
            border-radius: 50px;
            display: flex;
            max-width: 500px;
            margin: 1.5rem 0 2rem;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
            border: 1px solid #e6d8c8;
            overflow: hidden;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: .8rem 1.3rem;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #2d2a24;
        }
        .search-box button {
            background: #b85a2c;
            border: none;
            color: #fff;
            padding: 0 1.6rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background .2s;
        }
        .search-box button:hover {
            background: #9a4a23;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width:900px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .main-article {
            background: #fff;
            border-radius: 24px;
            padding: 2rem 1.8rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, .04);
        }
        .sidebar {
            background: #fff;
            border-radius: 24px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, .04);
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #e6d8c8;
            padding-bottom: .5rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: .6rem;
        }
        .sidebar a {
            display: block;
            padding: .5rem .8rem;
            background: #f8f5f0;
            border-radius: 12px;
            text-decoration: none;
            color: #2d2a24;
            transition: background .2s, transform .1s;
            font-size: .92rem;
        }
        .sidebar a:hover {
            background: #e6d8c8;
            transform: translateX(4px);
        }
        .featured-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
        }
        .featured-img figcaption {
            font-size: .85rem;
            color: #6b5e52;
            margin-top: .5rem;
            text-align: center;
            font-style: italic;
        }
        .interact-area {
            background: #f8f5f0;
            border-radius: 20px;
            padding: 2rem 1.8rem;
            margin-top: 2.5rem;
            border: 1px solid #e6d8c8;
        }
        .interact-area h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: .3rem;
            color: #2d2a24;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: .7rem 1rem;
            border: 1px solid #d6c8b8;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            transition: border .2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #b85a2c;
            outline: none;
            box-shadow: 0 0 0 3px rgba(184, 90, 44, .15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #b85a2c;
            color: #fff;
            border: none;
            padding: .7rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s, transform .1s;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
        }
        .btn:hover {
            background: #9a4a23;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: #6b5e52;
        }
        .btn-secondary:hover {
            background: #4f453b;
        }
        .rating-stars {
            display: flex;
            gap: .4rem;
            font-size: 1.8rem;
            color: #e6d8c8;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color .2s, transform .1s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5a623;
            transform: scale(1.1);
        }
        footer {
            background: #2d2a24;
            color: #f8f5f0;
            border-radius: 24px 24px 0 0;
            padding: 2.5rem 1.5rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width:700px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        footer h4 {
            color: #f7d794;
            margin-bottom: .8rem;
            border: none;
        }
        footer a {
            color: #e6d8c8;
            text-decoration: none;
        }
        footer a:hover {
            color: #f5a623;
            text-decoration: underline;
        }
        .friend-link {
            display: flex;
            flex-direction: column;
            gap: .3rem;
        }
        .friend-link a {
            padding: .3rem 0;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #4a3f35;
            padding-top: 1.5rem;
            text-align: center;
            font-size: .85rem;
            color: #b8a99a;
        }
        .last-updated {
            font-size: .85rem;
            color: #8a7a6a;
            display: flex;
            align-items: center;
            gap: .4rem;
            margin-bottom: 1.2rem;
        }
        .tag {
            display: inline-block;
            background: #e6d8c8;
            color: #2d2a24;
            padding: .15rem .8rem;
            border-radius: 30px;
            font-size: .8rem;
            font-weight: 600;
        }
        .highlight {
            background: #fdf6e3;
            padding: .1rem .3rem;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.8rem;
        }
        blockquote {
            border-left: 4px solid #b85a2c;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: #faf7f2;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3a352e;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #f8f5f0;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid #e6d8c8;
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #b85a2c;
            display: block;
        }
        .stat-card .label {
            font-size: .85rem;
            color: #6b5e52;
        }
        @media (max-width:600px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .main-article {
                padding: 1.2rem 1rem;
            }
            .interact-area {
                padding: 1.2rem 1rem;
            }
            .header-inner {
                padding: 0 .8rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-box input {
                padding: .6rem 1rem;
                font-size: .9rem;
            }
            .search-box button {
                padding: 0 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width:400px) {
            body {
                padding: 0 .4rem;
            }
            .main-article {
                padding: .8rem .6rem;
            }
            .btn {
                padding: .5rem 1.2rem;
                font-size: .9rem;
            }
        }
        .fade-in {
            animation: fadeIn .5s ease;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
