        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f7f4ee;
            color: #2d2a24;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #2e7d32;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1b5e20;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1f3a2a;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4em;
            border-left: 6px solid #f9a825;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid #c8e6c9;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
            color: #3e3a33;
        }
        .text-highlight {
            font-weight: 700;
            color: #2e7d32;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 6px;
        }
        .site-header {
            background: linear-gradient(145deg, #1f3a2a 0%, #2a5a3a 100%);
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            background: rgba(255, 255, 255, 0.08);
            padding: 6px 18px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.18);
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo span {
            color: #f9a825;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #e8f5e9;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.25s;
            display: block;
            white-space: nowrap;
        }
        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .breadcrumb-wrap {
            background: #e8e3da;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d7d0c4;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #8d8478;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #2e7d32;
        }
        .breadcrumb .current {
            color: #5d5a52;
            font-weight: 600;
        }
        .hero-image-wrap {
            margin: 30px 0 20px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-caption {
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
            padding: 30px 24px 20px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: #fff;
            font-size: 1rem;
        }
        .hero-caption strong {
            font-size: 1.2rem;
            display: block;
        }
        section {
            margin: 40px 0;
        }
        .card-soft {
            background: #fffcf7;
            border-radius: 20px;
            padding: 28px 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            border: 1px solid #e8e0d6;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 560px;
            margin: 18px 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #d7d0c4;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
            background: #fff;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: #2e7d32;
            box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
        }
        .search-form button {
            background: #2e7d32;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #1b5e20;
            transform: translateY(-2px);
        }
        .comment-box,
        .score-box {
            background: #fffcf7;
            border-radius: 20px;
            padding: 28px 30px;
            border: 1px solid #e8e0d6;
            margin-bottom: 30px;
        }
        .comment-box textarea {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid #d7d0c4;
            border-radius: 16px;
            font-size: 1rem;
            resize: vertical;
            min-height: 110px;
            font-family: inherit;
            transition: 0.25s;
            background: #fff;
        }
        .comment-box textarea:focus {
            border-color: #2e7d32;
            box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
            outline: none;
        }
        .comment-box .btn-submit,
        .score-box .btn-submit {
            background: #f9a825;
            color: #1f3a2a;
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            margin-top: 12px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box .btn-submit:hover,
        .score-box .btn-submit:hover {
            background: #f59e0b;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
            margin: 10px 0 16px;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d7d0c4;
            transition: 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9a825;
        }
        .link-group {
            background: #f0ebe3;
            border-radius: 16px;
            padding: 18px 22px;
            margin: 24px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
        }
        .link-group a {
            font-weight: 500;
            padding: 4px 6px;
        }
        .link-group a i {
            margin-right: 6px;
            color: #f9a825;
        }
        friend-link {
            display: block;
            background: #e8e3da;
            border-radius: 16px;
            padding: 22px 28px;
            margin: 30px 0 18px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 10px;
            background: #fffcf7;
            border-radius: 30px;
            font-weight: 500;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #f9a825;
            color: #1f3a2a;
            text-decoration: none;
        }
        .site-footer {
            background: #1f3a2a;
            color: #e8f5e9;
            padding: 30px 0 20px;
            margin-top: 50px;
            text-align: center;
            font-size: 0.95rem;
        }
        .site-footer a {
            color: #f9a825;
        }
        .site-footer a:hover {
            color: #ffc107;
        }
        .site-footer .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
            margin-top: 18px;
            font-size: 0.85rem;
            color: #b7afa2;
        }
        @media (max-width: 820px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1f3a2a;
                padding: 12px 0;
                border-radius: 16px;
                margin-top: 8px;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 0;
                white-space: normal;
            }
            .hamburger {
                display: block;
            }
            .nav-bar {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .card-soft {
                padding: 20px 16px;
            }
            .comment-box,
            .score-box {
                padding: 20px 16px;
            }
            .hero-caption {
                font-size: 0.85rem;
                padding: 20px 16px 14px;
            }
            .hero-caption strong {
                font-size: 1rem;
            }
            .search-form button {
                padding: 12px 20px;
            }
            .star-rating {
                font-size: 1.6rem;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
                padding-left: 12px;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.3rem;
                padding: 4px 14px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .breadcrumb li+li::before {
                margin-right: 6px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: unset;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .text-small {
            font-size: 0.9rem;
            color: #6b655a;
        }
        .badge {
            display: inline-block;
            background: #f9a825;
            color: #1f3a2a;
            padding: 2px 14px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.8rem;
        }
        .last-updated {
            display: block;
            text-align: right;
            font-size: 0.85rem;
            color: #8d8478;
            margin-top: 6px;
            border-top: 1px dashed #d7d0c4;
            padding-top: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fffcf7;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e8e0d6;
        }
        th {
            background: #1f3a2a;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f5f0e9;
        }
        .tip-box {
            background: #e8f5e9;
            border-left: 6px solid #2e7d32;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .tip-box i {
            color: #2e7d32;
            margin-right: 10px;
        }
        .quote-box {
            background: #fff3e0;
            border-left: 6px solid #f9a825;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 24px 0;
            font-style: italic;
        }
        .quote-box strong {
            font-style: normal;
        }
