        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #faf8f5;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1a2a3a;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b8860b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0b1a2a, #1a2f44);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f7d875, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
            display: inline-block;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #ccc;
            color: #ccc;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #efe6d6;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #b8860b;
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #f7d875;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #b8860b20;
        }
        .breadcrumb {
            background: #efe6d6;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dccbb8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.2rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #8b6508;
        }
        .breadcrumb a {
            color: #5a4a3a;
        }
        .breadcrumb .current {
            color: #1a2a3a;
            font-weight: 600;
        }
        .hero-img-wrap {
            margin: 2rem 0 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #dccbb8;
        }
        .hero-img-wrap img {
            width: 100%;
            object-fit: cover;
            min-height: 200px;
            max-height: 480px;
        }
        .content-section {
            margin: 2.5rem 0;
        }
        .content-section p {
            font-size: 1.05rem;
        }
        .highlight-box {
            background: #f5ede4;
            border-left: 6px solid #b8860b;
            padding: 1.5rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: #1a2a3a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            text-align: center;
            border: 1px solid #e8ddd0;
            transition: transform 0.2s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }
        .stat-card i {
            font-size: 2.2rem;
            color: #b8860b;
            margin-bottom: 0.5rem;
        }
        .stat-card h4 {
            margin: 0.4rem 0 0.2rem;
            font-size: 1.1rem;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0.8rem 0;
            margin: 1.2rem 0;
        }
        .link-list-inline li a {
            background: #f5ede4;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #dccbb8;
            transition: 0.2s;
            display: inline-block;
        }
        .link-list-inline li a:hover {
            background: #b8860b;
            color: #fff;
            border-color: #b8860b;
            text-decoration: none;
        }
        .search-wrap {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 2.5rem 0;
            border: 1px solid #e8ddd0;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dccbb8;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 3px #b8860b30;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #8b6508;
            transform: scale(1.02);
        }
        .comments-wrap {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 2.5rem 0;
            border: 1px solid #e8ddd0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #dccbb8;
            border-radius: 16px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 110px;
            outline: none;
            transition: 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 3px #b8860b30;
        }
        .comment-form .form-row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 140px;
            padding: 0.7rem 1rem;
            border: 2px solid #dccbb8;
            border-radius: 40px;
            outline: none;
            font-size: 0.95rem;
        }
        .comment-form .form-row input:focus {
            border-color: #b8860b;
        }
        .comment-form button {
            padding: 0.7rem 2rem;
            background: #1a2f44;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover {
            background: #0b1a2a;
            transform: scale(1.02);
        }
        .rating-wrap {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 2.5rem 0;
            border: 1px solid #e8ddd0;
            text-align: center;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2.2rem;
            direction: rtl;
            margin: 0.8rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7c948;
        }
        .rating-wrap button {
            padding: 0.7rem 2.5rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-wrap button:hover {
            background: #8b6508;
        }
        friend-link {
            display: block;
            background: #1a2f44;
            color: #efe6d6;
            padding: 2rem 0;
            margin-top: 2.5rem;
            border-radius: 20px 20px 0 0;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2.5rem;
            justify-content: center;
        }
        friend-link a {
            color: #f7d875;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: 0.2s;
        }
        friend-link a:hover {
            border-bottom-color: #f7d875;
            text-decoration: none;
        }
        .site-footer {
            background: #0b1a2a;
            color: #ccc;
            padding: 1.8rem 0;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            letter-spacing: 0.5px;
        }
        .site-footer a {
            color: #f7d875;
        }
        @media (max-width: 820px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a2f44;
                padding: 1rem 0.5rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                width: 100%;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 0.2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
                padding-left: 0.6rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .highlight-box {
                padding: 1rem 1.2rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .star-rating {
                font-size: 1.8rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .last-update {
            font-size: 0.85rem;
            color: #6a5a4a;
            margin-top: 1.5rem;
            text-align: right;
            border-top: 1px solid #e8ddd0;
            padding-top: 0.8rem;
        }
        .last-update i {
            margin-right: 0.4rem;
        }
