*,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #f8f7f4;
            color: #1e1e2a;
            line-height: 1.8;
            padding: 0 1rem;
        }
        a {
            color: #1a4b8c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #c0392b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
            color: #fff;
            padding: 1rem 0 0.6rem;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 10;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f9d423, #ff4e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            display: block;
            -webkit-text-fill-color: #b0c4de;
            color: #b0c4de;
            letter-spacing: 0.5px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .nav-list a {
            color: #e8edf3;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-list a:hover {
            border-bottom-color: #f9d423;
            color: #f9d423;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 0.8rem 1.5rem 0.4rem;
            font-size: 0.85rem;
            color: #b0c4de;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #b0c4de;
        }
        .breadcrumb a:hover {
            color: #f9d423;
        }
        .breadcrumb span {
            color: #e8edf3;
        }
        main {
            padding: 2.5rem 0 3rem;
        }
        section {
            margin-bottom: 3.5rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #0b1a2e;
            letter-spacing: -0.5px;
        }
        h1 .highlight {
            background: linear-gradient(to right, #f9d423, #ff4e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.2rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #e0dcd3;
            color: #0b1a2e;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem;
            color: #1a3a5c;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: #2c3e50;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #2c3e50;
            max-width: 800px;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            font-size: 0.9rem;
            color: #5a6a7a;
            margin-bottom: 1.5rem;
            padding: 0.6rem 0;
            border-top: 1px solid #e0dcd3;
            border-bottom: 1px solid #e0dcd3;
        }
        .meta-info i {
            margin-right: 0.4rem;
            color: #1a4b8c;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .game-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.25s, box-shadow 0.3s;
            border: 1px solid #eeeae3;
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
        }
        .game-card i {
            font-size: 2.2rem;
            color: #1a4b8c;
            margin-bottom: 0.8rem;
        }
        .game-card h3 {
            margin-top: 0;
        }
        .hero-img-wrap {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #dce3ed;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-img-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(11, 26, 46, 0.7);
            color: #fff;
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            backdrop-filter: blur(4px);
        }
        .feature-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .feature-list li {
            padding: 0.8rem 1.2rem;
            background: #fff;
            border-radius: 10px;
            border-left: 4px solid #f9d423;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            font-weight: 500;
        }
        .feature-list li i {
            color: #1a4b8c;
            margin-right: 0.6rem;
        }
        .interview-block {
            background: #eef3f9;
            padding: 2rem 2rem 1.5rem;
            border-radius: 16px;
            margin: 2rem 0;
            border-left: 6px solid #1a4b8c;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #1e2a3a;
        }
        .interview-block .attribution {
            margin-top: 0.8rem;
            font-weight: 600;
            color: #0b1a2e;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            max-width: 600px;
            margin: 1.5rem 0 2rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d0d5dd;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #1a4b8c;
            box-shadow: 0 0 0 4px rgba(26, 75, 140, 0.1);
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #1a4b8c;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: #0b2d5a;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            background: #fff;
            padding: 2rem 2rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            margin: 2.5rem 0;
            border: 1px solid #eeeae3;
        }
        .comment-section h2,
        .rating-section h2 {
            border-bottom: none;
            margin-top: 0;
            padding-bottom: 0;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 650px;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            padding: 0.8rem 1.2rem;
            border: 2px solid #d0d5dd;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus {
            border-color: #1a4b8c;
            box-shadow: 0 0 0 4px rgba(26, 75, 140, 0.08);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 0.8rem 2.5rem;
            background: #1a4b8c;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #0b2d5a;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #f1c40f;
            margin: 0.3rem 0;
        }
        .site-footer {
            background: #0b1a2e;
            color: #cbd5e1;
            padding: 2.5rem 1.5rem 1.8rem;
            border-radius: 24px 24px 0 0;
            margin-top: 2rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem 3rem;
        }
        .footer-inner h4 {
            color: #f9d423;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #b0c4de;
            display: inline-block;
            margin-bottom: 0.4rem;
        }
        .footer-inner a:hover {
            color: #f9d423;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.5rem;
            margin-bottom: 0.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #1e3a5c;
            font-size: 0.85rem;
            color: #8a9bb0;
        }
        .copyright a {
            color: #8a9bb0;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.5rem;
            }
            .header-inner {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                background: #0b1a2e;
                padding: 1.2rem 1.5rem;
                border-radius: 0 0 16px 16px;
                width: 100%;
                gap: 0.8rem;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrap {
                position: relative;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .game-grid {
                grid-template-columns: 1fr;
            }
            .interview-block {
                padding: 1.5rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.5rem;
            }
            .hero-img-wrap .img-caption {
                position: relative;
                background: #0b1a2e;
                padding: 0.6rem 1rem;
            }
            .breadcrumb {
                padding: 0.5rem 0.8rem;
                font-size: 0.75rem;
            }
            .meta-info {
                font-size: 0.8rem;
                gap: 0.5rem 1rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none;
            }
            .nav-list {
                display: flex !important;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            align-items: center;
        }
        .tag {
            background: #eef3f9;
            color: #1a4b8c;
            padding: 0.2rem 0.9rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .last-updated {
            display: inline-block;
            background: #f0f2f5;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #3a4a5a;
        }
