        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #f7f3eb;
            color: #2e241f;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b85c2a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3b1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #2a1f1a;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #d17c3a;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #d9c8b6;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #4d3629;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong {
            color: #b85c2a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: #2a1f1a;
            color: #f7f3eb;
            padding: 0.8rem 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
            margin-bottom: 1.5rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .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.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f7a54a;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f7a54a, #d17c3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #d9c8b6;
            color: #d9c8b6;
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f7f3eb;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        .nav-menu li a {
            color: #f7f3eb;
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            background: #d17c3a;
            color: #fff;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 0.4rem;
        }
        .breadcrumb {
            background: #efe6db;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #7a3b1a;
        }
        .breadcrumb span {
            color: #4d3629;
        }
        .breadcrumb i {
            margin: 0 0.3rem;
            font-size: 0.7rem;
            color: #b85c2a;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 500px;
            margin: 1.5rem 0 2rem;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d9c8b6;
            border-radius: 30px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
            min-width: 160px;
        }
        .search-form input:focus {
            border-color: #d17c3a;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #b85c2a;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #7a3b1a;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            background: #fffcf8;
            padding: 2rem 2.2rem;
            border-radius: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .sidebar {
            background: #fffcf8;
            padding: 1.8rem 1.5rem;
            border-radius: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            border-bottom: 2px solid #d9c8b6;
            padding-bottom: 0.4rem;
            margin-top: 0;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #eee;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a i {
            color: #d17c3a;
            width: 1.2rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            font-size: 0.9rem;
            color: #6b5a4e;
            margin-top: 0.6rem;
            font-style: italic;
            text-align: center;
        }
        .rating-area {
            background: #f7f3eb;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
        }
        .rating-area .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #d9c8b6;
            cursor: pointer;
        }
        .rating-area .stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-area .stars i:hover,
        .rating-area .stars i.active {
            color: #f7a54a;
            transform: scale(1.1);
        }
        .rating-area .stars i.selected {
            color: #f7a54a;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
        }
        .rating-form button {
            padding: 0.5rem 1.5rem;
            background: #b85c2a;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #7a3b1a;
        }
        .rating-msg {
            font-size: 0.95rem;
            color: #2e7d32;
            font-weight: 600;
        }
        .comments-area {
            margin: 2.5rem 0;
            background: #f7f3eb;
            padding: 2rem;
            border-radius: 20px;
        }
        .comments-area h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem 1.2rem;
            border: 2px solid #d9c8b6;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #d17c3a;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            background: #b85c2a;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #7a3b1a;
        }
        .comment-list {
            max-height: 400px;
            overflow-y: auto;
            background: #fffcf8;
            padding: 1rem 1.5rem;
            border-radius: 16px;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #e6ddd2;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 700;
            color: #2a1f1a;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #8a7a6c;
            margin-left: 1rem;
        }
        .comment-item .text {
            margin-top: 0.3rem;
        }
        .site-footer {
            background: #2a1f1a;
            color: #d9c8b6;
            padding: 2.5rem 1rem 1.5rem;
            border-radius: 24px 24px 0 0;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f7a54a;
            margin-top: 0;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            color: #d9c8b6;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #f7a54a;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #4d3629;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #8a7a6c;
        }
        .copyright strong {
            color: #d9c8b6;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2a1f1a;
                padding: 1rem 0 0.8rem;
                border-top: 1px solid #4d3629;
                margin-top: 0.6rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 0.6rem 1rem;
            }
            .header-inner {
                align-items: center;
            }
            .main-content {
                padding: 1.2rem;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.2rem;
            }
            .search-form button {
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 0.3rem;
            }
        }
        .comment-list::-webkit-scrollbar {
            width: 6px;
        }
        .comment-list::-webkit-scrollbar-track {
            background: #efe6db;
            border-radius: 10px;
        }
        .comment-list::-webkit-scrollbar-thumb {
            background: #d17c3a;
            border-radius: 10px;
        }
        .highlight-box {
            background: #efe6db;
            border-left: 6px solid #d17c3a;
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            margin: 1.8rem 0;
        }
        .emoji-lg {
            font-size: 1.5rem;
        }
        .tag {
            display: inline-block;
            background: #d17c3a;
            color: #fff;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.4rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a7a6c;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .last-updated i {
            color: #d17c3a;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            border: 1px solid #d9c8b6;
            text-align: left;
        }
        th {
            background: #2a1f1a;
            color: #f7f3eb;
            font-weight: 600;
        }
        td {
            background: #fffcf8;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b85c2a;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
            transition: background 0.2s, transform 0.2s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            background: #7a3b1a;
            transform: translateY(-4px);
        }
