        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #fcf9f5;
            color: #1e1e2a;
            line-height: 1.8;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #a93226;
            text-decoration: underline;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #c0392b;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 0 0 8px 8px;
            z-index: 9999;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1e2a3a 0%, #2c3e50 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5d78e;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5d78e;
        }
        .my-logo i {
            font-size: 2rem;
            color: #e8c37a;
        }
        .my-logo span {
            font-size: 0.85rem;
            font-weight: 300;
            color: #bdc3c7;
            letter-spacing: 1px;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e8e8e8;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a:focus-visible {
            background: rgba(255, 255, 255, 0.12);
            color: #f5d78e;
            text-decoration: none;
        }
        .breadcrumb {
            background: #f0ebe4;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #999;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #7f8c8d;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .active {
            color: #2c3e50;
            font-weight: 600;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .main-content h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a2634;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            border-left: 6px solid #c0392b;
            padding-left: 1.2rem;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-top: 3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #e8c37a;
        }
        .main-content h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #34495e;
            margin-top: 2.2rem;
            margin-bottom: 0.9rem;
        }
        .main-content h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #4a5b6e;
            margin-top: 1.6rem;
            margin-bottom: 0.6rem;
        }
        .main-content p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .main-content ul,
        .main-content ol {
            margin: 1rem 0 1.5rem 1.8rem;
        }
        .main-content li {
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
        }
        .main-content blockquote {
            border-left: 5px solid #c0392b;
            background: #f6f1eb;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2c3e50;
        }
        .main-content blockquote footer {
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #7f8c8d;
        }
        .content-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #eee;
        }
        .content-image img {
            width: 100%;
            object-fit: cover;
        }
        .content-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #f6f1eb;
            font-size: 0.9rem;
            color: #5d6d7e;
            font-style: italic;
        }
        .search-section {
            background: #f0ebe4;
            border-radius: 16px;
            padding: 2rem 2rem 2.2rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .search-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.85rem 1.2rem;
            border: 2px solid #d5ccc4;
            border-radius: 10px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c0392b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
        }
        .search-form button {
            padding: 0.85rem 2rem;
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a93226;
            transform: translateY(-1px);
        }
        .rating-section {
            background: #fff;
            border: 2px solid #e8e0d8;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #e8c37a;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #f39c12;
        }
        .rating-stats {
            font-size: 1.1rem;
            color: #2c3e50;
        }
        .rating-stats strong {
            font-size: 1.6rem;
            color: #c0392b;
        }
        .comment-section {
            background: #faf7f3;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #e8e0d8;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d5ccc4;
            border-radius: 10px;
            font-size: 1rem;
            background: #fff;
        }
        .comment-form .form-row input:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d5ccc4;
            border-radius: 10px;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
            background: #fff;
        }
        .comment-form textarea:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 0.8rem 2.4rem;
            background: #2c3e50;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover {
            background: #1a2634;
        }
        friend-link {
            display: block;
            padding: 2rem 0 0.5rem;
            font-size: 0;
        }
        friend-link a {
            display: inline-block;
            font-size: 0.95rem;
            color: #5d6d7e;
            padding: 0.3rem 1rem 0.3rem 0;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #c0392b;
        }
        friend-link a:not(:last-child)::after {
            content: "•";
            color: #ccc;
            padding-left: 0.8rem;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #1a2634;
            color: #bdc3c7;
            padding: 2.5rem 0 1.8rem;
            margin-top: 2rem;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
        }
        .site-footer .copyright strong {
            color: #f5d78e;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.25rem;
                padding-top: 0.75rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1rem;
                border-radius: 6px;
            }
            .main-content h1 {
                font-size: 2rem;
            }
            .main-content h2 {
                font-size: 1.6rem;
            }
            .main-content h3 {
                font-size: 1.3rem;
            }
            .rating-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .main-content h1 {
                font-size: 1.6rem;
                padding-left: 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .search-section,
            .comment-section,
            .rating-section {
                padding: 1.2rem;
            }
        }
        @media print {
            .site-header {
                position: static;
                background: #f0ebe4;
                color: #1e1e2a;
            }
            .nav-toggle,
            .search-form button,
            .comment-form button {
                display: none;
            }
            .site-header,
            .breadcrumb,
            .site-footer {
                break-inside: avoid;
            }
            .content-image {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }
        .transition-all {
            transition: all 0.2s ease;
        }
