/* Custom CSS for FM 99 Panamá - Electric Blue & Black Theme */

:root {
    --bg-dark: #07070a;
    --bg-card: #11121a;
    --bg-nav: rgba(11, 12, 20, 0.85);
    --primary: #0055ff;
    --primary-glow: rgba(0, 85, 255, 0.4);
    --secondary: #00d9ff;
    --secondary-glow: rgba(0, 217, 255, 0.3);
    --text-white: #ffffff;
    --text-gray: #8f92a1;
    --text-glow-shadow: 0 0 10px rgba(0, 217, 255, 0.6), 0 0 20px rgba(0, 85, 255, 0.4);
    --card-glow-shadow: 0 8px 32px 0 rgba(0, 85, 255, 0.1);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --font-outfit: 'Outfit', sans-serif;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-outfit);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 85, 255, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.logo:hover .header-logo-img {
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
}

.hero-logo-img {
    max-height: 140px;
    width: auto;
    max-width: 100%;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(0, 85, 255, 0.4));
}

.disk-logo-img {
    width: 70%;
    height: auto;
    max-width: 90px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.live-indicator-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 85, 0.15);
    border: 1px solid rgba(255, 0, 85, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ff0055;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff0055;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0055;
    animation: pulse 1.5s infinite alternate;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(0, 85, 255, 0.08) 0%, transparent 40%);
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    background: rgba(0, 85, 255, 0.1);
    border: 1px solid rgba(0, 85, 255, 0.3);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.text-glow {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 85, 255, 0.3));
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 540px;
}

.btn-play-hero {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    border: none;
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 18px 36px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 85, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-play-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.6);
}

.btn-play-hero:active {
    transform: translateY(1px);
}

.play-icon-container {
    width: 28px;
    height: 28px;
    background-color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.play-icon-container svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}

/* Disk Visualizer */
.hero-visualizer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visualizer-disk {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #050508, #111218, #001a33, #111218, #050508);
    position: relative;
    border: 8px solid rgba(0, 85, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 85, 255, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 15s linear infinite;
    animation-play-state: paused;
}

body.playing .visualizer-disk {
    animation-play-state: running;
}

.disk-inner {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #07070a;
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.5);
}

.disk-logo {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    text-shadow: var(--text-glow-shadow);
}

/* Sound Waves Animation around the disk */
.sound-waves {
    position: absolute;
    width: 112%;
    height: 112%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    pointer-events: none;
}

.wave-bar {
    width: 4px;
    height: 20px;
    background-color: var(--secondary);
    opacity: 0.15;
    border-radius: 20px;
    transform: scaleY(1);
    transition: transform 0.1s ease;
}

body.playing .wave-bar {
    opacity: 0.8;
    box-shadow: 0 0 8px var(--secondary);
    animation: wavePulse 1.2s ease-in-out infinite alternate;
}

/* Add dynamic wave delays */
.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.3s; }
.wave-bar:nth-child(3) { animation-delay: 0.6s; }
.wave-bar:nth-child(4) { animation-delay: 0.2s; }
.wave-bar:nth-child(5) { animation-delay: 0.5s; }
.wave-bar:nth-child(6) { animation-delay: 0.8s; }
.wave-bar:nth-child(7) { animation-delay: 0.4s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.wave-bar:nth-child(9) { animation-delay: 0.3s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }
.wave-bar:nth-child(11) { animation-delay: 0.5s; }
.wave-bar:nth-child(12) { animation-delay: 0.2s; }
.wave-bar:nth-child(13) { animation-delay: 0.6s; }
.wave-bar:nth-child(14) { animation-delay: 0.1s; }
.wave-bar:nth-child(15) { animation-delay: 0.4s; }

/* Sections Global Styling */
section {
    padding: 100px 0;
    border-top: 1px solid rgba(0, 85, 255, 0.08);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.feat-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feat-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(0, 85, 255, 0.1);
    border: 1px solid rgba(0, 85, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.15);
}

.feat-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
}

.feat-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.about-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-neon-border {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 6px solid var(--primary);
    background: radial-gradient(circle, var(--bg-card) 0%, var(--bg-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 85, 255, 0.35), inset 0 0 20px rgba(0, 0, 0, 0.6);
    animation: rotate 25s linear infinite;
}

.about-logo-inside {
    width: 65%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 85, 255, 0.3));
    animation: rotate 25s linear infinite reverse; /* counter-rotate to keep logo upright */
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .feat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* DJs Section */
.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dj-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: var(--card-glow-shadow);
}

