        *,
        *::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, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #fcf9f5;
            color: #2d2a24;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b2c1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1f1b16;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #f7a072;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #f7a072;
            padding-left: 0.75rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #3d352c;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 8px;
            background: #c44536;
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            z-index: 1000;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        header {
            background: #1f1b16;
            color: #f0ebe4;
            padding: 0.8rem 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: 1.2rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7a072, #e36b4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f7a072;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0ebe4;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #e8ddd0;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            display: block;
        }
        .nav-menu li a:hover {
            background: #f7a072;
            color: #1f1b16;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 0.4rem;
        }
        .breadcrumb {
            background: #f0ebe4;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            font-size: 0.9rem;
            margin-bottom: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        .breadcrumb a {
            color: #6b5e52;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb span {
            color: #8a7a6a;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero-img-wrap {
            margin: 1.5rem 0 2rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            background: #e8ddd0;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-img-wrap .img-credit {
            position: absolute;
            bottom: 0;
            right: 0;
            background: rgba(31, 27, 22, 0.7);
            color: #f0ebe4;
            padding: 0.3rem 0.8rem;
            font-size: 0.75rem;
            border-radius: 12px 0 12px 0;
        }
        section {
            margin: 2.5rem 0;
        }
        .section-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 2rem;
            border: 1px solid #f0e8e0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            max-width: 600px;
            margin: 1rem 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #ddd2c8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fcf9f5;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #f7a072;
        }
        .search-form button {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 0.75rem 1.8rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a13326;
            transform: scale(1.02);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .comment-form textarea {
            flex: 1 1 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd2c8;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            background: #fcf9f5;
            min-height: 100px;
            resize: vertical;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #f7a072;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #ddd2c8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fcf9f5;
        }
        .comment-form input[type="text"]:focus {
            outline: none;
            border-color: #f7a072;
        }
        .comment-form button,
        .rating-form button {
            background: #1f1b16;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #3d352c;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd2c8;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7a072;
        }
        friend-link {
            display: block;
            background: #1f1b16;
            color: #f0ebe4;
            padding: 2rem 1.5rem;
            border-radius: 20px;
            margin: 2rem 0 1rem;
        }
        friend-link .fl-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #f7a072;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
        }
        friend-link .fl-list li a {
            color: #e8ddd0;
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.06);
            transition: background 0.2s, color 0.2s;
            display: inline-block;
            font-size: 0.95rem;
        }
        friend-link .fl-list li a:hover {
            background: #f7a072;
            color: #1f1b16;
            text-decoration: none;
        }
        footer {
            text-align: center;
            padding: 1.5rem 0 2.5rem;
            color: #6b5e52;
            font-size: 0.9rem;
            border-top: 2px solid #f0e8e0;
            margin-top: 2rem;
        }
        footer .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.3rem 1rem;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #f0ebe4;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #5a4e42;
            margin-bottom: 1.2rem;
        }
        @media (max-width: 860px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 0.8rem;
                background: #2d2720;
                padding: 0.8rem;
                border-radius: 16px;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.7rem 1rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .section-card {
                padding: 1.2rem 1rem;
            }
            .header-inner {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.9rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.5rem;
            }
            .search-form button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .comment-form button,
            .rating-form button {
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .section-card {
                padding: 0.8rem 0.8rem;
            }
        }
        .badge {
            display: inline-block;
            background: #f7a072;
            color: #1f1b16;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .highlight-box {
            background: #fdf6ed;
            border-left: 6px solid #f7a072;
            padding: 1.2rem 1.5rem;
            border-radius: 0 16px 16px 0;
            margin: 1.5rem 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            line-height: 1;
        }
        .inline-icon {
            margin-right: 0.4rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .schema-hidden {
            display: none;
        }
