        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #faf8f5;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a13226;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #1b1b2a;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #f4a261;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #e76f51;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2d4059;
        }
        h4 {
            font-size: 1.2rem;
            color: #3d5a80;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong,
        b {
            color: #1b1b2a;
            font-weight: 700;
        }
        hr {
            border: none;
            border-top: 2px dashed #d6ccc0;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        header {
            padding: 1.2rem 0 0.8rem 0;
            border-bottom: 1px solid #e0d6cc;
            margin-bottom: 1.5rem;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e76f51, #f4a261);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #e76f51;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #555;
            display: block;
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 1rem;
        }
        nav a {
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-size: 0.95rem;
            color: #2d4059;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #f4a26140;
            color: #1b1b2a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #2d4059;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f4a26130;
        }
        .nav-mobile-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 1rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0;
            margin: 0.4rem 0 0.8rem 0;
            font-size: 0.9rem;
            color: #6b5e55;
            border-top: 1px solid #e8e0d8;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #b5a69b;
        }
        .breadcrumb a {
            color: #6b5e55;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb li[aria-current="page"] {
            color: #2d4059;
            font-weight: 600;
        }
        .search-section {
            background: #f0ebe4;
            padding: 1.5rem 1.2rem;
            border-radius: 16px;
            margin: 1.5rem 0 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d6ccc0;
            border-radius: 40px;
            font-size: 1rem;
            background: white;
            transition: border 0.2s;
            min-width: 120px;
        }
        .search-form input:focus {
            outline: none;
            border-color: #e76f51;
        }
        .search-form button {
            background: #e76f51;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #c44536;
            transform: scale(1.02);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            background: #f4ede6;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-style: italic;
            color: #5a4e46;
            background: #f4ede6;
            font-size: 0.95rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .info-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede6de;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .info-card i {
            font-size: 1.8rem;
            color: #e76f51;
            margin-bottom: 0.5rem;
        }
        .info-card h4 {
            margin-top: 0.2rem;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .comment-box,
        .score-box {
            background: white;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #ede6de;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .comment-box input,
        .comment-box textarea,
        .score-box select,
        .score-box button {
            padding: 0.7rem 1rem;
            border: 2px solid #d6ccc0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fcfaf8;
            transition: border 0.2s;
        }
        .comment-box input:focus,
        .comment-box textarea:focus,
        .score-box select:focus {
            outline: none;
            border-color: #e76f51;
            background: white;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box button,
        .score-box button {
            background: #2d4059;
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
            padding: 0.7rem 2rem;
            border-radius: 40px;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #1b2a3a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d6ccc0;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
            color: #d6ccc0;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f4a261;
        }
        footer {
            margin-top: 3.5rem;
            padding: 2rem 0 1.5rem 0;
            border-top: 2px solid #e0d6cc;
            background: #f4ede6;
            border-radius: 24px 24px 0 0;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem 2rem;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            margin-top: 0;
            font-size: 1.1rem;
            color: #2d4059;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            margin: 0.8rem 0;
        }
        friend-link a {
            background: #e8e0d8;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #d6ccc0;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0 0;
            font-size: 0.9rem;
            color: #5a4e46;
            border-top: 1px solid #d6ccc0;
            margin-top: 1.2rem;
            width: 100%;
        }
        .copyright strong {
            color: #2d4059;
        }
        @media (max-width: 820px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                flex-direction: row;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-mobile-wrapper {
                display: none;
                flex-basis: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.4rem 0;
                gap: 0.3rem;
            }
            .nav-mobile-wrapper.open {
                display: flex;
            }
            .nav-mobile-wrapper a {
                width: 100%;
                padding: 0.5rem 0.8rem;
                border-radius: 8px;
            }
            .nav-mobile-wrapper a:hover {
                background: #f4a26130;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex: 1 1 auto;
            }
        }
        @media (max-width: 500px) {
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .featured-image img {
                max-height: 240px;
            }
        }
        .last-updated {
            display: inline-block;
            background: #e8e0d8;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #4a3f37;
            margin: 0.5rem 0 1rem 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .badge {
            background: #f4a26120;
            color: #a13226;
            padding: 0.1rem 0.6rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .quote-block {
            background: #f4ede6;
            border-left: 6px solid #e76f51;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ede6de;
        }
        th {
            background: #2d4059;
            color: white;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #faf5f0;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #e76f51;
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            transition: background 0.2s, transform 0.2s;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            background: #c44536;
            transform: translateY(-4px);
        }
        .schema-hidden {
            display: none;
        }