.dj-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 85, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 85, 255, 0.2);
}

.dj-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #030305;
}

.dj-neon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background-color: var(--primary);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    transition: var(--transition-normal);
}

.dj-neon-bg.blue2 {
    background-color: var(--secondary);
}

.dj-card:hover .dj-neon-bg {
    width: 220px;
    height: 220px;
    opacity: 0.7;
}

.dj-svg-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.dj-card:hover .dj-svg-avatar {
    transform: scale(1.05);
}

.dj-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff0055;
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

.dj-info {
    padding: 30px;
}

.dj-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.dj-role {
    display: inline-block;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.dj-bio {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.dj-schedule {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-white);
    font-weight: 600;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-clock {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
}

/* Schedule Section */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-gray);
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    background: rgba(0, 85, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(0, 85, 255, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 85, 255, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -32px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 3px solid var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
    z-index: 1;
    transition: var(--transition-fast);
}

.timeline-item:hover::before {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.time {
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.details {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition-normal);
}

.timeline-item:hover .details {
    border-color: rgba(0, 85, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 85, 255, 0.1);
}

.details h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.details p {
    color: var(--text-gray);
    font-size: 14px;
}


/* Social Feed Section */
.social-links-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.social-badge svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-badge.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.2);
}

.social-badge.instagram:hover {
    background: #e1306c;
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.4);
    transform: translateY(-2px);
}

.social-badge.tiktok {
    background: rgba(0, 242, 234, 0.1);
    color: #00f2ea;
    border-color: rgba(0, 242, 234, 0.2);
}

.social-badge.tiktok:hover {
    background: #00f2ea;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.4);
    transform: translateY(-2px);
}

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

.social-post-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--card-glow-shadow);
    display: flex;
    flex-direction: column;
}

.social-post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 85, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 85, 255, 0.15);
}

.post-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #000;
}

.post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.social-post-card:hover .post-img-wrapper img {
    transform: scale(1.04);
}

.post-social-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(7, 7, 10, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.post-social-icon.ig svg {
    width: 18px;
    height: 18px;
    fill: #e1306c;
}

.post-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-weight: 600;
}

.post-text {
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.btn-post-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--secondary);
    padding: 12px 20px;
    border-radius: 10px;
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-post-action:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3);
}

.loading-feed {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-gray);
    font-size: 16px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
}

.contact-card:hover {
    border-color: rgba(0, 85, 255, 0.2);
}

.contact-icon {
    width: 32px;
    height: 32px;
    fill: var(--secondary);
}

.contact-card h4 {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p {
    font-size: 16px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-white);
    padding: 16px 20px;
    font-family: var(--font-outfit);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 85, 255, 0.25);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-submit:hover {
    box-shadow: 0 6px 20px rgba(0, 85, 255, 0.4);
    transform: translateY(-2px);
}

/* Footer Section Spacer (to avoid overlay by player bar) */
.footer-bottom-spacer {
    padding: 60px 0 160px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    font-size: 14px;
    color: var(--text-gray);
}

/* Player Bar (Bottom persistence) */
.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(7, 7, 10, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8), 0 -2px 15px rgba(0, 85, 255, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
}

.player-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Player Info (Left) */
.player-info {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 30%;
}

.live-pulse {
    position: relative;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    border: 3px solid #ff0055;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    position: absolute;
    animation: pulse-ring-anim 1.5s ease-out infinite;
}

.pulse-dot {
    background-color: #ff0055;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
}

.stream-details {
    display: flex;
    flex-direction: column;
}

.stream-status {
    font-size: 10px;
    font-weight: 800;
    color: #ff0055;
    letter-spacing: 1px;
}

.stream-title-wrapper {
    overflow: hidden;
    width: 220px;
    position: relative;
}

.stream-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    animation: scrollText 12s linear infinite;
}

/* Controls (Center) */
.player-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    width: 40%;
}

.btn-play-pause {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 85, 255, 0.4);
    transition: all 0.2s ease;
}

.btn-play-pause:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.6);
}

.btn-play-pause svg {
    width: 22px;
    height: 22px;
    fill: var(--text-white);
}

.audio-visualizer-bar {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
    width: 40px;
}

.audio-visualizer-bar span {
    display: inline-block;
    width: 4px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: height 0.1s ease;
}

