        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f3f0;
            color: #1e1b1a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #c73b2b;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover {
            color: #8f2a1e;
            text-decoration: none;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #1e1b1a;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 3rem;
            margin-bottom: 0.8rem;
            border-bottom: 3px solid #f0c94b;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.6rem;
            color: #2d2a28;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.4rem;
            color: #3d3a38;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #2b1e16 0%, #4a2e22 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #f0c94b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        .my-logo i {
            font-size: 1.9rem;
            color: #f0c94b;
        }
        .my-logo:hover {
            color: #ffde7a;
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            color: #ccc;
            font-size: 0.7rem;
            margin-left: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #f0e6dc;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        .nav-menu li a:hover {
            color: #f0c94b;
            border-bottom-color: #f0c94b;
            text-decoration: none;
        }
        .breadcrumb {
            background: #eae5df;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            color: #555;
        }
        .breadcrumb-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb-inner a {
            color: #8f2a1e;
            text-decoration: none;
        }
        .breadcrumb-inner a:hover {
            text-decoration: underline;
        }
        .breadcrumb-inner .current {
            color: #3d3a38;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #faf6f0, #efe8e0);
            padding: 2.5rem 0 2rem;
            border-bottom: 1px solid #ddd6ce;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            margin-top: 0;
        }
        .hero h1 i {
            color: #f0c94b;
            margin-right: 0.3rem;
        }
        .hero p {
            font-size: 1.15rem;
            color: #3d3a38;
            max-width: 90%;
        }
        .hero img {
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #666;
        }
        .hero-meta i {
            margin-right: 0.3rem;
            color: #c73b2b;
        }
        .search-bar {
            background: #fff;
            padding: 1.2rem 0;
            border-bottom: 1px solid #ddd6ce;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }
        .search-form input[type="text"] {
            flex: 1;
            border: none;
            padding: 0.8rem 1.4rem;
            font-size: 1rem;
            background: #f9f7f5;
            outline: none;
        }
        .search-form button {
            background: #c73b2b;
            color: #fff;
            border: none;
            padding: 0 1.6rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #8f2a1e;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
            background: #fff;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
        }
        .article-body {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: #faf8f6;
            padding: 1.5rem 1.2rem;
            border-radius: 16px;
            border: 1px solid #e5ddd5;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #f0c94b;
            padding-bottom: 0.4rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px dashed #ddd6ce;
        }
        .sidebar ul li a {
            text-decoration: none;
            color: #2d2a28;
            font-weight: 500;
        }
        .sidebar ul li a:hover {
            color: #c73b2b;
            text-decoration: underline;
        }
        .interaction-panel {
            background: #faf8f6;
            border: 1px solid #e5ddd5;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
            align-items: flex-start;
        }
        .rating-box,
        .comment-box {
            flex: 1 1 220px;
        }
        .rating-box h4,
        .comment-box h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c94b;
        }
        .rating-form button,
        .comment-form button {
            background: #c73b2b;
            color: #fff;
            border: none;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 0.5rem;
            transition: background 0.2s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #8f2a1e;
        }
        .comment-form textarea {
            width: 100%;
            border: 1px solid #ddd6ce;
            border-radius: 10px;
            padding: 0.6rem 0.8rem;
            font-size: 0.95rem;
            resize: vertical;
            background: #fff;
            font-family: inherit;
        }
        .comment-form input[type="text"] {
            width: 100%;
            border: 1px solid #ddd6ce;
            border-radius: 8px;
            padding: 0.5rem 0.8rem;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            background: #fff;
        }
        .site-footer {
            background: #2b1e16;
            color: #ddd6ce;
            padding: 2.5rem 0 1.5rem;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f0c94b;
            margin-top: 0;
            font-size: 1.05rem;
        }
        .footer-grid a {
            color: #ddd6ce;
            text-decoration: none;
        }
        .footer-grid a:hover {
            color: #f0c94b;
            text-decoration: underline;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            padding: 0.2rem 0;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
        }
        .copyright {
            border-top: 1px solid #4a3e36;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.82rem;
            color: #a99a8e;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #3a2a20;
                padding: 1rem 0;
                border-radius: 0 0 12px 12px;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 1.2rem;
                display: block;
                border-bottom: none;
            }
            .nav-menu li a:hover {
                background: #4e382c;
                border-bottom: none;
            }
            .hero-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                max-width: 100%;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .interaction-panel {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
        }
        .text-highlight {
            background: linear-gradient(to right, #fceabb, #f8b500);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .badge {
            display: inline-block;
            background: #c73b2b;
            color: #fff;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: #2b1e16;
            color: #f0c94b;
            padding: 0.6rem 0.8rem;
            text-align: left;
        }
        table td {
            padding: 0.5rem 0.8rem;
            border-bottom: 1px solid #e5ddd5;
        }
        table tr:nth-child(even) {
            background: #faf8f6;
        }
        .quote-block {
            background: #f5f0ea;
            border-left: 5px solid #f0c94b;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
            font-weight: 600;
            color: #555;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #777;
            text-align: center;
            margin-top: 0.3rem;
        }
        .btn-top {
            display: inline-block;
            background: #c73b2b;
            color: #fff;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: background 0.2s;
        }
        .btn-top:hover {
            background: #8f2a1e;
            text-decoration: none;
            color: #fff;
        }
