body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #f5f5f5; }
        header { background-color: #2c3e50; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px #000; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; }
        .mobile-nav-toggle { display: none; background: #34495e; color: white; border: none; padding: 10px; position: absolute; right: 10px; top: 10px; }
        h1 { color: #e74c3c; margin-bottom: 20px; }
        h2 { color: #2980b9; margin-top: 30px; }
        h3 { color: #27ae60; }
        .download-btn, .login-btn { display: inline-block; background-color: #e74c3c; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-types { margin: 30px 0; }
        .tags { margin: 20px 0; }
        footer { margin-top: 40px; padding: 20px; background-color: #2c3e50; color: white; text-align: center; }
        @media (max-width: 768px) {
            nav { flex-direction: column; display: none; }
            .mobile-nav-toggle { display: block; }
            nav.active { display: flex; }
            body { padding: 10px; }
        }
