        *,
        *::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-color: #f8f6f2;
            color: #1e1e1e;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #922b21;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #0b1e2e;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            border-left: 5px solid #e63946;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0b1e2e 0%, #1a2f42 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.03em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #f1c40f, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo i {
            -webkit-text-fill-color: #e63946;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list li a {
            color: #f0e6d3;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            display: block;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(255, 255, 255, 0.12);
            color: #f1c40f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-toggle {
            display: 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 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #b03a2e;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .hero {
            padding: 3rem 0 2rem;
            background: linear-gradient(180deg, #f0ebe4 0%, #f8f6f2 100%);
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .hero-text .badge {
            display: inline-block;
            background: #e63946;
            color: #fff;
            padding: 0.25rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .hero-text p {
            font-size: 1.1rem;
            color: #2c3e50;
        }
        .hero-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            background: #d9d0c4;
        }
        .hero-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .hero-image:hover img {
            transform: scale(1.02);
        }
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        .hero-stats span {
            font-weight: 700;
            color: #0b1e2e;
        }
        .hero-stats i {
            color: #e63946;
            margin-right: 0.4rem;
        }
        .content-section {
            padding: 2rem 0;
        }
        .section-divider {
            border: none;
            border-top: 2px dashed #d5ccc2;
            margin: 2.5rem 0;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .game-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
            transition: transform 0.25s, box-shadow 0.3s;
            border: 1px solid #ece6de;
        }
        .game-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }
        .game-card .card-icon {
            font-size: 2.2rem;
            color: #e63946;
            margin-bottom: 0.6rem;
        }
        .game-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
        }
        .game-card .rating {
            color: #f1c40f;
            letter-spacing: 2px;
            font-size: 0.95rem;
            margin: 0.3rem 0 0.6rem;
        }
        .game-card .platform {
            display: inline-block;
            background: #eef2f5;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #2c3e50;
        }
        .interview-block {
            background: #eef4f8;
            border-left: 5px solid #e63946;
            padding: 1.8rem 2rem;
            border-radius: 0 12px 12px 0;
            margin: 2rem 0;
        }
        .interview-block blockquote {
            font-style: italic;
            font-size: 1.05rem;
            color: #1a2f42;
            margin: 0.5rem 0;
            padding: 0.5rem 0 0.5rem 1.5rem;
            border-left: 3px solid #c0392b;
        }
        .interview-block .attribution {
            font-weight: 600;
            margin-top: 0.8rem;
            color: #0b1e2e;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 500px;
        }
        .data-table th {
            background: #0b1e2e;
            color: #fff;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #ece6de;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f8f3ed;
        }
        .tips-list {
            list-style: none;
            padding: 0;
            display: grid;
            gap: 1rem;
        }
        .tips-list li {
            background: #fff;
            padding: 1rem 1.5rem 1rem 2.8rem;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            position: relative;
            font-weight: 500;
        }
        .tips-list li::before {
            content: "⚾";
            position: absolute;
            left: 1rem;
            top: 1rem;
            font-size: 1.2rem;
        }
        .interactive-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .interactive-card {
            background: #fff;
            padding: 1.8rem 2rem;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #ece6de;
        }
        .interactive-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interactive-card form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .interactive-card input,
        .interactive-card textarea,
        .interactive-card select {
            padding: 0.7rem 1rem;
            border: 1px solid #d5ccc2;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #faf8f6;
            transition: border 0.25s;
        }
        .interactive-card input:focus,
        .interactive-card textarea:focus,
        .interactive-card select:focus {
            outline: none;
            border-color: #e63946;
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
        }
        .interactive-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn {
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
        }
        .btn-primary {
            background: #e63946;
            color: #fff;
        }
        .btn-primary:hover {
            background: #c0392b;
            transform: scale(1.02);
        }
        .btn-secondary {
            background: #0b1e2e;
            color: #fff;
        }
        .btn-secondary:hover {
            background: #1a2f42;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd6cc;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f1c40f;
        }
        .related-links {
            background: #f0ebe4;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .related-links h4 {
            margin-top: 0;
        }
        .related-links ul {
            columns: 2 220px;
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
        }
        .related-links li {
            padding: 0.25rem 0;
            break-inside: avoid;
        }
        .related-links li a {
            font-weight: 500;
        }
        .related-links li a::before {
            content: "▸ ";
            color: #e63946;
        }
        .site-footer {
            background: #0b1e2e;
            color: #d5ccc2;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
            border-top: 4px solid #e63946;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f1c40f;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #c5b8a8;
        }
        .site-footer a:hover {
            color: #f1c40f;
        }
        .friend-link {
            display: block;
            padding: 0.3rem 0;
        }
        .friend-link a::before {
            content: "⚾ ";
        }
        .footer-bottom {
            border-top: 1px solid #2a4055;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #9a8f84;
        }
        .footer-bottom .copyright {
            font-weight: 400;
        }
        @media (max-width: 900px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .interactive-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0b1e2e;
                padding: 0.5rem 0;
                border-radius: 0 0 12px 12px;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            .nav-list li a {
                padding: 0.8rem 1.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .nav-list li:last-child a {
                border-bottom: none;
            }
            .nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                position: relative;
            }
            .header-inner {
                position: relative;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
            .related-links ul {
                columns: 1;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.6rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .hero {
                padding: 2rem 0 1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .interview-block {
                padding: 1rem 1.2rem;
            }
            .interactive-card {
                padding: 1.2rem;
            }
        }
        .text-muted {
            color: #6b7a8a;
            font-size: 0.9rem;
        }
        .last-updated {
            display: inline-block;
            background: #e8e2da;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #4a3f36;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .eeat-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: #f0ebe4;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .eeat-author .avatar {
            font-size: 2.5rem;
            color: #e63946;
        }
        .eeat-author .info strong {
            display: block;
            font-size: 1.05rem;
            color: #0b1e2e;
        }
        .eeat-author .info span {
            font-size: 0.9rem;
            color: #5a4f44;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
