body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #FFF9E6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .header { background-color: #FF6B6B; color: white; padding: 15px 0; text-align: center; position: relative; }
        .header h1 { margin: 0; font-size: 2.2em; }
        .logo-text { font-weight: bold; font-size: 1.5em; }
        .nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        .nav a { color: white; text-decoration: none; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 20px; background: none; border: none; color: white; font-size: 1.5em; }
        .content { background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); margin-top: 20px; }
        .download-btn, .login-btn { display: inline-block; padding: 10px 20px; background-color: #4CAF50; color: white; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .login-btn { background-color: #2196F3; }
        .game-stats { background-color: #FFF3CD; padding: 15px; border-radius: 5px; margin: 15px 0; }
        .player-reviews { margin: 20px 0; }
        .review { border-bottom: 1px solid #eee; padding: 10px 0; }
        .footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 20px; }
        .footer a { color: #FFD700; text-decoration: none; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 15px 0; }
        @media (max-width: 768px) {
            .nav { flex-direction: column; display: none; }
            .nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .header h1 { font-size: 1.8em; }
        }
