        *,
        *::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, sans-serif;
            background: #f8f9fa;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b4542c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #7a3218;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #12121c;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
            border-left: 6px solid #e07a3a;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px double #eae2d6;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d2d3f;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin-bottom: 1.4rem;
            padding-left: 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #b4542c;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #3d3d55;
        }
        blockquote {
            background: #f1ede8;
            border-left: 5px solid #e07a3a;
            padding: 1.2rem 1.6rem;
            margin: 1.6rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2d2d3f;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e, #12121c);
            color: #f5eee9;
            padding: 1.2rem 1.8rem;
            border-radius: 0 0 28px 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            margin-bottom: 1.2rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5b282, #e07a3a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #e07a3a;
            margin-right: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #e07a3a;
            color: #e07a3a;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #e07a3a;
            color: #12121c;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            align-items: center;
        }
        .main-nav a {
            color: #e8ddd4;
            font-weight: 500;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            color: #f5b282;
            border-bottom-color: #f5b282;
            text-decoration: none;
        }
        .main-nav .nav-active {
            color: #f5b282;
            border-bottom-color: #e07a3a;
        }
        .breadcrumb {
            background: #edeae5;
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            font-size: 0.85rem;
            margin-bottom: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b4542c;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5a4a3e;
        }
        .breadcrumb .crumb-current {
            color: #b4542c;
            font-weight: 600;
        }
        .search-section {
            background: #ffffff;
            border-radius: 24px;
            padding: 1.2rem 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-section form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.5rem;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #e0d6cc;
            border-radius: 40px;
            font-size: 1rem;
            background: #faf8f6;
            transition: 0.25s;
            outline: none;
        }
        .search-section input[type="text"]:focus {
            border-color: #e07a3a;
            background: #fff;
        }
        .search-section button {
            background: #e07a3a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: #b4542c;
            transform: scale(1.02);
        }
        .content-wrapper {
            background: #ffffff;
            border-radius: 28px;
            padding: 2.2rem 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
            margin-bottom: 2.4rem;
        }
        .content-wrapper img {
            margin: 1.6rem auto;
            border-radius: 20px;
        }
        .content-wrapper .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #6b5e53;
            margin-top: -0.8rem;
            margin-bottom: 1.6rem;
        }
        .last-updated {
            display: inline-block;
            background: #f1ede8;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #4d4137;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #e07a3a;
        }
        .rating-area {
            background: #faf8f6;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 2rem 0 1.8rem;
            border: 1px solid #e8dfd6;
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            align-items: center;
        }
        .rating-area .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d4c9be;
            cursor: pointer;
        }
        .rating-area .stars i {
            transition: 0.15s;
        }
        .rating-area .stars i:hover,
        .rating-area .stars i.active {
            color: #f5b342;
            transform: scale(1.1);
        }
        .rating-area .rating-info {
            font-weight: 600;
            color: #2d2d3f;
        }
        .rating-area form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            align-items: center;
            margin-left: auto;
        }
        .rating-area form input[type="number"] {
            width: 70px;
            padding: 0.4rem 0.6rem;
            border: 2px solid #d4c9be;
            border-radius: 30px;
            text-align: center;
            font-weight: 600;
        }
        .rating-area form button {
            background: #3d3d55;
            color: #fff;
            border: none;
            padding: 0.4rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-area form button:hover {
            background: #1a1a2e;
        }
        .comments-section {
            background: #faf8f6;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0 2rem;
            border: 1px solid #e8dfd6;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comments-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .comments-section form input,
        .comments-section form textarea {
            flex: 1 1 100%;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d4c9be;
            border-radius: 14px;
            font-size: 0.95rem;
            background: #fff;
            transition: 0.2s;
            outline: none;
            font-family: inherit;
        }
        .comments-section form input:focus,
        .comments-section form textarea:focus {
            border-color: #e07a3a;
        }
        .comments-section form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .comments-section form .comment-fields {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            width: 100%;
        }
        .comments-section form .comment-fields input {
            flex: 1 1 180px;
        }
        .comments-section form button {
            background: #e07a3a;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .comments-section form button:hover {
            background: #b4542c;
        }
        friend-link {
            display: block;
            background: #f1ede8;
            border-radius: 20px;
            padding: 1.4rem 1.8rem;
            margin: 2rem 0 1.2rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
        }
        friend-link::before {
            content: "🤝 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            color: #1a1a2e;
        }
        .site-footer {
            background: #1a1a2e;
            color: #d4ccc4;
            padding: 2rem 1.8rem 1.2rem;
            border-radius: 28px 28px 0 0;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.2rem;
            max-width: 1140px;
            margin: 0 auto;
        }
        .site-footer a {
            color: #f5b282;
        }
        .site-footer a:hover {
            color: #ffd8b8;
        }
        .site-footer .copyright {
            width: 100%;
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #2d2d4a;
            margin-top: 0.8rem;
            font-size: 0.8rem;
            color: #8f8278;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 820px) {
            .site-header {
                padding: 1rem 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.6rem;
                padding-top: 1rem;
                border-top: 1px solid #2d2d4a;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1rem;
                padding: 0.4rem 0;
            }
            .content-wrapper {
                padding: 1.4rem 1rem;
            }
            h1 {
                font-size: 1.6rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .rating-area {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .rating-area form {
                margin-left: 0;
            }
            .comments-section {
                padding: 1.2rem;
            }
            .search-section {
                padding: 1rem;
            }
            .search-section form {
                flex-wrap: wrap;
            }
            .search-section input[type="text"] {
                flex: 1 1 100%;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            friend-link a {
                display: inline-block;
                margin: 0.3rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.4rem;
            }
            .content-wrapper {
                padding: 1rem 0.8rem;
                border-radius: 18px;
            }
            h1 {
                font-size: 1.3rem;
            }
            h2 {
                font-size: 1.1rem;
            }
            .rating-area .stars {
                font-size: 1.4rem;
            }
            .comments-section form .comment-fields input {
                flex: 1 1 100%;
            }
            .site-header {
                padding: 0.8rem 0.8rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gap-1 {
            gap: 0.8rem;
        }
        .anchor-offset {
            scroll-margin-top: 2rem;
        }
