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; padding: 15px 0; border-bottom: 2px solid #0077b6; }
        .logo { font-size: 28px; font-weight: bold; color: #0077b6; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #0077b6; font-weight: 500; }
        .mobile-menu-btn { display: none; background: #0077b6; color: white; border: none; padding: 8px 12px; border-radius: 5px; }
        h1 { color: #0077b6; margin-bottom: 20px; }
        h2 { color: #00b4d8; margin-top: 30px; }
        h3 { color: #90e0ef; margin-top: 25px; }
        .download-btn, .login-btn { display: inline-block; background: #0077b6; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .game-stats { background: #f8f9fa; padding: 15px; border-radius: 8px; margin: 20px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #ddd; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #e0f7fa; padding: 5px 10px; margin-right: 8px; border-radius: 20px; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; width: 100%; }
            nav.active ul { display: flex; }
            .mobile-menu-btn { display: block; }
            header { flex-direction: column; align-items: flex-start; }
        }
