/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --orange: #ff8c00;
    --purple: #c855ff;
    --cyan: #00d4ff;
    --black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --light-gray: #666;
    --white: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-b {
    color: var(--orange);
}

.logo-mix {
    color: var(--purple);
}

.logo-freq {
    color: var(--cyan);
}

.nav-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-link:hover {
    background: var(--purple);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.logo-b-large {
    color: var(--orange);
    text-shadow: 0 0 20px var(--orange);
}

.logo-mix-large {
    color: var(--purple);
    text-shadow: 0 0 20px var(--purple);
}

.logo-freq-large {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan);
}

.frequency {
    color: var(--cyan);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--orange), var(--purple), var(--cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    margin-bottom: 3rem;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, var(--orange), var(--purple));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.listen-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.listen-btn:hover::before {
    left: 100%;
}

.listen-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.music-genres {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.genre {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.genre:hover {
    background: rgba(200, 85, 255, 0.2);
    border-color: var(--purple);
}

/* Wave Animation - Full Background */
.wave-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.wave {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, var(--orange), var(--purple), var(--cyan), var(--orange));
    border-radius: 50%;
    opacity: 0.08;
    animation: wave 8s ease-in-out infinite;
}

.wave1 {
    animation-delay: 0s;
    transform: translateY(-50%);
}

.wave2 {
    animation-delay: 2.5s;
    opacity: 0.06;
    transform: translateY(-50%) scale(1.2);
}

.wave3 {
    animation-delay: 5s;
    opacity: 0.04;
    transform: translateY(-50%) scale(0.8);
}

@keyframes wave {
    0%, 100% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    33% {
        transform: translateX(-30%) translateY(-60%) rotate(120deg);
    }
    66% {
        transform: translateX(-70%) translateY(-40%) rotate(240deg);
    }
}

/* Footer */
.footer {
    background: transparent;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-social {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .main-logo {
        font-size: 3rem;
    }
    
    .frequency {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .listen-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .music-genres {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .genre {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        font-size: 2.5rem;
    }
    
    .frequency {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 1rem;
    }
    
    .listen-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.listen-btn:focus,
.social-link:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; } 