        *,
        *::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: #fbf7f0;
            color: #2e241f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b35c2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3e1f;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #3d2b1f;
            margin: 0.6em 0 0.4em;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #4d3425;
            margin: 1.6em 0 0.5em;
            padding-bottom: 0.2em;
            border-bottom: 3px solid #e8c8a0;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #5a3f2e;
            margin: 1.4em 0 0.4em;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #6b4f3c;
            margin: 1.2em 0 0.3em;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #4a3a30;
            background: #f5ede4;
            padding: 1.2em 1.6em;
            border-radius: 14px;
            border-left: 5px solid #d6976a;
        }
        .highlight {
            background: linear-gradient(to right, #fae4d0, #f5d8be);
            padding: 0.1em 0.4em;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.3em;
            margin-right: 0.15em;
        }
        .site-header {
            background: linear-gradient(135deg, #2c1a12 0%, #4a2f22 100%);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5d8be;
            letter-spacing: -0.03em;
            transition: opacity 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: #e8b88a;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #f5d8be;
        }
        .my-logo span {
            font-weight: 300;
            color: #b88a6a;
            font-size: 0.7em;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8d5c5;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 215, 180, 0.15);
            color: #f5d8be;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5d8be;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 215, 180, 0.1);
        }
        .breadcrumb {
            background: #f3e8dd;
            padding: 10px 0;
            font-size: 0.9rem;
            color: #6b4f3c;
            border-bottom: 1px solid #e5d3c4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b88a6a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #8a6a52;
        }
        .breadcrumb a:hover {
            color: #b35c2e;
        }
        .breadcrumb .current {
            color: #3d2b1f;
            font-weight: 600;
        }
        .featured-image-wrap {
            margin: 2em 0 1.5em;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        .featured-image-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            background: rgba(44, 26, 18, 0.75);
            color: #f5e4d5;
            padding: 10px 18px;
            font-size: 0.9rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(4px);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 2em 0;
        }
        .game-card {
            background: #fffcf8;
            border-radius: 16px;
            padding: 20px 20px 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s, box-shadow 0.25s;
            border: 1px solid #efe3d8;
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
        }
        .game-card h3 {
            margin-top: 0.2em;
            font-size: 1.2rem;
        }
        .game-card i {
            color: #d6976a;
            margin-right: 6px;
        }
        .game-card .meta {
            font-size: 0.85rem;
            color: #8a7a6e;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        .interactive-section {
            background: #fffcf8;
            border-radius: 20px;
            padding: 28px 30px 34px;
            margin: 3em 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #efe3d8;
        }
        .interactive-section h2 {
            border-bottom-color: #dbbca0;
            margin-top: 0.2em;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #4d3425;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e8d5c5;
            border-radius: 10px;
            font-size: 1rem;
            background: #fdfaf7;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #d6976a;
            background: #fff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #b35c2e;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn:hover {
            background: #8a471f;
            transform: scale(1.02);
        }
        .btn-secondary {
            background: #6b4f3c;
        }
        .btn-secondary:hover {
            background: #4d3425;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 6px;
            justify-content: flex-end;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd0c4;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8a84a;
        }
        .interview-block {
            background: #f3e8dd;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 2em 0;
            border-left: 6px solid #d6976a;
            font-style: italic;
        }
        .interview-block .attribution {
            font-style: normal;
            font-weight: 600;
            margin-top: 10px;
            color: #4d3425;
        }
        .interview-block .attribution i {
            color: #b35c2e;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 2em 0;
        }
        .stat-item {
            background: #fffcf8;
            padding: 20px 16px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #efe3d8;
        }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b35c2e;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #6b5a4e;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .site-footer {
            background: #2c1a12;
            color: #d5c0b0;
            padding: 40px 0 30px;
            margin-top: 4em;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .site-footer h4 {
            color: #e8c8a0;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #c8a88a;
        }
        .site-footer a:hover {
            color: #e8c8a0;
        }
        friend-link {
            display: block;
            margin: 6px 0;
        }
        .footer-bottom {
            border-top: 1px solid #4a3428;
            margin-top: 28px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #8a7a6e;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                border-top: 1px solid rgba(255, 215, 180, 0.15);
                margin-top: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 8px;
            }
            .nav-toggle {
                display: block;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 14px;
            }
            .interactive-section {
                padding: 18px 16px 22px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
            .featured-image-wrap figcaption {
                font-size: 0.75rem;
                padding: 6px 12px;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        .last-updated {
            display: inline-block;
            background: #f3e8dd;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #6b4f3c;
            margin-bottom: 1em;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #b35c2e;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: background 0.2s, transform 0.2s;
            z-index: 50;
        }
        .back-to-top:hover {
            background: #8a471f;
            transform: translateY(-3px);
            text-decoration: none;
            color: #fff;
        }
        @media (max-width: 480px) {
            .back-to-top {
                bottom: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 1em 0;
            padding: 0;
            list-style: none;
        }
        .inline-link-list li a {
            background: #f3e8dd;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s;
        }
        .inline-link-list li a:hover {
            background: #e5d3c4;
            text-decoration: none;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6em 0;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #efe3d8;
        }
        th {
            background: #f3e8dd;
            font-weight: 600;
            color: #3d2b1f;
        }
        tr:hover td {
            background: #fdfaf7;
        }
