body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(135deg, #FF4D4D, #F9CB28); color: white; padding: 15px; border-radius: 8px; margin-bottom: 30px; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav a { color: white; text-decoration: none; margin-left: 15px; font-weight: 500; }
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { color: #FF4D4D; font-size: 32px; margin-bottom: 20px; }
        h2 { color: #F9CB28; font-size: 24px; margin: 25px 0 15px; }
        h3 { color: #333; font-size: 20px; margin: 20px 0 10px; }
        .download-btn, .login-btn { display: inline-block; background: #FF4D4D; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; margin: 15px 0; }
        .download-btn:hover, .login-btn:hover { background: #F9CB28; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-stats { background: #f5f5f5; padding: 15px; border-radius: 8px; margin: 20px 0; }
        footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee; text-align: center; }
        @media (max-width: 768px) {
            header { flex-direction: column; align-items: flex-start; }
            .mobile-menu-btn { display: block; position: absolute; top: 20px; right: 20px; }
            nav { display: none; width: 100%; margin-top: 15px; }
            nav.active { display: block; }
            nav a { display: block; margin: 10px 0; }
            h1 { font-size: 28px; }
            h2 { font-size: 22px; }
        }
