* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f5f0eb;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 32px;
            padding: 24px 28px 40px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        header {
            padding: 16px 0 12px;
            border-bottom: 2px solid #e8e0d8;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #c0392b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #c0392b, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo i {
            -webkit-text-fill-color: #c0392b;
            font-size: 1.8rem;
        }
        .my-logo span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #7f8c8d;
            -webkit-text-fill-color: #7f8c8d;
            letter-spacing: 0.2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2d2a24;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 12px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0e8e0;
        }
        nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #4a4238;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 20px;
            transition: all 0.2s;
        }
        nav a:hover {
            background: #c0392b10;
            color: #c0392b;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #7f8c8d;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            padding: 8px 0 2px;
            border-top: 1px solid #f0e8e0;
        }
        .breadcrumb a {
            color: #c0392b;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #999;
        }
        .search-bar {
            display: flex;
            gap: 8px;
            margin: 20px 0 28px;
            max-width: 560px;
            background: #f8f4f0;
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            border: 1px solid #e8e0d8;
            transition: border 0.2s;
        }
        .search-bar:focus-within {
            border-color: #c0392b;
            background: #fff;
        }
        .search-bar input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 0;
            font-size: 1rem;
            outline: none;
            color: #2d2a24;
        }
        .search-bar input::placeholder {
            color: #aaa;
        }
        .search-bar button {
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 10px 24px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-bar button:hover {
            background: #a93226;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a1a1a;
            margin: 12px 0 10px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #c0392b;
            margin-right: 8px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #c0392b30;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: #c0392b;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #34495e;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d2a24;
            margin: 22px 0 8px;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
            color: #3d3730;
        }
        .highlight {
            background: #fef9e7;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .img-wrap {
            margin: 32px 0;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #f8f4f0;
            text-align: center;
        }
        .img-wrap img {
            width: 100%;
            height: auto;
            display: block;
            max-height: 520px;
            object-fit: cover;
        }
        .img-wrap figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #f0ebe5;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #666;
            margin: 8px 0 20px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #c0392b;
        }
        .link-list {
            background: #faf6f2;
            padding: 18px 24px;
            border-radius: 20px;
            margin: 24px 0;
            border-left: 4px solid #c0392b;
        }
        .link-list a {
            color: #c0392b;
            text-decoration: none;
            font-weight: 500;
        }
        .link-list a:hover {
            text-decoration: underline;
        }
        .interact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 48px 0 32px;
            padding: 32px 0;
            border-top: 2px solid #e8e0d8;
            border-bottom: 2px solid #e8e0d8;
        }
        .comment-box,
        .rating-box {
            background: #faf6f2;
            padding: 24px 28px;
            border-radius: 24px;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-box form,
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .comment-box textarea {
            resize: vertical;
            min-height: 100px;
            padding: 14px 16px;
            border-radius: 16px;
            border: 1px solid #ddd6ce;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-box input,
        .rating-box input {
            padding: 12px 16px;
            border-radius: 16px;
            border: 1px solid #ddd6ce;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-box input:focus,
        .rating-box input:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-box button,
        .rating-box button {
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #a93226;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd6ce;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f1c40f;
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #e8e0d8;
            font-size: 0.9rem;
            color: #666;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            padding: 16px 0 20px;
            border-bottom: 1px solid #f0e8e0;
            margin-bottom: 18px;
        }
        .friend-link a {
            color: #c0392b;
            text-decoration: none;
            font-weight: 500;
        }
        .friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #999;
        }
        .copyright strong {
            color: #555;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 820px) {
            .container {
                padding: 16px 16px 32px;
                border-radius: 20px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .interact-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 6px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 8px 12px;
                width: 100%;
                border-radius: 12px;
            }
            .search-bar {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 4px 4px 4px 16px;
            }
            .search-bar input {
                padding: 10px 0;
                font-size: 0.95rem;
                min-width: 140px;
            }
            .search-bar button {
                padding: 8px 18px;
                font-size: 0.85rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px 12px 24px;
                margin-top: 10px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                margin: 32px 0 12px;
            }
            h3 {
                font-size: 1.1rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
            .comment-box,
            .rating-box {
                padding: 16px 18px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .img-wrap {
                border-radius: 16px;
                margin: 20px 0;
            }
            .link-list {
                padding: 12px 16px;
            }
        }
