| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Mangoma | Lo-Fi Music Styles</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); |
| |
| body { |
| font-family: 'Poppins', sans-serif; |
| background-color: #0f0e17; |
| color: #fffffe; |
| } |
| |
| .gradient-bg { |
| background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); |
| } |
| |
| .style-card { |
| transition: all 0.3s ease; |
| position: relative; |
| overflow: hidden; |
| } |
| |
| .style-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); |
| } |
| |
| .style-card::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7)); |
| z-index: 1; |
| } |
| |
| .style-content { |
| position: relative; |
| z-index: 2; |
| } |
| |
| .style-tag { |
| position: absolute; |
| top: 15px; |
| right: 15px; |
| background-color: rgba(0, 180, 216, 0.9); |
| color: white; |
| padding: 4px 10px; |
| border-radius: 20px; |
| font-size: 12px; |
| font-weight: 600; |
| } |
| |
| .bpm-indicator { |
| background-color: rgba(255, 255, 255, 0.2); |
| backdrop-filter: blur(5px); |
| border-radius: 20px; |
| padding: 2px 10px; |
| font-size: 12px; |
| } |
| |
| .instrument-tag { |
| background-color: rgba(255, 255, 255, 0.1); |
| border-radius: 15px; |
| padding: 3px 10px; |
| font-size: 12px; |
| margin-right: 5px; |
| margin-bottom: 5px; |
| display: inline-block; |
| } |
| |
| .style-bg-1 { |
| background-image: url('https://images.unsplash.com/photo-1514525253161-7a3d1b432d0e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| |
| .style-bg-2 { |
| background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| |
| .style-bg-3 { |
| background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| |
| .style-bg-4 { |
| background-image: url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| |
| .style-bg-5 { |
| background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| |
| .style-bg-6 { |
| background-image: url('https://images.unsplash.com/photo-1514525253161-7a3d1b432d0e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| |
| .style-bg-7 { |
| background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| |
| .style-bg-8 { |
| background-image: url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| |
| .active-nav { |
| color: #00b4d8; |
| position: relative; |
| } |
| |
| .active-nav::after { |
| content: ''; |
| position: absolute; |
| bottom: -5px; |
| left: 0; |
| width: 100%; |
| height: 2px; |
| background-color: #00b4d8; |
| } |
| </style> |
| </head> |
| <body class="min-h-screen gradient-bg"> |
| |
| <nav class="px-6 py-4 flex justify-between items-center"> |
| <div class="flex items-center space-x-2"> |
| <i class="fas fa-headphones text-2xl text-cyan-400"></i> |
| <span class="text-xl font-bold">Mangoma</span> |
| </div> |
| <div class="hidden md:flex space-x-6"> |
| <a href="index.html" class="hover:text-cyan-400 transition">Home</a> |
| <a href="styles.html" class="hover:text-cyan-400 transition active-nav">Lo-Fi Styles</a> |
| </div> |
| <div class="flex items-center space-x-4"> |
| <button class="px-4 py-2 rounded-full bg-cyan-400 text-white hover:bg-cyan-500 transition"> |
| Generate Lo-Fi |
| </button> |
| </div> |
| </nav> |
|
|
| |
| <section class="container mx-auto px-6 py-16 text-center"> |
| <h1 class="text-5xl md:text-6xl font-bold mb-6">Explore <span class="text-cyan-400">Lo-Fi Styles</span></h1> |
| <p class="text-xl md:text-2xl text-gray-300 mb-10 max-w-3xl mx-auto"> |
| Discover the perfect lo-fi instrumental style for your mood and activities. |
| </p> |
| <div class="flex justify-center"> |
| <div class="relative max-w-xl w-full"> |
| <input type="text" placeholder="Search lo-fi styles..." class="w-full px-6 py-4 rounded-full bg-gray-800 bg-opacity-50 border border-gray-700 focus:border-cyan-400 focus:outline-none text-white"> |
| <button class="absolute right-3 top-3 bg-cyan-400 text-white rounded-full p-3 hover:bg-cyan-500 transition"> |
| <i class="fas fa-search"></i> |
| </button> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="container mx-auto px-6 py-12"> |
| <div class="mb-12"> |
| <h2 class="text-3xl font-bold mb-6">Popular Lo-Fi Styles</h2> |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> |
| |
| <div class="style-card style-bg-1 rounded-xl p-6 h-80 flex flex-col justify-end cursor-pointer"> |
| <span class="style-tag">Most Popular</span> |
| <div class="style-content"> |
| <h3 class="text-2xl font-bold mb-2">Study Focus</h3> |
| <p class="text-gray-300 mb-4">Minimal beats with soft piano and gentle rhythms to help you concentrate.</p> |
| <div class="flex items-center mb-3"> |
| <span class="bpm-indicator mr-3">75-85 BPM</span> |
| <div class="flex space-x-1"> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| </div> |
| </div> |
| <div class="flex flex-wrap"> |
| <span class="instrument-tag">Rhodes Piano</span> |
| <span class="instrument-tag">Soft Drums</span> |
| <span class="instrument-tag">Vinyl Crackle</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="style-card style-bg-2 rounded-xl p-6 h-80 flex flex-col justify-end cursor-pointer"> |
| <div class="style-content"> |
| <h3 class="text-2xl font-bold mb-2">Jazzy Lo-Fi</h3> |
| <p class="text-gray-300 mb-4">Complex jazz chords with swung rhythms and upright bass.</p> |
| <div class="flex items-center mb-3"> |
| <span class="bpm-indicator mr-3">90-100 BPM</span> |
| <div class="flex space-x-1"> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star-half-alt text-yellow-400"></i> |
| </div> |
| </div> |
| <div class="flex flex-wrap"> |
| <span class="instrument-tag">Jazz Guitar</span> |
| <span class="instrument-tag">Upright Bass</span> |
| <span class="instrument-tag">Brush Drums</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="style-card style-bg-3 rounded-xl p-6 h-80 flex flex-col justify-end cursor-pointer"> |
| <div class="style-content"> |
| <h3 class="text-2xl font-bold mb-2">Rainy Day</h3> |
| <p class="text-gray-300 mb-4">Ambient textures with rain sounds and melancholic melodies.</p> |
| <div class="flex items-center mb-3"> |
| <span class="bpm-indicator mr-3">70-80 BPM</span> |
| <div class="flex space-x-1"> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="far fa-star text-yellow-400"></i> |
| </div> |
| </div> |
| <div class="flex flex-wrap"> |
| <span class="instrument-tag">Piano</span> |
| <span class="instrument-tag">Rain Sounds</span> |
| <span class="instrument-tag">Muted Drums</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="style-card style-bg-4 rounded-xl p-6 h-80 flex flex-col justify-end cursor-pointer"> |
| <span class="style-tag">New</span> |
| <div class="style-content"> |
| <h3 class="text-2xl font-bold mb-2">Night Vibes</h3> |
| <p class="text-gray-300 mb-4">Slow, dreamy beats with warm bass and atmospheric pads.</p> |
| <div class="flex items-center mb-3"> |
| <span class="bpm-indicator mr-3">65-75 BPM</span> |
| <div class="flex space-x-1"> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| </div> |
| </div> |
| <div class="flex flex-wrap"> |
| <span class="instrument-tag">Warm Synths</span> |
| <span class="instrument-tag">Deep Bass</span> |
| <span class="instrument-tag">Soft Snare</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mb-12"> |
| <h2 class="text-3xl font-bold mb-6">More Lo-Fi Styles</h2> |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> |
| |
| <div class="style-card style-bg-5 rounded-xl p-6 h-80 flex flex-col justify-end cursor-pointer"> |
| <div class="style-content"> |
| <h3 class="text-2xl font-bold mb-2">Chillhop</h3> |
| <p class="text-gray-300 mb-4">Relaxed beats with hip-hop influences and smooth instrumentation.</p> |
| <div class="flex items-center mb-3"> |
| <span class="bpm-indicator mr-3">85-95 BPM</span> |
| <div class="flex space-x-1"> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="far fa-star text-yellow-400"></i> |
| </div> |
| </div> |
| <div class="flex flex-wrap"> |
| <span class="instrument-tag">Smooth Bass</span> |
| <span class="instrument-tag">Jazzy Keys</span> |
| <span class="instrument-tag">Hip-Hop Drums</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="style-card style-bg-6 rounded-xl p-6 h-80 flex flex-col justify-end cursor-pointer"> |
| <div class="style-content"> |
| <h3 class="text-2xl font-bold mb-2">Ambient Lo-Fi</h3> |
| <p class="text-gray-300 mb-4">Ethereal soundscapes with minimal rhythmic elements.</p> |
| <div class="flex items-center mb-3"> |
| <span class="bpm-indicator mr-3">60-70 BPM</span> |
| <div class="flex space-x-1"> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star-half-alt text-yellow-400"></i> |
| <i class="far fa-star text-yellow-400"></i> |
| </div> |
| </div> |
| <div class="flex flex-wrap"> |
| <span class="instrument-tag">Atmospheric Pads</span> |
| <span class="instrument-tag">Field Recordings</span> |
| <span class="instrument-tag">Subtle Percussion</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="style-card style-bg-7 rounded-xl p-6 h-80 flex flex-col justify-end cursor-pointer"> |
| <div class="style-content"> |
| <h3 class="text-2xl font-bold mb-2">Coffee Shop</h3> |
| <p class="text-gray-300 mb-4">Light, upbeat instrumentals with acoustic elements.</p> |
| <div class="flex items-center mb-3"> |
| <span class="bpm-indicator mr-3">90-100 BPM</span> |
| <div class="flex space-x-1"> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| </div> |
| </div> |
| <div class="flex flex-wrap"> |
| <span class="instrument-tag">Acoustic Guitar</span> |
| <span class="instrument-tag">Light Piano</span> |
| <span class="instrument-tag">Brush Snare</span> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="style-card style-bg-8 rounded-xl p-6 h-80 flex flex-col justify-end cursor-pointer"> |
| <span class="style-tag">Experimental</span> |
| <div class="style-content"> |
| <h3 class="text-2xl font-bold mb-2">Glitch Hop</h3> |
| <p class="text-gray-300 mb-4">Digital textures with broken beats and electronic elements.</p> |
| <div class="flex items-center mb-3"> |
| <span class="bpm-indicator mr-3">95-105 BPM</span> |
| <div class="flex space-x-1"> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="fas fa-star text-yellow-400"></i> |
| <i class="far fa-star text-yellow-400"></i> |
| </div> |
| </div> |
| <div class="flex flex-wrap"> |
| <span class="instrument-tag">Glitch Effects</span> |
| <span class="instrument-tag">Synth Bass</span> |
| <span class="instrument-tag">Electronic Drums</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center"> |
| <button class="px-8 py-4 rounded-full bg-transparent border border-cyan-400 text-cyan-400 text-lg font-semibold hover:bg-cyan-400 hover:text-white transition"> |
| Load More Styles |
| </button> |
| </div> |
| </section> |
|
|
| |
| <section class="container mx-auto px-6 py-16"> |
| <div class="bg-gray-800 bg-opacity-50 rounded-2xl p-8 shadow-xl"> |
| <h2 class="text-3xl font-bold mb-8 text-center">About Lo-Fi Instrumentation</h2> |
| |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-8"> |
| <div> |
| <h3 class="text-xl font-semibold mb-4 text-cyan-400">Common Lo-Fi Instruments</h3> |
| <ul class="space-y-4"> |
| <li class="flex items-start"> |
| <i class="fas fa-piano text-lg text-cyan-400 mr-3 mt-1"></i> |
| <div> |
| <h4 class="font-medium">Rhodes/Wurlitzer Electric Piano</h4> |
| <p class="text-gray-400">Warm, slightly distorted electric piano tones are a staple of lo-fi beats.</p> |
| </div> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-guitar text-lg text-cyan-400 mr-3 mt-1"></i> |
| <div> |
| <h4 class="font-medium">Jazz Guitar</h4> |
| <p class="text-gray-400">Clean or slightly overdriven jazz guitar chords add harmonic richness.</p> |
| </div> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-drum text-lg text-cyan-400 mr-3 mt-1"></i> |
| <div> |
| <h4 class="font-medium">Vinyl Drum Kits</h4> |
| <p class="text-gray-400">Sampled drum breaks with vinyl noise and imperfect timing.</p> |
| </div> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-wave-square text-lg text-cyan-400 mr-3 mt-1"></i> |
| <div> |
| <h4 class="font-medium">Analog Synths</h4> |
| <p class="text-gray-400">Warm pad sounds from vintage synthesizers.</p> |
| </div> |
| </li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-xl font-semibold mb-4 text-cyan-400">Production Techniques</h3> |
| <ul class="space-y-4"> |
| <li class="flex items-start"> |
| <i class="fas fa-record-vinyl text-lg text-cyan-400 mr-3 mt-1"></i> |
| <div> |
| <h4 class="font-medium">Vinyl Simulation</h4> |
| <p class="text-gray-400">Adding crackle, pops, and wow/flutter to emulate vintage records.</p> |
| </div> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-filter text-lg text-cyan-400 mr-3 mt-1"></i> |
| <div> |
| <h4 class="font-medium">Low-Pass Filtering</h4> |
| <p class="text-gray-400">Rolling off high frequencies to create a "distant" sound.</p> |
| </div> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-sliders-h text-lg text-cyan-400 mr-3 mt-1"></i> |
| <div> |
| <h4 class="font-medium">Tape Saturation</h4> |
| <p class="text-gray-400">Adding warmth and subtle distortion through tape emulation.</p> |
| </div> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-random text-lg text-cyan-400 mr-3 mt-1"></i> |
| <div> |
| <h4 class="font-medium">Imperfect Timing</h4> |
| <p class="text-gray-400">Slight humanization of rhythms for an organic feel.</p> |
| </div> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="container mx-auto px-6 py-16 text-center"> |
| <h2 class="text-3xl font-bold mb-6">Ready to Create Your Lo-Fi Beat?</h2> |
| <p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto"> |
| Generate custom lo-fi instrumentals tailored to your exact preferences. |
| </p> |
| <button class="px-8 py-4 rounded-full bg-cyan-400 text-white text-lg font-semibold hover:bg-cyan-500 transition"> |
| Start Creating Now |
| </button> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 bg-opacity-70 py-12"> |
| <div class="container mx-auto px-6"> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div> |
| <div class="flex items-center space-x-2 mb-4"> |
| <i class="fas fa-headphones text-2xl text-cyan-400"></i> |
| <span class="text-xl font-bold">Mangoma</span> |
| </div> |
| <p class="text-gray-400 mb-4"> |
| AI-powered lo-fi music generation for creators. |
| </p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-spotify"></i></a> |
| </div> |
| </div> |
| |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Navigation</h4> |
| <ul class="space-y-2"> |
| <li><a href="index.html" class="text-gray-400 hover:text-white">Home</a></li> |
| <li><a href="styles.html" class="text-gray-400 hover:text-white">Lo-Fi Styles</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">How It Works</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Company</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white">About</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Privacy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Terms</a></li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500"> |
| <p>© 2023 Mangoma. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| const styleCards = document.querySelectorAll('.style-card'); |
| styleCards.forEach(card => { |
| card.addEventListener('mouseenter', () => { |
| const icon = card.querySelector('i'); |
| if (icon) { |
| icon.classList.add('fa-spin'); |
| } |
| }); |
| |
| card.addEventListener('mouseleave', () => { |
| const icon = card.querySelector('i'); |
| if (icon) { |
| icon.classList.remove('fa-spin'); |
| } |
| }); |
| |
| |
| card.addEventListener('click', () => { |
| const title = card.querySelector('h3').textContent; |
| alert(`Generating a ${title} lo-fi beat...`); |
| }); |
| }); |
| |
| |
| const searchInput = document.querySelector('input[type="text"]'); |
| const searchButton = document.querySelector('button.bg-cyan-400'); |
| |
| searchButton.addEventListener('click', () => { |
| const query = searchInput.value.trim(); |
| if (query) { |
| alert(`Searching for lo-fi styles matching: "${query}"`); |
| } |
| }); |
| |
| searchInput.addEventListener('keypress', (e) => { |
| if (e.key === 'Enter') { |
| const query = searchInput.value.trim(); |
| if (query) { |
| alert(`Searching for lo-fi styles matching: "${query}"`); |
| } |
| } |
| }); |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=iyeque/mangoma" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |