        *,
        *::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: #1e1a17;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #6b2fa0;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #9b59b6;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.25;
            color: #1e1a17;
            margin-top: 1.8em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #f1c40f;
            display: inline-block;
            padding-bottom: 0.15em;
        }
        h2 {
            font-size: 1.6rem;
            border-left: 6px solid #6b2fa0;
            padding-left: 14px;
        }
        h3 {
            font-size: 1.25rem;
            color: #2d1b4e;
        }
        h4 {
            font-size: 1.05rem;
            color: #4a2c6e;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.02rem;
        }
        ul,
        ol {
            margin-left: 1.6em;
            margin-bottom: 1.2em;
        }
        li {
            margin-bottom: 0.4em;
        }
        .container {
            display: flex;
            flex-direction: column;
            gap: 24px;
            padding: 12px 0 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 10px;
            border-bottom: 2px solid #e0d5c8;
            position: relative;
            background: #f8f5f0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #6b2fa0, #f1c40f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #6b2fa0;
            margin-right: 6px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
        }
        nav a:hover {
            border-bottom-color: #6b2fa0;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #6b2fa0;
            cursor: pointer;
            padding: 4px 10px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.92rem;
            padding: 10px 0 4px;
            color: #5a4a3a;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #9b8a7a;
        }
        .breadcrumb a {
            color: #6b2fa0;
        }
        .search-box {
            display: flex;
            gap: 6px;
            max-width: 480px;
            margin: 20px 0 10px;
        }
        .search-box input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #d4c5b2;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fffdf9;
            transition: 0.2s;
        }
        .search-box input:focus {
            border-color: #6b2fa0;
            outline: none;
            box-shadow: 0 0 0 3px rgba(107, 47, 160, 0.15);
        }
        .search-box button {
            background: #6b2fa0;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0 22px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            font-weight: 600;
        }
        .search-box button:hover {
            background: #9b59b6;
            transform: scale(1.02);
        }
        .hero-figure {
            margin: 24px 0 18px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
        }
        .hero-figure figcaption {
            font-size: 0.85rem;
            color: #5a4a3a;
            padding: 8px 12px;
            background: #ede7dd;
            font-style: italic;
        }
        .rating-widget {
            background: #ffffffec;
            border: 1px solid #e0d5c8;
            border-radius: 20px;
            padding: 20px 24px 24px;
            margin: 28px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d4c5b2;
            cursor: pointer;
            transition: 0.15s;
        }
        .rating-stars i.active,
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f1c40f;
        }
        .rating-stars i {
            transition: 0.1s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .comment-area {
            background: #ffffffec;
            border: 1px solid #e0d5c8;
            border-radius: 20px;
            padding: 20px 24px 24px;
            margin: 24px 0;
        }
        .comment-area textarea {
            width: 100%;
            min-height: 90px;
            padding: 12px 16px;
            border: 2px solid #d4c5b2;
            border-radius: 16px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            background: #fffdf9;
            transition: 0.2s;
        }
        .comment-area textarea:focus {
            border-color: #6b2fa0;
            outline: none;
            box-shadow: 0 0 0 3px rgba(107, 47, 160, 0.1);
        }
        .comment-area button {
            background: #6b2fa0;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 10px;
        }
        .comment-area button:hover {
            background: #9b59b6;
        }
        friend-link {
            display: block;
            padding: 20px 0 8px;
            border-top: 2px solid #e0d5c8;
            margin-top: 32px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            background: #ede7dd;
            padding: 4px 14px;
            border-radius: 30px;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #d4c5b2;
            text-decoration: none;
        }
        footer {
            padding: 20px 0 32px;
            font-size: 0.88rem;
            color: #5a4a3a;
            border-top: 1px solid #e0d5c8;
            margin-top: 16px;
            text-align: center;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 2px;
                padding: 12px 0 8px;
                background: #f8f5f0;
                border-top: 1px solid #e0d5c8;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 8px 0;
                border-bottom: 1px solid #ede7dd;
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.82rem;
                gap: 4px 8px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                padding: 10px;
            }
            .hero-figure {
                margin: 16px 0;
            }
            .comment-area {
                padding: 16px;
            }
            .rating-widget {
                padding: 16px;
            }
        }
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
            .nav-toggle {
                display: none !important;
            }
        }
        .badge {
            display: inline-block;
            background: #f1c40f;
            color: #1e1a17;
            padding: 0.15em 0.8em;
            border-radius: 30px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .highlight {
            background: linear-gradient(to top, #f9e79f 30%, transparent 30%);
            padding: 0 4px;
        }
        .emoji-lg {
            font-size: 1.4em;
            display: inline-block;
            margin-right: 4px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a6a5a;
            margin-top: 4px;
            display: block;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0;
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }
        .stat-card {
            background: #fffdf9;
            border: 1px solid #e0d5c8;
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }
        .stat-card i {
            color: #6b2fa0;
            font-size: 1.4rem;
            margin-right: 8px;
        }
        .comment-list {
            max-height: 240px;
            overflow-y: auto;
            background: #f8f5f0;
            padding: 12px 16px;
            border-radius: 12px;
            margin-top: 12px;
            font-size: 0.9rem;
        }
        .comment-list p {
            border-bottom: 1px solid #e0d5c8;
            padding: 6px 0;
            margin-bottom: 4px;
        }
        .comment-list p:last-child {
            border-bottom: none;
        }
