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

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #e0e0e0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Cosmic Background */
.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    z-index: -2;
    animation: cosmicShift 20s ease-in-out infinite;
}

.cosmic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.05), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.05), transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: starfield 30s linear infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo h1 {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #ff006e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: psychedelicGradient 8s ease-in-out infinite;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.tagline {
    font-size: 1rem;
    color: #a0a0a0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
}

.status {
    display: flex;
    align-items: center;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pulse {
    width: 10px;
    height: 10px;
    background: #ff006e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px #ff006e;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.mandala {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.mandala-layer {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotate 20s linear infinite;
}

.layer-1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-color: rgba(255, 0, 110, 0.6);
    animation-duration: 30s;
}

.layer-2 {
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-color: rgba(131, 56, 236, 0.6);
    animation-duration: 25s;
    animation-direction: reverse;
}

.layer-3 {
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    border-color: rgba(6, 255, 165, 0.6);
    animation-duration: 20s;
}

.mandala-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ff006e, #8338ec, #06ffa5);
    border-radius: 50%;
    animation: centerPulse 4s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.5);
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #8338ec, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 500px;
    line-height: 1.6;
}

/* Stream Section */
.stream-section {
    width: 100%;
    max-width: 400px;
}

.stream-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.stream-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 0, 110, 0.1), transparent, rgba(131, 56, 236, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.stream-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.frequency {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #06ffa5;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
}

.stream-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.stream-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.stream-link:hover .link-arrow {
    transform: translateX(5px);
}

.listeners {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 1rem;
}

.listener-count {
    color: #8338ec;
    font-weight: 600;
}

.track-history ul li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.track-history ul li::marker {
  content: none !important;
}

/* Genre Pills */
.genres {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.genre-pill {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 1rem;
    color: #c0c0c0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.genre-pill:hover {
    background: rgba(255, 0, 110, 0.1);
    border-color: #ff006e;
    color: #ff006e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 110, 0.2);
}

/* About Section */
.about {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about > p {
    line-height: 1.8;
    color: #c0c0c0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 2rem;
    color: #06ffa5;
    min-width: 40px;
    text-align: center;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-text p {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.4;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid transparent;
}

.social-link:hover {
    color: #06ffa5;
    border-color: rgba(6, 255, 165, 0.3);
    background: rgba(6, 255, 165, 0.05);
}

.copyright {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes psychedelicGradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 50% 0%; }
}

@keyframes cosmicShift {
    0%, 100% { 
        filter: hue-rotate(0deg) brightness(1);
    }
    25% { 
        filter: hue-rotate(90deg) brightness(1.1);
    }
    50% { 
        filter: hue-rotate(180deg) brightness(0.9);
    }
    75% { 
        filter: hue-rotate(270deg) brightness(1.1);
    }
}

@keyframes starfield {
    from { transform: translateY(0); }
    to { transform: translateY(-150px); }
}

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

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

@keyframes centerPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 40px rgba(255, 0, 110, 0.5);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 60px rgba(255, 0, 110, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .mandala {
        width: 250px;
        height: 250px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .stream-card {
        padding: 2rem;
    }
    
    .frequency {
        font-size: 1.5rem;
    }
    
    .genres {
        gap: 0.5rem;
    }
    
    .genre-pill {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

