/* Adana FM Custom Radio Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #f97316;
    --primary-glow: rgba(249, 115, 22, 0.4);
    --secondary-color: #06b6d4;
    --dark-bg: #090d16;
    --card-bg: rgba(17, 24, 39, 0.75);
    --card-border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    color: #e2e8f0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism */
.glass-panel {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary-glow);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px var(--primary-glow);
}

/* Big Hero Play Button Pulse */
.hero-play-btn {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 35px var(--primary-glow), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20;
}

.hero-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 50px var(--primary-glow), inset 0 2px 6px rgba(255, 255, 255, 0.5);
}

.hero-play-btn::before,
.hero-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--primary-glow);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-play-btn.playing::before {
    animation: ripple 2s infinite ease-out;
}

.hero-play-btn.playing::after {
    animation: ripple 2s infinite 0.75s ease-out;
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }
    100% {
        width: 220%;
        height: 220%;
        opacity: 0;
    }
}

/* Sound Wave Bars in Hero / Header */
.live-wave-bar {
    width: 3px;
    height: 14px;
    background-color: var(--primary-color);
    border-radius: 3px;
    margin: 0 1.5px;
    display: inline-block;
    animation: wave 1.2s infinite ease-in-out;
}

.live-wave-bar:nth-child(1) { animation-delay: 0.0s; height: 10px; }
.live-wave-bar:nth-child(2) { animation-delay: 0.2s; height: 18px; }
.live-wave-bar:nth-child(3) { animation-delay: 0.4s; height: 12px; }
.live-wave-bar:nth-child(4) { animation-delay: 0.1s; height: 20px; }
.live-wave-bar:nth-child(5) { animation-delay: 0.3s; height: 14px; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1.4); }
}

/* Hero Canvas Visualizer Container */
.hero-visualizer-canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* Glow Badges */
.badge-live {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.badge-frequency {
    background: linear-gradient(135deg, var(--primary-glow) 0%, var(--primary-dark) 100%);
    border: 1px solid var(--primary-color);
    color: var(--primary-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #090d16;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}