        *,
        *::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: #f8f9fc;
            color: #1a2639;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b3442e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #7a2a1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #0f1a2e;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #b3442e;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b3442e;
            padding-left: 0.9rem;
            margin-top: 2.6rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.4rem;
            color: #2c3e5c;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 20px;
            padding: 1.8rem 2rem 2.5rem;
            margin-top: 1.2rem;
            margin-bottom: 2rem;
        }
        @media (max-width:640px) {
            .container {
                padding: 1rem 1rem 1.8rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            body {
                padding: 0 0.5rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 0 1rem;
            border-bottom: 2px solid #e8eef3;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b3442e, #d9774a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #b3442e;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            -webkit-text-fill-color: #4a5b6e;
            background: none;
            letter-spacing: 0.3px;
        }
        @media (max-width:640px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-links li a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-links li a:hover {
            border-bottom-color: #b3442e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #1a2639;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #b3442e;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #f1f5f9;
                padding: 1rem 1.2rem;
                border-radius: 12px;
                margin-top: 0.8rem;
                gap: 0.8rem;
            }
            #nav-toggle:checked~.nav-links {
                display: flex;
            }
            .nav-bar {
                gap: 0.5rem;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            padding: 0.6rem 0 0.2rem;
            color: #5a6b7c;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #b3442e;
            font-weight: 700;
            margin-right: 0.4rem;
        }
        .breadcrumb a {
            color: #2c4a6e;
        }
        .breadcrumb a:hover {
            color: #b3442e;
        }
        .hero-img-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 18px;
            overflow: hidden;
            background: #eef2f7;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 18px;
        }
        .hero-img-caption {
            font-size: 0.85rem;
            color: #4a5b6e;
            margin-top: 0.3rem;
            text-align: center;
            font-style: italic;
        }
        .search-section {
            background: #f0f4fa;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form {
            display: flex;
            flex: 1;
            min-width: 200px;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 140px;
            padding: 0.7rem 1rem;
            border: 2px solid #d0dae6;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input:focus {
            border-color: #b3442e;
        }
        .search-form button {
            background: #b3442e;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.6rem;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #7a2a1a;
        }
        .comments-section {
            background: #f8faff;
            border: 1px solid #e0e8f0;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin: 2.2rem 0;
        }
        .comments-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.8rem 1rem;
            border: 2px solid #d0dae6;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            outline: none;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #b3442e;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 160px;
            padding: 0.7rem 1rem;
            border: 2px solid #d0dae6;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .comment-form .form-row input:focus {
            border-color: #b3442e;
        }
        .comment-form button {
            align-self: flex-start;
            background: #1a2f44;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2rem;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form button:hover {
            background: #0f1a2e;
        }
        .rating-section {
            background: #fff6f2;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 1.8rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.2rem 2rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #e0a800;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: transform 0.15s, color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f5c518;
            transform: scale(1.1);
        }
        .rating-stars label i {
            pointer-events: none;
        }
        .rating-form button {
            background: #b3442e;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.6rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
        }
        .rating-form button:hover {
            background: #7a2a1a;
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #5a6b7c;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0 0.8rem;
            border-top: 1px solid #e8eef3;
            margin-top: 0.2rem;
        }
        .last-updated i {
            color: #b3442e;
        }
        .site-footer {
            border-top: 3px solid #e8eef3;
            padding-top: 1.8rem;
            margin-top: 2.5rem;
        }
        friend-link {
            display: block;
            background: #f1f6fc;
            border-radius: 14px;
            padding: 1.4rem 1.8rem;
            margin-bottom: 1.4rem;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 0.2rem 0.6rem;
            background: #ffffff;
            border-radius: 30px;
            border: 1px solid #d5e0ec;
            font-size: 0.9rem;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            background: #b3442e;
            color: #fff;
            border-color: #b3442e;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.4rem;
            font-size: 0.85rem;
            color: #4a5b6e;
            border-top: 1px solid #e0e8f0;
        }
        .copyright strong {
            color: #1a2639;
        }
        .highlight-box {
            background: #fbf5f0;
            border-left: 5px solid #b3442e;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.4rem 0;
        }
        .stat-card {
            background: #f0f4fa;
            border-radius: 14px;
            padding: 1.2rem 1rem;
            text-align: center;
            font-weight: 600;
        }
        .stat-card .num {
            font-size: 2rem;
            color: #b3442e;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #3f5369;
            margin-top: 0.2rem;
        }
        .quote-block {
            font-style: italic;
            background: #f9f6f2;
            padding: 1.2rem 1.8rem;
            border-radius: 14px;
            margin: 1.4rem 0;
            border: 1px solid #ece3da;
            position: relative;
        }
        .quote-block::before {
            content: "\201C";
            font-size: 3rem;
            color: #b3442e;
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        .quote-block .attribution {
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #2c3e5c;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #b3442e;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.6rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.9rem;
        }
        .btn:hover {
            background: #7a2a1a;
            text-decoration: none;
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b3442e;
            color: #b3442e;
        }
        .btn-outline:hover {
            background: #b3442e;
            color: #fff;
        }
        .tag {
            display: inline-block;
            background: #eef2f7;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #2c4a6e;
        }
        @media (max-width:480px) {
            .search-section {
                padding: 1rem 1.2rem;
            }
            .comments-section {
                padding: 1rem 1.2rem;
            }
            .rating-section {
                padding: 1rem 1.2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-img-wrap img {
                max-height: 220px;
            }
        }
