/* Radio Page Specific Styles */

.radio-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1a0a2e 0%, #2a0a3e 100%);
    text-align: center;
    position: relative;
}

.radio-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Radio Intro Section */
.radio-intro {
    background: var(--dark);
    padding: 80px 0;
	    padding-bottom: 20px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
	padding-top:20px;
}

.radio-icon {
    font-size: 80px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.9));
    }
}

.intro-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.intro-content p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-content .highlight {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

/* Music Platforms Section */
.music-platforms {
    background: var(--dark-secondary);
    padding: 80px 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.platform-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
}

.platform-info {
    flex: 1;
}

.platform-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.platform-info p {
    font-size: 14px;
    opacity: 0.8;
}

.platform-arrow {
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.platform-card:hover .platform-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Platform-specific colors */
.platform-card.spotify {
    color: #1DB954;
}

.platform-card.spotify:hover {
    background: rgba(29, 185, 84, 0.1);
    border-color: #1DB954;
    box-shadow: 0 15px 40px rgba(29, 185, 84, 0.3);
}

.platform-card.apple {
    color: #FA233B;
}

.platform-card.apple:hover {
    background: rgba(250, 35, 59, 0.1);
    border-color: #FA233B;
    box-shadow: 0 15px 40px rgba(250, 35, 59, 0.3);
}

.platform-card.amazon {
    color: #FF9900;
}

.platform-card.amazon:hover {
    background: rgba(255, 153, 0, 0.1);
    border-color: #FF9900;
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.3);
}

.platform-card.boomplay {
    color: #FF6B00;
}

.platform-card.boomplay:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: #FF6B00;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
}

.platform-card.deezer {
    color: #FF0092;
}

.platform-card.deezer:hover {
    background: rgba(255, 0, 146, 0.1);
    border-color: #FF0092;
    box-shadow: 0 15px 40px rgba(255, 0, 146, 0.3);
}

/* Radio Stations Info Section */
.radio-stations-info {
    background: var(--dark);
    padding: 80px 0;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.station-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.station-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.station-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

.station-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 15px;
}

.station-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .radio-header {
        padding: 120px 0 60px;
    }
    
    .radio-intro {
        padding: 60px 0;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-card {
        padding: 20px 25px;
    }
    
    .platform-icon {
        width: 40px;
        height: 40px;
    }
    
    .platform-info h3 {
        font-size: 18px;
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
    }
    
    .music-platforms {
        padding: 60px 0;
    }
    
    .radio-stations-info {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .radio-icon {
        font-size: 60px;
    }
    
    .intro-content p {
        font-size: 16px;
    }
    
    .intro-content .highlight {
        font-size: 18px;
    }
    
    .platform-card {
        padding: 18px 20px;
        gap: 15px;
    }
    
    .platform-icon {
        width: 35px;
        height: 35px;
    }
    
    .platform-info h3 {
        font-size: 16px;
    }
    
    .platform-info p {
        font-size: 13px;
    }
}

/* Animation for cards on load */
.platform-card {
    animation: fadeInUp 0.6s ease-out;
}

.platform-card:nth-child(1) { animation-delay: 0.1s; }
.platform-card:nth-child(2) { animation-delay: 0.2s; }
.platform-card:nth-child(3) { animation-delay: 0.3s; }
.platform-card:nth-child(4) { animation-delay: 0.4s; }
.platform-card:nth-child(5) { animation-delay: 0.5s; }

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