* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 26px;
            font-weight: bold;
            color: white;
            text-align: center;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        nav ul li {
            margin: 8px 12px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 15px;
            top: 20px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
        }
        h1 {
            color: #c1121f;
            text-align: center;
            margin: 20px 0 35px;
            font-size: 32px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #c1121f;
            margin: 40px 0 20px;
            font-size: 24px;
            border-left: 4px solid #ffb703;
            padding-left: 15px;
            line-height: 1.4;
        }
        h3 {
            color: #7d0633;
            margin: 30px 0 15px;
            font-size: 20px;
            line-height: 1.4;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #c1121f;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 10px 15px;
            background-color: #1d3557;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 17px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #0d1b2a;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.25);
        }
        .btn-download {
            background-color: #457b9d;
        }
        .btn-download:hover {
            background-color: #1d3557;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fff0f3;
            border-radius: 6px;
        }
        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: #c1121f;
            margin-bottom: 8px;
        }
        .review-container {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 4px solid #457b9d;
        }
        .reviewer {
            font-weight: bold;
            color: #1d3557;
            margin-bottom: 5px;
        }
        .rating {
            color: #ffb703;
            margin-bottom: 10px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f1faee;
            color: #1d3557;
            padding: 7px 14px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            border: 1px solid #a8dadc;
        }
        .tag:hover {
            background-color: #1d3557;
            color: white;
            border-color: #1d3557;
        }
        .game-type-nav {
            margin: 25px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #c1121f;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #7d0633;
            text-decoration: underline;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 35px 15px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ffb703;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #457b9d;
            margin-top: 20px;
            font-size: 15px;
            color: #f1faee;
        }
        .recommendation {
            background-color: #f1faee;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            font-size: 17px;
            border: 1px solid #a8dadc;
        }
        .decorative-divider {
            height: 30px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffb703' fill-opacity='0.3' d='M0,192L48,181.3C96,171,192,149,288,149.3C384,149,480,171,576,181.3C672,192,768,192,864,181.3C960,171,1056,149,1152,138.7C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: cover;
            margin: 20px 0;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 8px 0;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 19px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
