        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f5f0;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 1.0625rem;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #2a6f97;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #1a4f6e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1a2e3f;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e0dcd3;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0 0 1.5rem 2rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        blockquote {
            border-left: 5px solid #2a6f97;
            background: #edebe6;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #2c3e4f;
        }
        hr {
            border: none;
            border-top: 2px solid #e0dcd3;
            margin: 2.5rem 0;
        }
        .container {
            width: 100%;
            padding: 0 0.5rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 0 0.75rem 0;
            border-bottom: 3px solid #d4cec4;
            position: relative;
            background: #f7f5f0;
            z-index: 100;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1a2e3f;
            background: linear-gradient(135deg, #2a6f97, #3d8fbd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #5a6a7a;
            color: #5a6a7a;
            letter-spacing: 0;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #1a2e3f;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #e0dcd3;
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.25rem 0.1rem;
        }
        .primary-nav a {
            display: inline-block;
            padding: 0.5rem 0.9rem;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2c3e4f;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover {
            background: #e0dcd3;
            color: #1a2e3f;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #2a6f97;
            color: #fff;
        }
        .breadcrumb {
            padding: 0.6rem 0 0.2rem 0;
            font-size: 0.9rem;
            color: #5a6a7a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #2a6f97;
        }
        .breadcrumb span {
            margin: 0 0.3rem;
        }
        .search-section {
            background: #edebe6;
            padding: 1.8rem 2rem;
            border-radius: 14px;
            margin: 2rem 0 1.5rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            color: #1a2e3f;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 320px;
            gap: 0.5rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d4cec4;
            border-radius: 8px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #2a6f97;
        }
        .search-form button {
            padding: 0.7rem 1.4rem;
            background: #2a6f97;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #1a4f6e;
        }
        .content-area {
            padding: 1.5rem 0;
        }
        .featured-image {
            margin: 2rem 0 2.5rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            background: #edebe6;
            font-size: 0.9rem;
            color: #3a4a5a;
            text-align: center;
        }
        .comments-section,
        .rating-section {
            background: #edebe6;
            padding: 2rem;
            border-radius: 14px;
            margin: 2.5rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .comments-section h3,
        .rating-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select,
        .rating-form input {
            padding: 0.7rem 1rem;
            border: 2px solid #d4cec4;
            border-radius: 8px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #2a6f97;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            background: #2a6f97;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #1a4f6e;
        }
        .site-footer {
            padding: 2.5rem 0 1.5rem 0;
            border-top: 3px solid #d4cec4;
            margin-top: 3rem;
        }
        .site-footer friend-link {
            display: block;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #1a2e3f;
        }
        .friend-links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            list-style: none;
            margin: 0.5rem 0 1.5rem 0;
            padding: 0;
        }
        .friend-links-list li a {
            font-weight: 500;
        }
        .copyright {
            font-size: 0.9rem;
            color: #5a6a7a;
            border-top: 1px solid #d4cec4;
            padding-top: 1.2rem;
            margin-top: 1rem;
            text-align: center;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.75rem 0 0.25rem 0;
                gap: 0.15rem;
            }
            .primary-nav.show {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 0.8rem;
                border-radius: 6px;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .comments-section,
            .rating-section {
                padding: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 1rem;
                padding: 0 0.5rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.35rem;
            }
            .site-header {
                padding-top: 0.8rem;
            }
        }
        .text-muted {
            color: #5a6a7a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .last-updated {
            display: inline-block;
            background: #e0dcd3;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #2c3e4f;
            margin-bottom: 1rem;
        }
        .stars {
            color: #f5b342;
            letter-spacing: 2px;
            font-size: 1.2rem;
        }
        .schema-hidden {
            display: none;
        }
