        *,
        *::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: #faf7f2;
            color: #1e2a2f;
            line-height: 1.8;
            padding: 0 1rem;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b2c1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            color: #1e2a2f;
            margin-top: 1.6em;
            margin-bottom: 0.6em;
            font-weight: 700;
        }
        h1 {
            font-size: 2.2rem;
            border-left: 6px solid #c44536;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.75rem;
            border-bottom: 2px solid #e8ddd0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #3b4b52;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            padding: 1.8rem 2rem 2.5rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0 1.2rem;
            border-bottom: 2px solid #f0e8de;
            position: relative;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #1e2a2f;
            background: linear-gradient(135deg, #c44536, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(196, 69, 54, 0.15);
            transition: transform 0.25s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #5e6e76;
            color: #5e6e76;
            letter-spacing: 0.3px;
            display: block;
            font-style: italic;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c44536;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            color: #c44536;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #c44536;
            color: #fff;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            align-items: center;
        }
        .main-nav a {
            font-weight: 500;
            padding: 0.3rem 0;
            font-size: 0.98rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #c44536;
            text-decoration: none;
        }
        .main-nav a.active {
            border-bottom-color: #c44536;
            color: #c44536;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.92rem;
            padding: 0.8rem 0 0.2rem;
            color: #6a7a82;
            list-style: none;
            background: none;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b8a99a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5e6e76;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb .current {
            color: #1e2a2f;
            font-weight: 600;
        }
        .last-updated {
            display: inline-block;
            margin: 0.8rem 0 1.2rem;
            padding: 0.3rem 1.2rem;
            background: #f0e8de;
            border-radius: 30px;
            font-size: 0.88rem;
            color: #3b4b52;
            font-weight: 500;
        }
        .last-updated i {
            margin-right: 6px;
            color: #c44536;
        }
        .search-box {
            display: flex;
            max-width: 500px;
            margin: 1.6rem 0 2.2rem;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #e0d5c8;
            background: #fff;
            transition: border-color 0.25s;
        }
        .search-box:focus-within {
            border-color: #c44536;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.75rem 1.2rem;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #1e2a2f;
        }
        .search-box input::placeholder {
            color: #9aabae;
        }
        .search-box button {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #8b2c1e;
        }
        .hero-img-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            background: #e8ddd0;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-img-wrap .img-caption {
            padding: 0.6rem 1.2rem;
            background: rgba(30, 42, 47, 0.8);
            color: #f5ede6;
            font-size: 0.92rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .rating-area {
            background: #f6f1eb;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.25rem;
            font-size: 1.8rem;
            color: #e0c9b0;
        }
        .rating-stars .filled {
            color: #e67e22;
        }
        .rating-stars .half {
            color: #e67e22;
            position: relative;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.2rem;
        }
        .rating-form select {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            border: 2px solid #d9cdbe;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
        }
        .rating-form button {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #8b2c1e;
        }
        .comment-section {
            margin: 2.5rem 0;
            padding: 1.8rem 2rem;
            background: #fcfaf8;
            border-radius: 16px;
            border: 1px solid #ede6dd;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem 1.2rem;
            border: 2px solid #e0d5c8;
            border-radius: 12px;
            font-size: 0.98rem;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: border-color 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #c44536;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #c44536;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #8b2c1e;
        }
        .linked-resources {
            background: #f6f1eb;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.6rem;
        }
        .linked-resources a {
            font-weight: 500;
            background: #fff;
            padding: 0.25rem 1rem;
            border-radius: 30px;
            border: 1px solid #e0d5c8;
            font-size: 0.92rem;
            transition: all 0.2s;
        }
        .linked-resources a:hover {
            background: #c44536;
            color: #fff;
            border-color: #c44536;
            text-decoration: none;
        }
        friend-link {
            display: block;
            margin-top: 2.5rem;
            padding-top: 1.8rem;
            border-top: 2px solid #ede6dd;
            font-style: normal;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #3b4b52;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 1rem;
            background: #f0e8de;
            border-radius: 30px;
            font-size: 0.92rem;
        }
        friend-link a:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
        }
        .site-footer {
            margin-top: 2.8rem;
            padding-top: 1.5rem;
            border-top: 2px solid #f0e8de;
            font-size: 0.92rem;
            color: #5e6e76;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
        }
        .site-footer .copyright {
            font-weight: 400;
        }
        .site-footer .copyright strong {
            color: #1e2a2f;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1rem 1.2rem 1.8rem;
                border-radius: 14px;
            }
            h1 {
                font-size: 1.6rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .my-logo small {
                font-size: 0.75rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                margin-top: 1rem;
                padding: 1rem 0 0.5rem;
                border-top: 2px solid #f0e8de;
                background: #fff;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0;
                border-bottom: 1px solid #f0e8de;
                width: 100%;
            }
            .search-box {
                max-width: 100%;
                flex-direction: row;
            }
            .search-box input {
                font-size: 0.92rem;
                padding: 0.6rem 0.9rem;
            }
            .search-box button {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
            .rating-area {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
                justify-content: center;
            }
            .rating-form {
                justify-content: center;
            }
            .comment-section {
                padding: 1.2rem;
            }
            .linked-resources {
                padding: 1rem;
                gap: 0.5rem 1rem;
            }
            .linked-resources a {
                font-size: 0.85rem;
                padding: 0.2rem 0.8rem;
            }
            .site-footer {
                flex-direction: column;
                text-align: center;
            }
            .hero-img-wrap .img-caption {
                font-size: 0.78rem;
                padding: 0.4rem 0.8rem;
            }
            .breadcrumb {
                font-size: 0.82rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0.8rem 0.8rem 1.2rem;
            }
            h1 {
                font-size: 1.35rem;
            }
            h2 {
                font-size: 1.15rem;
            }
            h3 {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            p {
                font-size: 0.95rem;
            }
            .rating-stars {
                font-size: 1.2rem;
            }
        }
        .highlight {
            background: #fef3e0;
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 600px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #f9f5f0;
            padding: 1.2rem 1.5rem;
            border-radius: 14px;
            border-left: 4px solid #c44536;
        }
        .card h4 {
            margin-top: 0;
        }
        .back-top {
            display: inline-block;
            margin: 1.5rem 0 0.5rem;
            font-weight: 600;
        }
        .back-top i {
            margin-right: 0.4rem;
        }
        .schema-hidden {
            display: none;
        }
