        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f3f0;
            color: #1e1a17;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #2c241e;
        }
        h1 {
            font-size: 2.2rem;
            margin: 1.5rem 0 0.75rem;
        }
        h2 {
            font-size: 1.75rem;
            margin: 2.5rem 0 0.75rem;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.75rem 0 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.25rem 0 0.4rem;
            color: #5a4a3a;
        }
        p {
            margin-bottom: 1.1rem;
        }
        ul,
        ol {
            margin: 0.5rem 0 1.25rem 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        hr {
            border: none;
            border-top: 1px solid #ddd6ce;
            margin: 2rem 0;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #ffffff;
            padding: 1.2rem 1.8rem 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border-radius: 20px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0 0.6rem;
            border-bottom: 2px solid #ece6df;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #b8860b, #d4af37, #8b6508);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(184, 134, 11, 0.15);
            font-family: 'Georgia', 'Times New Roman', serif;
            display: inline-block;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            background: inherit;
            -webkit-background-clip: inherit;
            -webkit-text-fill-color: inherit;
            background-clip: inherit;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.55rem;
            -webkit-text-fill-color: #7a6a5a;
            color: #7a6a5a;
            background: none;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.4rem 0.9rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #3d322b;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        nav a:hover,
        nav a:focus {
            background: #d4af37;
            color: #1e1a17;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.7rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #3d322b;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ece6df;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.7rem 0 0.1rem;
            margin: 0;
            font-size: 0.85rem;
            color: #6f5e4e;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.55rem;
            color: #b8860b;
        }
        .breadcrumb a {
            color: #6f5e4e;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .active {
            color: #2c241e;
            font-weight: 600;
        }
        .search-wrap {
            display: flex;
            max-width: 550px;
            margin: 1.8rem auto 1.2rem;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid #ddd6ce;
            background: #faf9f7;
            transition: box-shadow 0.2s;
        }
        .search-wrap:focus-within {
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.25);
            border-color: #b8860b;
        }
        .search-wrap input {
            flex: 1;
            border: none;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            background: transparent;
            outline: none;
            min-width: 0;
        }
        .search-wrap button {
            background: #b8860b;
            border: none;
            color: #fff;
            padding: 0 1.4rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-wrap button:hover {
            background: #9a7209;
        }
        .hero-img {
            margin: 1.8rem 0 2rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.2rem 0 1.2rem;
        }
        .comment-box,
        .score-box {
            background: #faf9f7;
            padding: 1.5rem 1.6rem;
            border-radius: 18px;
            border: 1px solid #ece6df;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box textarea {
            width: 100%;
            border: 1px solid #ddd6ce;
            border-radius: 12px;
            padding: 0.8rem;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #b8860b;
            outline: none;
            box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.15);
        }
        .comment-box button,
        .score-box button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 0.6rem;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #9a7209;
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            gap: 0.25rem;
            font-size: 1.8rem;
            color: #ddd6ce;
            cursor: pointer;
            margin: 0.5rem 0 0.8rem;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #d4af37;
        }
        .star-rating i:hover {
            transform: scale(1.15);
        }
        friend-link {
            display: block;
            margin: 2.2rem 0 0.8rem;
            padding: 1.4rem 1.6rem;
            background: #f8f6f3;
            border-radius: 18px;
            border: 1px solid #e6dfd7;
        }
        friend-link::before {
            content: "🌐 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #2c241e;
            margin-bottom: 0.7rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.2rem 0;
            font-weight: 500;
        }
        friend-link a::after {
            content: " ·";
            color: #b8860b;
            margin-left: 0.1rem;
        }
        friend-link a:last-child::after {
            content: "";
        }
        footer {
            text-align: center;
            padding: 1.8rem 0 0.6rem;
            border-top: 2px solid #ece6df;
            margin-top: 2.5rem;
            font-size: 0.9rem;
            color: #5a4a3a;
        }
        footer .copyright {
            font-weight: 500;
            letter-spacing: 0.2px;
        }
        footer .copyright i {
            color: #b8860b;
        }
        @media (max-width: 820px) {
            .container {
                padding: 0.8rem 1rem 1.8rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .search-wrap {
                max-width: 100%;
            }
            .hamburger {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #faf9f7;
                padding: 0.8rem 0 1.2rem;
                border-radius: 16px;
                margin-top: 0.6rem;
                border: 1px solid #ece6df;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1.2rem;
                border-radius: 0;
                width: 100%;
                border-bottom: 1px solid #f0eae4;
            }
            nav a:last-child {
                border-bottom: none;
            }
            header {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.4rem;
            }
            .container {
                padding: 0.6rem 0.7rem 1.4rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .comment-box,
            .score-box {
                padding: 1rem;
            }
            friend-link {
                padding: 1rem;
            }
        }
        .text-gold {
            color: #b8860b;
        }
        .fw-600 {
            font-weight: 600;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .updated-badge {
            display: inline-block;
            background: #ece6df;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #4a3d33;
            font-weight: 600;
        }
        blockquote {
            border-left: 4px solid #d4af37;
            padding: 0.6rem 1.2rem;
            margin: 1.2rem 0;
            background: #faf9f7;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d322b;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        th,
        td {
            border: 1px solid #ddd6ce;
            padding: 0.6rem 0.8rem;
            text-align: left;
        }
        th {
            background: #ece6df;
            font-weight: 700;
        }
        .stat-highlight {
            background: linear-gradient(135deg, #fdf6e8, #faf1e0);
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            border: 1px solid #e6d5b8;
            margin: 1.2rem 0;
        }
