        *,
        *::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, sans-serif;
            line-height: 1.7;
            color: #1e1e2a;
            background: #faf9f6;
            padding: 0 1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #9a7209;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1a1a2e;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b8860b;
            padding-left: 0.75rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d3d55;
        }
        p {
            margin: 0.9rem 0;
            color: #2c2c3a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
            border-radius: 18px;
            padding: 1.2rem 1.8rem 2.5rem;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.6rem;
            border-bottom: 1px solid #eae6df;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #b8860b, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            font-family: 'Playfair Display', 'Times New Roman', serif;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: #5a4a3a;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.4rem 0.9rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #2c2c3a;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #b8860b18;
            color: #b8860b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #1e1e2a;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0ede8;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #6b6b7a;
            padding: 0.5rem 0 0.2rem;
            background: transparent;
            border-radius: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #8a7a5a;
        }
        .breadcrumb span {
            color: #b8860b;
        }
        .search-wrap {
            display: flex;
            justify-content: flex-end;
            margin: 0.6rem 0 0.2rem;
        }
        .search-form {
            display: flex;
            border: 1px solid #d9d4cc;
            border-radius: 50px;
            overflow: hidden;
            background: #fff;
            max-width: 300px;
            width: 100%;
            transition: box-shadow 0.25s;
        }
        .search-form:focus-within {
            box-shadow: 0 0 0 3px #b8860b44;
            border-color: #b8860b;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            outline: none;
            background: transparent;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.5rem 1.1rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #9a7209;
        }
        .hero-img-wrapper {
            margin: 1.8rem 0 1.2rem;
            border-radius: 20px;
            overflow: hidden;
            background: #eae6df;
            position: relative;
        }
        .hero-img-wrapper img {
            width: 100%;
            object-fit: cover;
            max-height: 420px;
            min-height: 200px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin-top: 1.2rem;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            border-left: 1px solid #ede9e2;
            padding-left: 1.5rem;
        }
        .content-sidebar .card {
            background: #f8f6f2;
            border-radius: 16px;
            padding: 1.2rem;
            margin-bottom: 1.6rem;
        }
        .content-sidebar .card h4 {
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #b8860b40;
            padding-bottom: 0.3rem;
        }
        .content-sidebar .card ul {
            list-style: none;
            padding-left: 0;
        }
        .content-sidebar .card ul li {
            padding: 0.3rem 0;
            border-bottom: 1px dashed #ddd8d0;
        }
        .content-sidebar .card ul li a {
            font-weight: 500;
        }
        .comment-section,
        .rating-section {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid #eae6df;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form,
        .rating-form {
            display: grid;
            gap: 0.9rem;
            max-width: 600px;
            margin-top: 0.8rem;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form input,
        .rating-form select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d9d4cc;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form input:focus,
        .rating-form select:focus {
            border-color: #b8860b;
            outline: none;
            box-shadow: 0 0 0 3px #b8860b22;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-block;
            width: fit-content;
        }
        .btn:hover {
            background: #9a7209;
            transform: scale(0.98);
        }
        .btn-secondary {
            background: #3d3d55;
        }
        .btn-secondary:hover {
            background: #2d2d44;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            padding: 0.6rem 0;
            list-style: none;
        }
        .link-list-inline li a {
            font-weight: 500;
        }
        footer {
            margin-top: 2.8rem;
            padding-top: 1.5rem;
            border-top: 2px solid #eae6df;
            font-size: 0.9rem;
            color: #4a4a5a;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-top: 1px solid #ede9e2;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #6b6b7a;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                border-left: none;
                padding-left: 0;
                margin-top: 1.5rem;
            }
            .container {
                padding: 0.8rem 1rem 1.8rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #ffffff;
                border-radius: 16px;
                padding: 0.8rem 0.4rem;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
                margin-top: 0.5rem;
                border: 1px solid #ede9e2;
            }
            nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 12px;
            }
            #nav-toggle:checked~nav {
                display: flex;
            }
            header {
                flex-wrap: wrap;
            }
            .search-wrap {
                justify-content: stretch;
            }
            .search-form {
                max-width: 100%;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 701px) {
            nav {
                display: flex !important;
            }
            #nav-toggle {
                display: none;
            }
            .hamburger {
                display: none !important;
            }
        }
        .text-gold {
            color: #b8860b;
        }
        .fw-bold {
            font-weight: 700;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .badge {
            background: #b8860b18;
            color: #b8860b;
            padding: 0.15rem 0.7rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6b6b7a;
            background: #f4f1ec;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            display: inline-block;
            margin: 0.6rem 0;
        }
        .star-rating {
            color: #f5b342;
            letter-spacing: 2px;
        }
        blockquote {
            border-left: 4px solid #b8860b;
            padding: 0.6rem 1.2rem;
            margin: 1.2rem 0;
            background: #faf8f4;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d3d55;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table th {
            background: #b8860b;
            color: #fff;
            padding: 0.6rem 1rem;
            text-align: left;
        }
        table td {
            padding: 0.5rem 1rem;
            border-bottom: 1px solid #eae6df;
        }
        table tr:hover td {
            background: #f8f6f2;
        }
