        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #faf8f5;
            color: #2d2a24;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #c44a2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #8f2e17;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1f1b16;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.5rem 0 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 1rem;
            border-bottom: 3px solid #f0c8a0;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.6rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: linear-gradient(135deg, #1f1b16 0%, #3a2c24 100%);
            color: #f5ede6;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f5cba7;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5cba7, #e8a87c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            display: block;
            -webkit-text-fill-color: #b8a89c;
            color: #b8a89c;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5ede6;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e8ddd4;
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.92rem;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f5cba7;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: rgba(245, 203, 167, 0.18);
            color: #f5cba7;
        }
        .breadcrumb {
            background: #efe9e2;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6ce;
        }
        .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.5rem;
            color: #9a8a7a;
        }
        .breadcrumb a {
            color: #6f5e4e;
        }
        .breadcrumb a:hover {
            color: #c44a2b;
        }
        .breadcrumb .current {
            color: #3a2c24;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #f5ede6 0%, #e8ddd4 100%);
            padding: 2.4rem 0 1.8rem;
            text-align: center;
            border-bottom: 4px solid #f0c8a0;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #2d1f14;
            margin-bottom: 0.6rem;
        }
        .hero p {
            font-size: 1.1rem;
            color: #5a4a3a;
            max-width: 720px;
            margin: 0 auto 0.6rem;
        }
        .hero .badge {
            display: inline-block;
            background: #c44a2b;
            color: #fff;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: #7a6a5a;
        }
        .hero-meta i {
            margin-right: 0.3rem;
            color: #c44a2b;
        }
        .search-section {
            background: #fff;
            padding: 1.6rem 0;
            border-bottom: 1px solid #e8ddd4;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 560px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #ddd6ce;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #faf8f5;
        }
        .search-form input:focus {
            border-color: #c44a2b;
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            background: #c44a2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .search-form button:hover {
            background: #a33a1f;
            transform: scale(1.02);
        }
        main {
            flex: 1;
            padding: 2.4rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.4rem;
        }
        @media(max-width:920px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        @media(max-width:600px) {
            .article-body {
                padding: 1.2rem 1rem;
            }
        }
        .article-body .featured-img {
            margin: 1.2rem 0 2rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .article-body .featured-img figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #6f5e4e;
            background: #f5ede6;
            font-style: italic;
        }
        .link-list {
            background: #f9f5f0;
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            margin: 1.6rem 0;
            border-left: 4px solid #c44a2b;
        }
        .link-list h4 {
            margin-top: 0;
            font-size: 1.05rem;
        }
        .link-list ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.3rem 1.2rem;
        }
        @media(max-width:500px) {
            .link-list ul {
                grid-template-columns: 1fr;
            }
        }
        .link-list li a {
            display: inline-block;
            padding: 0.2rem 0;
            font-size: 0.92rem;
            border-bottom: 1px dotted transparent;
        }
        .link-list li a:hover {
            border-bottom-color: #c44a2b;
        }
        .highlight-box {
            background: #f0ebe4;
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            border-left: 5px solid #e8a87c;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: #2d1f14;
        }
        .emoji-big {
            font-size: 1.3rem;
            margin-right: 0.3rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }
        .sidebar-card {
            background: #fff;
            padding: 1.4rem 1.6rem;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #ece6df;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            color: #2d1f14;
            border-bottom: 2px solid #f0c8a0;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card li a {
            font-size: 0.92rem;
        }
        .rating-section {
            background: #fff;
            padding: 1.6rem 1.8rem;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            margin-top: 1.6rem;
            border: 1px solid #ece6df;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #e8a87c;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
            color: #ddd6ce;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f5a623;
            transform: scale(1.1);
        }
        .rating-form button {
            margin-top: 0.8rem;
            padding: 0.6rem 2rem;
            background: #c44a2b;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #a33a1f;
        }
        .comments-section {
            background: #fff;
            padding: 1.6rem 1.8rem;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            margin-top: 1.6rem;
            border: 1px solid #ece6df;
        }
        .comments-section textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd6ce;
            border-radius: 10px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .comments-section textarea:focus {
            border-color: #c44a2b;
            outline: none;
        }
        .comments-section input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6ce;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 0.6rem;
            transition: border-color 0.3s;
        }
        .comments-section input[type="text"]:focus {
            border-color: #c44a2b;
            outline: none;
        }
        .comments-section .comment-btn {
            padding: 0.7rem 2.2rem;
            background: #c44a2b;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 0.4rem;
        }
        .comments-section .comment-btn:hover {
            background: #a33a1f;
        }
        .comment-list {
            margin-top: 1.2rem;
            max-height: 300px;
            overflow-y: auto;
        }
        .comment-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .comment-item strong {
            color: #2d1f14;
        }
        .comment-item small {
            color: #9a8a7a;
            font-size: 0.8rem;
        }
        .comment-item p {
            margin: 0.2rem 0 0;
        }
        footer {
            background: #1f1b16;
            color: #c8bca8;
            padding: 2.4rem 0 1.2rem;
            margin-top: 2rem;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:700px) {
            footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
        }
        footer h4 {
            color: #f5cba7;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        footer a {
            color: #c8bca8;
        }
        footer a:hover {
            color: #f5cba7;
        }
        footer .friend-link {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            padding: 0;
            margin: 0;
            list-style: none;
        }
        footer .friend-link li a {
            font-size: 0.92rem;
            padding: 0.15rem 0;
            display: inline-block;
        }
        footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.6rem;
            border-top: 1px solid #3a2c24;
            margin-top: 1.2rem;
            font-size: 0.85rem;
            color: #9a8a7a;
        }
        footer .copyright strong {
            color: #c8bca8;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.6rem 0 0.2rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 0.8rem;
                border-radius: 6px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .article-body {
                padding: 1.2rem 0.8rem;
            }
            .link-list ul {
                grid-template-columns: 1fr;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.3rem;
                align-items: center;
            }
        }
        @media(max-width:480px) {
            .search-form input {
                min-width: 140px;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-sm {
            font-size: 0.9rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        ::placeholder {
            color: #b8a89c;
            opacity: 1;
        }
