        *,
        *::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: #f8f6f2;
            color: #1e2a3a;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #8b2c1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 1.5rem 2rem 2.5rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 1.2rem;
            border-bottom: 2px solid #e8e3dc;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c44536, #e07a5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e2a3a;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #e8e3dc;
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 1.2rem;
            align-items: center;
        }
        .primary-nav a {
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .primary-nav a:hover {
            background: #f0ebe4;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 1rem;
            font-size: 0.85rem;
            color: #6b7a8a;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #bcc5ce;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #6b7a8a;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb .active {
            color: #1e2a3a;
            font-weight: 600;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.2rem 0 0.8rem;
            color: #1a1a2e;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 2.2rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #e8e3dc;
            color: #1e2a3a;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 1.6rem 0 0.6rem;
            color: #2d3a4a;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.2rem 0 0.4rem;
            color: #3d4a5a;
        }
        p {
            margin-bottom: 1.1rem;
            color: #2d3a4a;
        }
        .lead {
            font-size: 1.18rem;
            font-weight: 400;
            color: #3d4a5a;
            border-left: 4px solid #c44536;
            padding-left: 1.2rem;
            margin: 1.5rem 0 1.8rem;
        }
        .featured-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem 0.2rem;
            font-size: 0.9rem;
            color: #6b7a8a;
            font-style: italic;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            margin: 1.6rem 0 1.2rem;
            max-width: 500px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #dcd6ce;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c44536;
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #8b2c1a;
        }
        .feedback-section {
            background: #f8f6f2;
            border-radius: 20px;
            padding: 2rem 2rem 2.2rem;
            margin: 3rem 0 1.5rem;
        }
        .feedback-section h2 {
            border-bottom-color: #c44536;
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e2a3a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dcd6ce;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #c44536;
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #dcd6ce;
            cursor: pointer;
            user-select: none;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f4b942;
        }
        .star-rating i:hover {
            transform: scale(1.15);
        }
        .btn-submit {
            padding: 0.8rem 2.4rem;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .btn-submit:hover {
            background: #8b2c1a;
            transform: translateY(-2px);
        }
        .related-links {
            background: #f0ebe4;
            border-radius: 16px;
            padding: 1.4rem 1.8rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
        }
        .related-links a {
            font-weight: 500;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .related-links a::before {
            content: "🎮";
            font-size: 1rem;
        }
        .site-footer {
            margin-top: 3rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e8e3dc;
            font-size: 0.9rem;
            color: #6b7a8a;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
            font-weight: 500;
        }
        .friend-link a {
            color: #6b7a8a;
            border-bottom: 1px dashed #dcd6ce;
        }
        .friend-link a:hover {
            color: #c44536;
            border-bottom-color: #c44536;
        }
        .copyright {
            padding-top: 1rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8a9aa8;
            width: 100%;
        }
        @media (max-width: 768px) {
            .container {
                padding: 1rem 1.2rem 1.8rem;
                border-radius: 16px;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.4rem;
                gap: 0.6rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                font-size: 1.05rem;
                padding: 0.4rem 0.8rem;
                width: 100%;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.45rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .feedback-section {
                padding: 1.5rem 1.2rem;
            }
            .search-form {
                max-width: 100%;
                flex-wrap: wrap;
            }
            .search-form button {
                flex: 1;
            }
            .related-links {
                flex-direction: column;
                gap: 0.6rem;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                gap: 1rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 0.8rem 0.8rem 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #e8e3dc;
            padding: 0.3rem 1rem 0.3rem 0.8rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #5a6a7a;
            font-weight: 500;
            margin-bottom: 0.8rem;
        }
        .emoji-big {
            font-size: 1.4em;
            line-height: 1;
            display: inline-block;
        }
        .highlight-box {
            background: #fdf8f3;
            border-left: 5px solid #c44536;
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            margin: 1.4rem 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 1.4rem 0;
        }
        @media (max-width: 600px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 0.8rem;
            border: 1px solid #e0d9d0;
            text-align: left;
        }
        th {
            background: #f0ebe4;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #faf8f5;
        }