body.playing .audio-visualizer-bar span {
    animation: miniEqualizer 0.8s ease-in-out infinite alternate;
}

body.playing .audio-visualizer-bar span:nth-child(1) { animation-delay: 0.1s; }
body.playing .audio-visualizer-bar span:nth-child(2) { animation-delay: 0.3s; }
body.playing .audio-visualizer-bar span:nth-child(3) { animation-delay: 0.5s; }
body.playing .audio-visualizer-bar span:nth-child(4) { animation-delay: 0.2s; }
body.playing .audio-visualizer-bar span:nth-child(5) { animation-delay: 0.4s; }

/* Volume & Right Control */
.player-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 30%;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-volume {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.btn-volume:hover {
    color: var(--secondary);
}

.btn-volume svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.volume-slider {
    -webkit-appearance: none;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: width 0.2s ease;
}

.volume-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: var(--secondary);
    box-shadow: 0 0 5px var(--secondary);
    cursor: pointer;
    margin-top: -4px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

@keyframes pulse-ring-anim {
    0% { transform: scale(0.4); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

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

@keyframes wavePulse {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(2.2); }
}

@keyframes miniEqualizer {
    0% { height: 3px; }
    100% { height: 22px; }
}

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

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .hero h1 {
        font-size: 54px;
    }
    
    .hero-visualizer-container {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .player-container {
        padding: 0 16px;
    }
    
    .player-info {
        width: 45%;
    }
    
    .player-controls {
        width: 25%;
    }
    
    .player-right {
        width: 30%;
    }
    
    .volume-slider {
        display: none; /* Hide volume slider on mobile, keep button */
    }
    
    .live-indicator-nav {
        display: none; /* Saved header space for mobile */
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .visualizer-disk {
        width: 260px;
        height: 260px;
    }
    
    .disk-inner {
        width: 100px;
        height: 100px;
    }
    
    .disk-logo {
        font-size: 32px;
    }
    
    .player-info {
        width: 60%;
    }
    
    .player-controls {
        width: 40%;
    }
    
    .player-right {
        display: none; /* Hide volume controls entirely on tiny screens */
    }
}

/* Custom Program Grid using uploaded banners */
.program-banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.program-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--card-glow-shadow);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 85, 255, 0.25);
}

.program-img-container {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background-color: #000;
}

.program-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.program-card:hover .program-banner-img {
    transform: scale(1.05);
}

.program-details-box {
    padding: 16px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-details-box h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.program-time-tag {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
}

/* Alternative Background for section alternation */
.alternative-bg {
    background-color: #090a0f !important;
    border-top: 1px solid rgba(0, 85, 255, 0.05);
    border-bottom: 1px solid rgba(0, 85, 255, 0.05);
}

/* Flex reverse support on desktop */
@media (min-width: 993px) {
    .about-grid.reverse {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

/* Brand Total Vallas placeholder */
.total-vallas-brand {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
    line-height: 1.1;
    letter-spacing: 2px;
}

/* Interactive billboard visual representation */
.interactive-billboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.billboard-board {
    border: 5px solid #222;
    border-radius: 12px;
    overflow: hidden;
    background: #050505;
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.35);
    width: 100%;
}

.billboard-img {
    width: 100%;
    height: auto;
    display: block;
}

.billboard-pole {
    width: 16px;
    height: 110px;
    background: linear-gradient(90deg, #333, #555, #222);
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}

/* Detonando Visual emoji explosion */
.detonando-visual {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.15) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.detonando-emoji {
    font-size: 90px;
    filter: drop-shadow(0 0 20px #ff0055);
    animation: detonandoPulse 1s ease-in-out infinite alternate;
}

@keyframes detonandoPulse {
    0% { transform: scale(0.9) rotate(-5deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

/* Media integration styling */
.about-video {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    border: 4px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.4);
    background-color: #000;
    display: block;
    margin: 0 auto;
}

.about-images-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.total-vallas-logo-img {
    width: 80%;
    max-width: 260px;
    border-radius: 12px;
    border: 2px solid rgba(0, 85, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 85, 255, 0.15);
    background-color: #fff;
    padding: 10px;
}

.total-vallas-billboard-img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
}

.doble-impacto-billboards-img {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 85, 255, 0.4);
    background-color: #0b0c10;
    transition: transform var(--transition-normal);
}

.doble-impacto-billboards-img:hover {
    transform: scale(1.03);
}

