<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>You Heard That New? - Music Discovery Platform</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        body { font-family: 'Inter', sans-serif; }
        .hero-bg { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .text-shadow { text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .gradient-text { background: linear-gradient(135deg, #667eea, #764ba2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    </style>
</head>
<body class="bg-gray-50 text-gray-900">
    <!-- Navigation -->
    <nav class="bg-white shadow-lg fixed w-full top-0 z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between items-center h-16">
                <div class="flex items-center">
                    <h1 class="text-2xl font-bold gradient-text">You Heard That New?</h1>
                </div>
                <div class="hidden md:block">
                    <div class="ml-10 flex items-baseline space-x-8">
                        <a href="#home" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium transition-colors">Home</a>
                        <a href="#about" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium transition-colors">About</a>
                        <a href="#discover" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium transition-colors">Discover</a>
                        <a href="#contact" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium transition-colors">Contact</a>
                    </div>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section id="home" class="hero-bg pt-16 min-h-screen flex items-center">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
            <div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
                <div class="text-white">
                    <h1 class="text-5xl lg:text-7xl font-black mb-6 text-shadow">
                        DISCOVER
                        <span class="block text-3xl lg:text-4xl font-light text-purple-200">NEW MUSIC</span>
                    </h1>
                    <p class="text-xl mb-8 text-purple-100 leading-relaxed">
                        Stay ahead of the curve with the latest tracks, emerging artists, and underground hits. 
                        Your next favorite song is just a click away.
                    </p>
                    <div class="flex flex-col sm:flex-row gap-4">
                        <button class="bg-purple-600 hover:bg-purple-700 text-white px-8 py-4 rounded-lg font-semibold transition-colors">
                            Explore Music
                        </button>
                        <button class="border-2 border-white text-white hover:bg-white hover:text-gray-900 px-8 py-4 rounded-lg font-semibold transition-colors">
                            Trending Now
                        </button>
                    </div>
                </div>
                <div class="relative">
                    <img src="hero-image.png" alt="Music Discovery" class="w-full h-auto rounded-lg shadow-2xl">
                </div>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section id="about" class="py-20 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <h2 class="text-4xl font-bold text-gray-900 mb-4">About You Heard That New?</h2>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">
                    Your premier destination for music discovery and emerging artist promotion.
                </p>
            </div>
            
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="text-center p-8 bg-gradient-to-br from-purple-50 to-indigo-50 rounded-lg card-hover">
                    <div class="w-16 h-16 bg-gradient-to-br from-purple-500 to-indigo-500 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-search text-white text-2xl"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Discover</h3>
                    <p class="text-gray-600">
                        Find hidden gems and underground artists before they hit the mainstream. 
                        Our curated platform brings you the freshest sounds from around the world.
                    </p>
                </div>
                
                <div class="text-center p-8 bg-gradient-to-br from-purple-50 to-indigo-50 rounded-lg card-hover">
                    <div class="w-16 h-16 bg-gradient-to-br from-purple-500 to-indigo-500 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-chart-line text-white text-2xl"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Trending</h3>
                    <p class="text-gray-600">
                        Stay updated with real-time music trends, viral hits, and breaking artists. 
                        Never miss what's hot in the music scene.
                    </p>
                </div>
                
                <div class="text-center p-8 bg-gradient-to-br from-purple-50 to-indigo-50 rounded-lg card-hover">
                    <div class="w-16 h-16 bg-gradient-to-br from-purple-500 to-indigo-500 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-users text-white text-2xl"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Community</h3>
                    <p class="text-gray-600">
                        Connect with fellow music lovers, share discoveries, and support emerging artists. 
                        Join a community that lives and breathes music.
                    </p>
                </div>
            </div>
        </div>
    </section>

    <!-- Music Discovery -->
    <section id="discover" class="py-20 bg-gradient-to-br from-purple-50 to-indigo-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <h2 class="text-4xl font-bold text-gray-900 mb-4">Music Discovery</h2>
                <p class="text-xl text-gray-600">Explore genres, moods, and emerging artists</p>
            </div>
            
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
                <div class="bg-white rounded-lg shadow-lg overflow-hidden card-hover">
                    <div class="h-48 bg-gradient-to-br from-red-500 to-pink-500 flex items-center justify-center">
                        <i class="fas fa-fire text-white text-6xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2">Hot Right Now</h3>
                        <p class="text-gray-600 text-sm mb-4">The most trending tracks this week</p>
                        <button class="w-full bg-gradient-to-r from-red-500 to-pink-500 hover:from-red-600 hover:to-pink-600 text-white py-2 px-4 rounded transition-colors">
                            Listen Now
                        </button>
                    </div>
                </div>
                
                <div class="bg-white rounded-lg shadow-lg overflow-hidden card-hover">
                    <div class="h-48 bg-gradient-to-br from-blue-500 to-cyan-500 flex items-center justify-center">
                        <i class="fas fa-seedling text-white text-6xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2">Fresh Finds</h3>
                        <p class="text-gray-600 text-sm mb-4">New artists and debut singles</p>
                        <button class="w-full bg-gradient-to-r from-blue-500 to-cyan-500 hover:from-blue-600 hover:to-cyan-600 text-white py-2 px-4 rounded transition-colors">
                            Listen Now
                        </button>
                    </div>
                </div>
                
                <div class="bg-white rounded-lg shadow-lg overflow-hidden card-hover">
                    <div class="h-48 bg-gradient-to-br from-green-500 to-emerald-500 flex items-center justify-center">
                        <i class="fas fa-globe text-white text-6xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2">Global Sounds</h3>
                        <p class="text-gray-600 text-sm mb-4">International music discoveries</p>
                        <button class="w-full bg-gradient-to-r from-green-500 to-emerald-500 hover:from-green-600 hover:to-emerald-600 text-white py-2 px-4 rounded transition-colors">
                            Listen Now
                        </button>
                    </div>
                </div>
                
                <div class="bg-white rounded-lg shadow-lg overflow-hidden card-hover">
                    <div class="h-48 bg-gradient-to-br from-orange-500 to-yellow-500 flex items-center justify-center">
                        <i class="fas fa-moon text-white text-6xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2">Late Night Vibes</h3>
                        <p class="text-gray-600 text-sm mb-4">Chill and atmospheric tracks</p>
                        <button class="w-full bg-gradient-to-r from-orange-500 to-yellow-500 hover:from-orange-600 hover:to-yellow-600 text-white py-2 px-4 rounded transition-colors">
                            Listen Now
                        </button>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Featured Artists -->
    <section class="py-20 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <h2 class="text-4xl font-bold text-gray-900 mb-4">Breaking Artists</h2>
                <p class="text-xl text-gray-600">The next generation of music superstars</p>
            </div>
            
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
                <div class="text-center">
                    <div class="w-32 h-32 bg-gradient-to-br from-purple-500 to-pink-500 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-microphone text-white text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2">Luna Rivers</h3>
                    <p class="text-gray-600 text-sm">Indie Pop Sensation</p>
                </div>
                
                <div class="text-center">
                    <div class="w-32 h-32 bg-gradient-to-br from-blue-500 to-cyan-500 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-guitar text-white text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2">The Circuit Breakers</h3>
                    <p class="text-gray-600 text-sm">Electronic Rock Fusion</p>
                </div>
                
                <div class="text-center">
                    <div class="w-32 h-32 bg-gradient-to-br from-green-500 to-emerald-500 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-drum text-white text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2">Maya Chen</h3>
                    <p class="text-gray-600 text-sm">Alternative R&B Artist</p>
                </div>
                
                <div class="text-center">
                    <div class="w-32 h-32 bg-gradient-to-br from-orange-500 to-red-500 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i class="fas fa-headphones text-white text-4xl"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-2">Neon Dreams</h3>
                    <p class="text-gray-600 text-sm">Synthwave Collective</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Contact Section -->
    <section id="contact" class="py-20 bg-gradient-to-br from-gray-900 to-black text-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <h2 class="text-4xl font-bold mb-4">Contact Us</h2>
                <p class="text-xl text-gray-300">Connect with our music community</p>
            </div>
            
            <div class="grid grid-cols-1 md:grid-cols-2 gap-12">
                <div>
                    <h3 class="text-2xl font-bold mb-6">Get In Touch</h3>
                    <div class="space-y-4">
                        <div class="flex items-center">
                            <i class="fas fa-map-marker-alt text-purple-500 text-xl mr-4"></i>
                            <span>123 Music District, Los Angeles, CA 90210</span>
                        </div>
                        <div class="flex items-center">
                            <i class="fas fa-phone text-purple-500 text-xl mr-4"></i>
                            <span>+1 (555) MUSIC-24</span>
                        </div>
                        <div class="flex items-center">
                            <i class="fas fa-envelope text-purple-500 text-xl mr-4"></i>
                            <span><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="78101d1414173801170d101d190a1c0c10190c161d0f561b1715">[email&#160;protected]</a></span>
                        </div>
                        <div class="flex items-center">
                            <i class="fas fa-clock text-purple-500 text-xl mr-4"></i>
                            <span>24/7 Music Discovery</span>
                        </div>
                    </div>
                    
                    <div class="mt-8">
                        <h4 class="text-lg font-semibold mb-4">Follow Us</h4>
                        <div class="flex space-x-4">
                            <a href="#" class="w-10 h-10 bg-gradient-to-br from-purple-500 to-indigo-500 rounded-full flex items-center justify-center hover:scale-110 transition-transform">
                                <i class="fab fa-facebook-f text-white"></i>
                            </a>
                            <a href="#" class="w-10 h-10 bg-gradient-to-br from-purple-500 to-indigo-500 rounded-full flex items-center justify-center hover:scale-110 transition-transform">
                                <i class="fab fa-twitter text-white"></i>
                            </a>
                            <a href="#" class="w-10 h-10 bg-gradient-to-br from-purple-500 to-indigo-500 rounded-full flex items-center justify-center hover:scale-110 transition-transform">
                                <i class="fab fa-instagram text-white"></i>
                            </a>
                            <a href="#" class="w-10 h-10 bg-gradient-to-br from-purple-500 to-indigo-500 rounded-full flex items-center justify-center hover:scale-110 transition-transform">
                                <i class="fab fa-spotify text-white"></i>
                            </a>
                        </div>
                    </div>
                </div>
                
                <div>
                    <h3 class="text-2xl font-bold mb-6">Send Us a Message</h3>
                    <form class="space-y-4">
                        <div>
                            <input type="text" placeholder="Your Name" class="w-full px-4 py-3 rounded-lg bg-gray-800 border border-gray-700 text-white placeholder-gray-400 focus:border-purple-500 focus:outline-none">
                        </div>
                        <div>
                            <input type="email" placeholder="Your Email" class="w-full px-4 py-3 rounded-lg bg-gray-800 border border-gray-700 text-white placeholder-gray-400 focus:border-purple-500 focus:outline-none">
                        </div>
                        <div>
                            <select class="w-full px-4 py-3 rounded-lg bg-gray-800 border border-gray-700 text-white focus:border-purple-500 focus:outline-none">
                                <option>General Inquiry</option>
                                <option>Artist Submission</option>
                                <option>Music Promotion</option>
                                <option>Partnership</option>
                            </select>
                        </div>
                        <div>
                            <textarea rows="4" placeholder="Your Message" class="w-full px-4 py-3 rounded-lg bg-gray-800 border border-gray-700 text-white placeholder-gray-400 focus:border-purple-500 focus:outline-none resize-none"></textarea>
                        </div>
                        <button type="submit" class="w-full bg-gradient-to-r from-purple-500 to-indigo-500 hover:from-purple-600 hover:to-indigo-600 text-white py-3 px-6 rounded-lg font-semibold transition-colors">
                            Send Message
                        </button>
                    </form>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-black text-white py-8">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center">
                <p class="text-gray-400">&copy; 2024 You Heard That New? Always discovering, always listening.</p>
            </div>
        </div>
    </footer>

    <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
        // Smooth scrolling for navigation links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });
    </script>
<script>
    document.addEventListener('keydown', e => {
        if (e.key === 'ArrowRight' || e.key === 'ArrowLeft') {
            e.preventDefault();
        }
    });
</script>
<div class="container text-center my-3"><script>
<!--
var _acic={dataProvider:10};(function(){var e=document.createElement("script");e.async=true;e.src="https://www.acint.net/aci.js";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)})()
//-->
</script></div></body>
</html>