body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #FF4E50, #F9D423); padding: 15px; border-radius: 10px; margin-bottom: 25px; }
        .logo { font-size: 28px; font-weight: bold; color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-toggle { display: none; background: white; padding: 8px; border-radius: 5px; cursor: pointer; }
        .menu { display: flex; list-style: none; gap: 20px; }
        .menu li a { color: white; text-decoration: none; font-weight: 500; }
        h1 { color: #FF4E50; margin-top: 0; }
        h2 { color: #F9D423; border-bottom: 2px solid #FF4E50; padding-bottom: 5px; }
        h3 { color: #4A90E2; }
        .download-btn { background: #4CAF50; color: white; padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: bold; display: inline-block; margin: 15px 0; }
        .login-btn { background: #2196F3; color: white; padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: bold; display: inline-block; margin: 15px 0; }
        .game-stats { background: #f8f8f8; padding: 15px; border-radius: 8px; margin: 20px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 15px 0; }
        footer { margin-top: 40px; padding-top: 20px; border-top: 2px solid #eee; }
        .copyright { font-size: 12px; color: #777; margin-top: 20px; }
        @media (max-width: 768px) {
            .menu { display: none; flex-direction: column; gap: 10px; }
            .menu.active { display: flex; }
            .mobile-toggle { display: block; }
            header { padding: 10px; }
            .logo { font-size: 22px; }
        }
