        *,
        *::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: #f8f5f0;
            color: #1e1b18;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #9b2c2c;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #6b1e1e;
            text-decoration-thickness: 2px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #2d1f1a;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #d9c5b2;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0 0 1.5rem 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            border-left: 5px solid #9b2c2c;
            background: #f0ebe4;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d2d26;
        }
        strong {
            color: #2d1f1a;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            padding: 1.5rem 2rem 2.5rem;
            margin: 1.2rem 0 2.5rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.6rem;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            text-decoration: none;
            color: #2d1f1a;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #9b2c2c, #d48a6a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #9b2c2c;
            font-size: 1.4rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #9b2c2c;
            color: #9b2c2c;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #9b2c2c;
            color: #fff;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            align-items: center;
        }
        .navbar a {
            text-decoration: none;
            font-weight: 500;
            color: #3d2d26;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.98rem;
        }
        .navbar a:hover {
            border-bottom-color: #9b2c2c;
            color: #9b2c2c;
        }
        .navbar a.active {
            border-bottom-color: #9b2c2c;
            color: #9b2c2c;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.5rem 0 0.2rem;
            margin: 0;
            font-size: 0.9rem;
            color: #7a6a60;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #b8a89c;
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: #7a6a60;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #9b2c2c;
            text-decoration: underline;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1.8rem 0 2.2rem;
            background: #f6f1eb;
            padding: 0.6rem 1rem;
            border-radius: 60px;
            align-items: center;
            border: 1px solid #e2d6cb;
        }
        .search-box i {
            color: #9b2c2c;
            font-size: 1.1rem;
        }
        .search-box input {
            flex: 1;
            min-width: 140px;
            border: none;
            background: transparent;
            padding: 0.6rem 0.2rem;
            font-size: 1rem;
            outline: none;
            color: #1e1b18;
        }
        .search-box input::placeholder {
            color: #94867c;
        }
        .search-box button {
            background: #9b2c2c;
            color: #fff;
            border: none;
            padding: 0.55rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            letter-spacing: 0.3px;
        }
        .search-box button:hover {
            background: #6b1e1e;
            transform: scale(0.97);
        }
        .feature-img-wrap {
            margin: 1.8rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .feature-img-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #7a6a60;
            background: #f0ebe4;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            margin-bottom: 0.8rem;
        }
        .rating-area {
            background: #f6f1eb;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem 3rem;
            align-items: center;
            border: 1px solid #e2d6cb;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d4a373;
            cursor: pointer;
        }
        .rating-stars i {
            transition: 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #9b2c2c;
            transform: scale(1.12);
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.2rem;
        }
        .rating-form label {
            font-weight: 600;
            color: #2d1f1a;
        }
        .rating-form select {
            padding: 0.4rem 1rem;
            border-radius: 30px;
            border: 1px solid #d9c5b2;
            background: #fff;
            font-size: 0.95rem;
            color: #1e1b18;
            cursor: pointer;
        }
        .rating-form button {
            background: #9b2c2c;
            color: #fff;
            border: none;
            padding: 0.4rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-form button:hover {
            background: #6b1e1e;
        }
        .comments-section {
            margin: 2.5rem 0;
            padding-top: 1.5rem;
            border-top: 2px solid #e2d6cb;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 600px;
            margin: 1rem 0 1.8rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.7rem 1rem;
            border: 1px solid #d9c5b2;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fcfaf8;
            transition: 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            outline: none;
            border-color: #9b2c2c;
            box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.15);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #9b2c2c;
            color: #fff;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover {
            background: #6b1e1e;
        }
        .comment-item {
            background: #f6f1eb;
            border-radius: 14px;
            padding: 1rem 1.4rem;
            margin-bottom: 1rem;
            border-left: 4px solid #9b2c2c;
        }
        .comment-item strong {
            color: #2d1f1a;
        }
        .comment-item small {
            color: #7a6a60;
            display: block;
            margin-top: 0.3rem;
        }
        .site-footer {
            margin: 3rem 0 1.5rem;
            padding-top: 2rem;
            border-top: 2px solid #e2d6cb;
            font-size: 0.92rem;
            color: #5a4a40;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem 2rem;
        }
        .site-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.8rem;
        }
        .site-footer .footer-links a {
            color: #5a4a40;
            text-decoration: none;
        }
        .site-footer .footer-links a:hover {
            color: #9b2c2c;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            margin: 1rem 0 0.8rem;
            padding: 0.6rem 0;
            border-top: 1px dashed #d9c5b2;
            font-size: 0.9rem;
            color: #5a4a40;
        }
        friend-link a {
            color: #5a4a40;
            text-decoration: none;
            margin: 0 0.3rem;
        }
        friend-link a:hover {
            color: #9b2c2c;
            text-decoration: underline;
        }
        .copyright {
            font-size: 0.82rem;
            color: #7a6a60;
            margin-top: 0.5rem;
            padding-top: 0.5rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1rem 1rem 1.8rem;
                margin: 0.6rem 0 1.5rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .site-header {
                flex-wrap: wrap;
                padding-top: 0.8rem;
            }
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.1rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid #e2d6cb;
                margin-top: 0.4rem;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                padding: 0.5rem 0.4rem;
                border-bottom: 1px solid #f0ebe4;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .rating-area {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
                padding: 1.2rem 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
                justify-content: center;
            }
            .search-box {
                border-radius: 40px;
                padding: 0.4rem 0.8rem;
            }
            .search-box button {
                padding: 0.45rem 1.2rem;
                font-size: 0.85rem;
            }
            .feature-img-wrap img {
                max-height: 220px;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                gap: 0.8rem;
            }
            .site-footer .footer-links {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .navbar {
                display: flex !important;
            }
        }
        .text-muted {
            color: #7a6a60;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .badge {
            display: inline-block;
            background: #9b2c2c;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.1rem 0.7rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
