body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FF6B35;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            right: 20px;
            top: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1 {
            color: #FF6B35;
            border-bottom: 3px solid #FF6B35;
            padding-bottom: 10px;
        }
        h2 {
            color: #E84A5F;
            margin-top: 30px;
        }
        h3 {
            color: #2A363B;
        }
        .download-btn {
            display: inline-block;
            background-color: #FF6B35;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            margin: 15px 0;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #2A363B;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            margin: 15px 10px;
            font-weight: bold;
        }
        .game-stats {
            background-color: #FFF3BF;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .player-review {
            background-color: #E8F8F5;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #2ECC71;
        }
        .localization-diff {
            background-color: #F8D7DA;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #DC3545;
        }
        footer {
            background-color: #2A363B;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }
        .tag {
            display: inline-block;
            background-color: #E84A5F;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .download-btn, .login-btn {
                display: block;
                width: 80%;
                margin: 10px auto;
                text-align: center;
            }
        }
