        *,
        *::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: #f8f6f2;
            color: #2d2a24;
            line-height: 1.8;
            padding: 0 16px;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #a33124;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0 0 0.6rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.8rem 0 1rem;
            border-bottom: 3px solid #e8d5c4;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 2rem 0 0.6rem;
            color: #3d352e;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.4rem 0 0.4rem;
            color: #5a4d42;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 28px;
            padding: 20px 28px 40px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #efe7df;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #2d2a24;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #c44536, #e27b5a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #c44536;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2d2a24;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0e8e0;
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
            transition: all 0.3s ease;
        }
        .primary-nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            color: #3d352e;
            border-bottom: 2px solid transparent;
        }
        .primary-nav a:hover {
            border-bottom-color: #c44536;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            padding: 14px 0 6px;
            color: #7a6b5e;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #b8a898;
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: #7a6b5e;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .hero-figure {
            margin: 24px 0 28px;
            border-radius: 20px;
            overflow: hidden;
            background: #e8d5c4;
            position: relative;
        }
        .hero-figure img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #5a4d42;
            background: #f5efea;
            font-style: italic;
        }
        .search-section {
            background: #f5efea;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.05rem;
            flex: 1 0 100%;
        }
        .search-section form {
            display: flex;
            flex: 1 1 100%;
            gap: 10px;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #ddd2c6;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.25s;
        }
        .search-section input[type="text"]:focus {
            border-color: #c44536;
        }
        .search-section button {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #a33124;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        @media (max-width:700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .rating-box,
        .comment-box {
            background: #fbf9f7;
            border: 1px solid #e8ddd2;
            border-radius: 20px;
            padding: 24px 26px;
        }
        .rating-box h3,
        .comment-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .star-group {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #e0d3c8;
            cursor: pointer;
            margin: 10px 0 14px;
            flex-wrap: wrap;
        }
        .star-group i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-group i.active,
        .star-group i:hover {
            color: #f5b342;
        }
        .star-group i:hover {
            transform: scale(1.2);
        }
        .rating-box form,
        .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .rating-box input[type="number"],
        .comment-box textarea,
        .comment-box input[type="text"] {
            padding: 12px 16px;
            border: 2px solid #ddd2c6;
            border-radius: 14px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: border 0.25s;
            width: 100%;
        }
        .rating-box input[type="number"]:focus,
        .comment-box textarea:focus,
        .comment-box input[type="text"]:focus {
            border-color: #c44536;
        }
        .comment-box textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn-submit {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #a33124;
            transform: scale(1.02);
        }
        .site-footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #efe7df;
            font-size: 0.9rem;
            color: #5a4d42;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin-bottom: 16px;
        }
        .footer-links a {
            color: #5a4d42;
        }
        .footer-links a:hover {
            color: #c44536;
        }
        friend-link {
            display: block;
            background: #f5efea;
            border-radius: 16px;
            padding: 18px 22px;
            margin: 18px 0 14px;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            font-size: 0.82rem;
            color: #8a7c6e;
            padding: 10px 0 4px;
            text-align: center;
        }
        @media (max-width: 760px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px 14px 28px;
                border-radius: 18px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .site-header {
                padding: 10px 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 4px;
                gap: 4px;
                background: #fbf9f7;
                border-radius: 16px;
                margin-top: 8px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 16px;
                border-bottom: none;
                border-radius: 10px;
            }
            .primary-nav a:hover {
                background: #f0e8e0;
                border-bottom: none;
            }
            .search-section {
                padding: 18px 16px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                justify-content: center;
            }
            .interaction-grid {
                gap: 16px;
            }
            .rating-box,
            .comment-box {
                padding: 18px 16px;
            }
            .star-group {
                font-size: 1.5rem;
            }
            .hero-figure img {
                max-height: 220px;
            }
        }
        @media (min-width: 761px) and (max-width: 1024px) {
            .container {
                padding: 18px 24px 36px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        .highlight {
            background: linear-gradient(to right, #fae8e0, #f5ded4);
            padding: 0 6px;
            border-radius: 6px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #c44536;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .blockquote {
            border-left: 5px solid #c44536;
            background: #f8f3ef;
            padding: 16px 22px;
            margin: 20px 0;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #3d352e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            border-radius: 14px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e8ddd2;
        }
        th {
            background: #efe7df;
            font-weight: 600;
            color: #2d2a24;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .gap-section {
            margin: 32px 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0;
        }
        @media (max-width: 640px) {
            .two-col {
                grid-template-columns: 1fr;
            }
        }
