        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            background: #f9f7f2;
            color: #1e1e2a;
            padding: 0 16px;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #e67e22;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
            color: #0f0f1a;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #e67e22;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #c0392b;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 1.4rem;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            padding: 20px 24px 40px;
            margin: 16px 0 40px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #eae5db;
            position: relative;
            background: #f9f7f2;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1a1a2e;
            transition: transform 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #c0392b;
        }
        .my-logo i {
            color: #e67e22;
            font-size: 1.8rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, #c0392b, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .main-nav {
            display: flex;
            gap: 6px 14px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
        }
        .main-nav li a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 30px;
            background: transparent;
            transition: background 0.25s, color 0.25s;
            color: #1e1e2a;
        }
        .main-nav li a:hover,
        .main-nav li a:focus {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #1a1a2e;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eae5db;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            width: 100%;
            font-size: 0.85rem;
            padding: 8px 0 4px;
            color: #5a5a6a;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: #5a5a6a;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .sep {
            color: #aaa;
        }
        .search-section {
            background: #eae5db;
            border-radius: 16px;
            padding: 24px 20px;
            margin: 24px 0 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }
        .search-section form {
            display: flex;
            flex: 1 1 300px;
            gap: 8px;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #ccc;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .search-section input[type="text"]:focus {
            border-color: #c0392b;
        }
        .search-section button {
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 12px 24px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 18px;
            background: #fff4e6;
            border-radius: 16px;
            padding: 14px 20px;
            margin: 20px 0 24px;
        }
        .rating-area .stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #e67e22;
            cursor: pointer;
        }
        .rating-area .stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-area .stars i:hover {
            transform: scale(1.3);
            color: #f39c12;
        }
        .rating-area .stars i.active {
            color: #f39c12;
        }
        .rating-area .score-text {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1a1a2e;
        }
        .rating-area form {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .rating-area form input[type="number"] {
            width: 80px;
            padding: 8px 10px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            text-align: center;
        }
        .rating-area form button {
            background: #1a1a2e;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 8px 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-area form button:hover {
            background: #c0392b;
        }
        .comment-section {
            background: #f5f0ea;
            border-radius: 16px;
            padding: 24px 20px;
            margin: 24px 0 28px;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-section form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 600px;
        }
        .comment-section textarea {
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 1rem;
            min-height: 110px;
            resize: vertical;
            font-family: inherit;
            transition: border 0.3s;
        }
        .comment-section textarea:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-section input[type="text"] {
            padding: 12px 18px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-section input[type="text"]:focus {
            border-color: #c0392b;
            outline: none;
        }
        .comment-section button {
            align-self: flex-start;
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 12px 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-section button:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .featured-image {
            margin: 28px 0 24px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            background: #f5f0ea;
            font-size: 0.9rem;
            color: #4a4a5a;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #1a1a2e;
            color: #fff;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 24px;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .data-table thead {
            background: #1a1a2e;
            color: #fff;
        }
        .data-table th,
        .data-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #eae5db;
        }
        .data-table tbody tr:hover {
            background: #f9f4ee;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px 16px;
            list-style: none;
            padding: 0;
            margin: 16px 0 20px;
        }
        .links-grid li a {
            display: block;
            padding: 8px 14px;
            background: #f5f0ea;
            border-radius: 30px;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
        }
        .links-grid li a:hover {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
        }
        .site-footer {
            border-top: 2px solid #eae5db;
            padding: 28px 0 20px;
            margin-top: 32px;
            font-size: 0.95rem;
        }
        .site-footer friend-link {
            display: block;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .site-footer friend-link a {
            display: inline-block;
            margin: 0 8px 4px 0;
            padding: 4px 12px;
            background: #eae5db;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.9rem;
        }
        .site-footer friend-link a:hover {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            color: #5a5a6a;
            font-size: 0.85rem;
            padding-top: 12px;
            border-top: 1px solid #eae5db;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 16px 14px 30px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .site-header {
                padding: 12px 0 8px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hamburger {
                display: inline-block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 12px 0 16px;
                border-radius: 0 0 16px 16px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                margin-top: 8px;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .main-nav li a {
                padding: 10px 16px;
                font-size: 1rem;
            }
            .search-section {
                flex-direction: column;
                padding: 18px 16px;
            }
            .search-section form {
                width: 100%;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
            }
            .links-grid {
                grid-template-columns: 1fr 1fr;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 480px) {
            .links-grid {
                grid-template-columns: 1fr;
            }
            .rating-area .stars {
                font-size: 1.3rem;
            }
            .comment-section form {
                width: 100%;
            }
            .search-section button {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
        }
        .highlight {
            background: linear-gradient(120deg, #fce4d6 0%, #fce4d6 40%, transparent 80%);
            padding: 0 4px;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: #eae5db;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #1a1a2e;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-1 {
            margin-bottom: 0.6rem;
        }
