body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: linear-gradient(135deg, #ff6b35, #ff3366); color: white; padding: 20px 0; text-align: center; position: relative; }
        .logo { font-size: 2.5rem; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 25px; margin-top: 15px; }
        nav a { color: white; text-decoration: none; font-weight: 600; }
        .mobile-menu-btn { display: none; position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.2); border: none; color: white; padding: 8px 12px; border-radius: 5px; }
        h1 { color: #ff3366; margin: 30px 0 20px; }
        h2 { color: #ff6b35; margin: 25px 0 15px; }
        h3 { color: #ff9e7d; margin: 20px 0 10px; }
        .download-btn, .login-btn { display: inline-block; background: #ff3366; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 30px; text-decoration: none; font-weight: bold; }
        .stats-box { background: #f8f8f8; padding: 20px; border-radius: 10px; margin: 20px 0; }
        .player-review { background: #fff8f0; padding: 15px; border-left: 4px solid #ff6b35; margin: 15px 0; }
        img { max-width: 100%; height: auto; border-radius: 10px; margin: 20px 0; }
        footer { background: #333; color: white; padding: 30px 0; text-align: center; margin-top: 40px; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav { flex-direction: column; display: none; }
            nav.active { display: flex; }
            .logo { font-size: 2rem; }
        }
