* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --primary-orange: #F97316;
    --primary-cyan: #06B6D4;
    --primary-yellow: #FBBF24;
    --primary-green: #10B981;
    
    --bg-dark: #0F0F23;
    --bg-darker: #0A0A18;
    --text-light: #FFFFFF;
    --text-gray: #A1A1AA;
    --text-darker: #71717A;
    
    --gradient-rainbow: linear-gradient(135deg, 
        var(--primary-purple) 0%, 
        var(--primary-pink) 25%, 
        var(--primary-orange) 50%, 
        var(--primary-yellow) 75%, 
        var(--primary-green) 100%);
    
    --gradient-hero: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(236, 72, 153, 0.1) 50%, 
        rgba(6, 182, 212, 0.1) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.music-note {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    color: var(--primary-cyan);
}

.note1 { top: 10%; left: 10%; animation-delay: 0s; color: var(--primary-purple); }
.note2 { top: 20%; right: 15%; animation-delay: 1s; color: var(--primary-pink); }
.note3 { top: 60%; left: 5%; animation-delay: 2s; color: var(--primary-orange); }
.note4 { bottom: 20%; right: 10%; animation-delay: 3s; color: var(--primary-green); }
.note5 { bottom: 10%; left: 20%; animation-delay: 4s; color: var(--primary-yellow); }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
    background: rgba(139, 92, 246, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 2rem;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-color 2s ease-in-out infinite alternate;
}

.logo-text {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse-color {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(30deg); }
}

/* Main Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    animation: slide-in 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.title-line:nth-child(4) { animation-delay: 0.8s; }

.colorful {
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vibrant {
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 3rem;
    animation: fade-in 1s ease-out 1s both;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Features Preview */
.features-preview {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fade-in 1s ease-out 1.2s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.feature:nth-child(2) {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
}

.feature:nth-child(3) {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-rainbow);
    border-radius: 50px;
    margin-bottom: 3rem;
    animation: fade-in 1s ease-out 1.4s both;
}

.badge-text {
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* Waitlist Section */
.waitlist-section {
    animation: fade-in 1s ease-out 1.6s both;
}

.waitlist-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.email-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

#email {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    background: rgba(139, 92, 246, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

#email:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
}

#email::placeholder {
    color: var(--text-darker);
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-rainbow);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    color: var(--text-darker);
    font-size: 0.9rem;
    text-align: center;
}

.success-message {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.success-message.show {
    display: flex;
    animation: success-slide 0.5s ease-out;
}

@keyframes success-slide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    font-size: 1.2rem;
}

/* Social Proof */
.social-proof {
    animation: fade-in 1s ease-out 1.8s both;
}

.proof-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: center;
}

.highlight {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    flex: 0 0 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-record {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        var(--bg-darker) 0%, 
        var(--primary-purple) 50%, 
        var(--bg-darker) 100%);
    position: relative;
    animation: spin 10s linear infinite;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--primary-purple);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: wave-pulse 2s ease-in-out infinite;
}

.wave1 { 
    width: 350px; 
    height: 350px; 
    margin: -175px 0 0 -175px;
    animation-delay: 0s;
}

.wave2 { 
    width: 400px; 
    height: 400px; 
    margin: -200px 0 0 -200px;
    animation-delay: 0.5s;
    border-color: var(--primary-pink);
}

.wave3 { 
    width: 450px; 
    height: 450px; 
    margin: -225px 0 0 -225px;
    animation-delay: 1s;
    border-color: var(--primary-orange);
}

@keyframes wave-pulse {
    0% { 
        transform: scale(0.8); 
        opacity: 0.7; 
    }
    50% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    100% { 
        transform: scale(1.1); 
        opacity: 0; 
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-darker);
    color: var(--text-darker);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-darker);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-purple);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 2rem;
        gap: 2rem;
    }
    
    .hero-visual {
        flex: none;
        width: 300px;
        height: 300px;
    }
    
    .vinyl-record {
        width: 200px;
        height: 200px;
    }
    
    .wave1 { width: 250px; height: 250px; margin: -125px 0 0 -125px; }
    .wave2 { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
    .wave3 { width: 310px; height: 310px; margin: -155px 0 0 -155px; }
    
    .features-preview {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    header {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .waitlist-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-preview {
        display: none;
    }
}