/* La Que Buena Atlanta */

/* Variables */
:root {
    --primary: #a7e20c;
    --primary-dark: #a7e20c;
    --secondary: #00d4ff;
    --accent: #00d4ff;
    --cyan: #00d4ff;
    --magenta: #a7e20c;
    --dark: #0a0a14;
    --dark-light: #12121e;
    --dark-medium: #0e0e1a;
    --text: #a9df0f;
    --text-muted: #fffff;
    --text-dark: #333;
    --gradient-primary: linear-gradient(135deg, #00d4ff, #a7e20c);
    --gradient-hot: linear-gradient(135deg, #a7e20c, #ff4b6e);
    --gradient-night: linear-gradient(135deg, #0a0a14, #1a1a30, #12121e);
    --gradient-gold: linear-gradient(135deg, #00d4ff, #0099cc);
    --gradient-cyan: linear-gradient(135deg, #00d4ff, #00a0cc);
    --gradient-magenta: linear-gradient(135deg, #a7e20c, #ff69b4);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader p {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 20px;
}

.sound-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 60px;
}

.sound-wave span {
    width: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: soundWave 1s ease-in-out infinite;
}

.sound-wave span:nth-child(1) { height: 20px; animation-delay: 0s; }
.sound-wave span:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.sound-wave span:nth-child(3) { height: 60px; animation-delay: 0.2s; }
.sound-wave span:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.sound-wave span:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes soundWave {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Header / Navbar */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

#header.scrolled {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    width: 100%;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: contain;
}

.footer-logo-img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-live-mini {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-live-mini:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid var(--dark);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(10,10,20,0.45) 0%, rgba(10,10,20,0.7) 60%, rgba(10,10,20,0.95) 100%),
        url('../images/hero-bg.png') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="0.5" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="0.3" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 2rem;
    color: rgba(0, 212, 255, 0.15);
    animation: floatNote 15s linear infinite;
}

.note:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 2rem; }
.note:nth-child(2) { left: 25%; animation-delay: 2s; font-size: 3rem; }
.note:nth-child(3) { left: 45%; animation-delay: 4s; font-size: 1.5rem; }
.note:nth-child(4) { left: 65%; animation-delay: 6s; font-size: 2.5rem; }
.note:nth-child(5) { left: 80%; animation-delay: 8s; font-size: 1.8rem; }
.note:nth-child(6) { left: 90%; animation-delay: 10s; font-size: 2.2rem; }

@keyframes floatNote {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    line-height: 0.9;
    margin-bottom: 12px;
}

.title-line {
    display: block;
    font-size: clamp(2rem, 7vw, 5rem);
    letter-spacing: 6px;
    color: var(--text);
}

.title-accent {
    font-size: clamp(2.8rem, 10vw, 7.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

.title-freq {
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fm-badge {
    background: var(--magenta);
    -webkit-text-fill-color: white;
    color: white;
    padding: 4px 15px;
    border-radius: 8px;
    font-size: clamp(1.2rem, 3vw, 2.2rem);
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo-img {
    width: clamp(120px, 20vw, 220px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--text-muted);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Hero Weather Widget */
.hero-weather {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 320px;
    transition: all 0.3s;
}

.hero-weather:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.weather-current {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weather-icon-main {
    font-size: 2.2rem;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.weather-temp {
    display: flex;
    align-items: flex-start;
}

.weather-degrees {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: white;
    line-height: 1;
    letter-spacing: 1px;
}

.weather-unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.weather-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.weather-desc {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.weather-loc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.weather-loc i {
    color: var(--primary);
    margin-right: 3px;
}

.weather-extra {
    display: flex;
    gap: 15px;
}

.weather-mini {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.weather-mini i {
    color: var(--primary);
    font-size: 0.65rem;
}

.weather-forecast {
    display: flex;
    gap: 8px;
}

.weather-fc-item {
    text-align: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    min-width: 55px;
}

.weather-fc-day {
    display: block;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.weather-fc-icon {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.weather-fc-temp {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.weather-alert {
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid rgba(255, 23, 68, 0.3);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.7rem;
    color: #ff6b6b;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.weather-alert i {
    color: #ff1744;
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.weather-source {
    font-size: 0.6rem;
}

.weather-source a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.weather-source a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero-weather {
        min-width: auto;
        width: 90%;
        max-width: 350px;
        padding: 12px 15px;
    }

    .weather-degrees {
        font-size: 2.2rem;
    }

    .weather-icon-main {
        font-size: 1.8rem;
    }

    .weather-forecast {
        flex-wrap: wrap;
        justify-content: center;
    }

    .weather-fc-item {
        min-width: 48px;
        padding: 5px 7px;
    }
}

@media (max-width: 480px) {
    .weather-extra {
        gap: 10px;
    }
    
    .weather-forecast {
        gap: 5px;
    }

    .weather-fc-item:nth-child(n+5) {
        display: none;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--cyan);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Player Section */
.section-player {
    background: var(--dark-light);
    padding: 80px 0;
}

.player-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.player-card {
    background: var(--dark-medium);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.player-visual {
    text-align: center;
    margin-bottom: 30px;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 80px;
    margin-bottom: 25px;
}

.equalizer span {
    width: 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: height 0.3s ease;
}

.equalizer.playing span {
    animation: eq 0.8s ease-in-out infinite alternate;
}

.equalizer span:nth-child(1) { height: 20px; animation-delay: 0s; }
.equalizer span:nth-child(2) { height: 45px; animation-delay: 0.1s; }
.equalizer span:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.equalizer span:nth-child(4) { height: 60px; animation-delay: 0.15s; }
.equalizer span:nth-child(5) { height: 80px; animation-delay: 0.3s; }
.equalizer span:nth-child(6) { height: 55px; animation-delay: 0.05s; }
.equalizer span:nth-child(7) { height: 35px; animation-delay: 0.25s; }
.equalizer span:nth-child(8) { height: 70px; animation-delay: 0.1s; }
.equalizer span:nth-child(9) { height: 40px; animation-delay: 0.2s; }
.equalizer span:nth-child(10) { height: 25px; animation-delay: 0.35s; }

@keyframes eq {
    0% { height: 10px; }
    100% { height: 80px; }
}

.np-label {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.np-song {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.np-artist {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.btn-player {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-player:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 20, 147, 0.5);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

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

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.player-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.on-air {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.on-air-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.listeners {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Top Songs Sidebar */
.player-sidebar {
    background: var(--dark-medium);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.player-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
}

.top-songs li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.top-songs li:last-child {
    border-bottom: none;
}

.top-songs li:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    padding-left: 10px;
}

.rank {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    color: var(--primary);
    min-width: 30px;
}

.song-info {
    flex: 1;
}

.song-info strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.song-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-request {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-request:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Video En Vivo */
.section-video {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.section-video::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.section-video::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(156, 39, 176, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.video-player-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: var(--darker);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--darker);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.7), rgba(10, 10, 20, 0.85));
    transition: opacity 0.4s ease;
    cursor: pointer;
    z-index: 2;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-primary);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.video-play-btn i {
    margin-left: 4px;
}

.video-label {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.video-label i {
    color: var(--cyan);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .video-container {
        border-radius: 10px;
    }
}

/* Custom Video Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls,
.video-controls.vc-visible {
    opacity: 1;
}

.vc-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.vc-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.vc-btn:active {
    transform: scale(0.95);
}

.vc-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--red, #e53e3e);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.vc-live-badge.active {
    opacity: 1;
    animation: vc-pulse 2s infinite;
}

.vc-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
}

@keyframes vc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.vc-spacer {
    flex: 1;
}

.vc-volume {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
}

.vc-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cyan, #00d4ff);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
}

.vc-volume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cyan, #00d4ff);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
}

@media (max-width: 768px) {
    .video-controls {
        padding: 6px 8px;
        gap: 4px;
    }
    .vc-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    .vc-volume {
        width: 50px;
    }
    .vc-live-badge {
        font-size: 0.6rem;
        padding: 3px 7px;
    }
}

/* Schedule Section */
.section-schedule {
    background: var(--dark);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: none;
    align-items: center;
    gap: 25px;
    background: var(--dark-light);
    border-radius: var(--radius);
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.schedule-item.visible {
    display: flex;
}

.schedule-item:hover {
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.schedule-time {
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.85rem;
}

.schedule-time i {
    font-size: 1rem;
}

.schedule-info {
    flex: 1;
}

.schedule-show-img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.schedule-show-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-info h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.schedule-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.schedule-host {
    font-size: 0.8rem;
    color: var(--primary);
}

.schedule-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    white-space: nowrap;
}

.schedule-badge.live {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.schedule-badge.fire {
    background: rgba(255, 20, 147, 0.15);
    color: var(--primary);
}

.schedule-badge.romantic {
    background: rgba(247, 201, 72, 0.15);
    color: var(--accent);
}

/* DJs Section */
.section-djs {
    background: var(--dark-light);
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.dj-card {
    background: var(--dark-medium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    gap: 0;
}

.dj-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: var(--shadow);
}

.dj-image {
    position: relative;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dj-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dj-socials {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.dj-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dj-socials a:hover {
    background: var(--primary);
    color: white;
}

.dj-info {
    padding: 25px 25px 25px 5px;
    flex: 1;
}

.dj-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.dj-show {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.dj-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.dj-bio {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Events Section */
.section-events {
    background: var(--dark);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.event-card {
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: var(--shadow);
}

.event-card.featured {
    border-color: rgba(0, 212, 255, 0.25);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), var(--dark-light));
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    padding: 15px 25px;
    align-self: flex-start;
}

.event-month {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-day {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    line-height: 1;
}

.event-year {
    font-size: 0.7rem;
    opacity: 0.8;
}

.event-tag {
    display: inline-block;
    background: rgba(255, 20, 147, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.event-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.event-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.event-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.event-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-details i {
    color: var(--primary);
}

/* Traffic */
.section-traffic {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.section-traffic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff1744, #ff9100, #ffea00, #00e676, #00b0ff);
}

/* Status Bar */
.traffic-status-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.traffic-status-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.traffic-status-item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
}

.traffic-status-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.traffic-status-icon.accidents {
    background: rgba(255, 23, 68, 0.15);
    color: #ff1744;
}

.traffic-status-icon.congestion {
    background: rgba(255, 145, 0, 0.15);
    color: #ff9100;
}

.traffic-status-icon.closures {
    background: rgba(255, 234, 0, 0.15);
    color: #ffea00;
}

.traffic-status-icon.update-time {
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary);
}

.traffic-status-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.traffic-status-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Traffic Grid */
.traffic-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    margin-bottom: 30px;
}

/* Incidents Panel */
.traffic-incidents-panel,
.traffic-map-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
}

.traffic-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.traffic-panel-header h3 {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.traffic-panel-header h3 i {
    color: var(--primary);
    font-size: 0.85rem;
}

.traffic-refresh-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--primary);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.traffic-refresh-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: rotate(180deg);
}

.traffic-refresh-btn.spinning i {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.traffic-fullmap-btn {
    color: var(--primary);
    font-size: 0.75rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.traffic-fullmap-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
}

/* Incidents List */
.traffic-incidents-list {
    max-height: 450px;
    overflow-y: auto;
    padding: 10px;
}

.traffic-incidents-list::-webkit-scrollbar {
    width: 4px;
}

.traffic-incidents-list::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 2px;
}

.traffic-loading {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.4);
}

.traffic-loading i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.traffic-loading p {
    font-size: 0.85rem;
}

/* Incident Card */
.traffic-incident-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px 16px 16px 52px;
    margin-bottom: 10px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
    animation: slideInTraffic 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

/* Colored icon circle on the left */
.traffic-card-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    z-index: 1;
}
.traffic-card-icon.type-accident {
    background: rgba(255, 23, 68, 0.25);
    color: #ff5252;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
}
.traffic-card-icon.type-congestion {
    background: rgba(255, 145, 0, 0.25);
    color: #ffab40;
    box-shadow: 0 0 10px rgba(255, 145, 0, 0.3);
}
.traffic-card-icon.type-closure {
    background: rgba(255, 234, 0, 0.2);
    color: #ffee58;
    box-shadow: 0 0 10px rgba(255, 234, 0, 0.2);
}
.traffic-card-icon.type-construction {
    background: rgba(255, 171, 0, 0.25);
    color: #ffca28;
    box-shadow: 0 0 10px rgba(255, 171, 0, 0.25);
}
.traffic-card-icon.type-other {
    background: rgba(158, 158, 158, 0.2);
    color: #bdbdbd;
}

/* Remove old ::before pseudo-elements since we use real icon elements now */
.traffic-incident-card::before {
    display: none;
}

@keyframes slideInTraffic {
    from { opacity: 0; transform: translateX(-15px); }
    to { opacity: 1; transform: translateX(0); }
}

.traffic-incident-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    transform: translateX(3px);
}

/* ACCIDENT - Red */
.traffic-incident-card.type-accident {
    border-left-color: #ff1744;
    background: rgba(255, 23, 68, 0.04);
}
.traffic-incident-card.type-accident::before {
    background: rgba(255, 23, 68, 0.15);
    box-shadow: 0 0 12px rgba(255, 23, 68, 0.2);
}
.traffic-incident-card.type-accident:hover {
    background: rgba(255, 23, 68, 0.08);
    border-color: rgba(255, 23, 68, 0.3);
}

/* CONGESTION - Orange */
.traffic-incident-card.type-congestion {
    border-left-color: #ff9100;
    background: rgba(255, 145, 0, 0.04);
}
.traffic-incident-card.type-congestion::before {
    background: rgba(255, 145, 0, 0.15);
    box-shadow: 0 0 12px rgba(255, 145, 0, 0.2);
}
.traffic-incident-card.type-congestion:hover {
    background: rgba(255, 145, 0, 0.08);
    border-color: rgba(255, 145, 0, 0.3);
}

/* CLOSURE - Yellow */
.traffic-incident-card.type-closure {
    border-left-color: #ffea00;
    background: rgba(255, 234, 0, 0.03);
}
.traffic-incident-card.type-closure::before {
    background: rgba(255, 234, 0, 0.12);
}

/* CONSTRUCTION - Blue/Amber */
.traffic-incident-card.type-construction {
    border-left-color: #ffab00;
    background: rgba(255, 171, 0, 0.03);
}
.traffic-incident-card.type-construction::before {
    background: rgba(255, 171, 0, 0.12);
    box-shadow: 0 0 10px rgba(255, 171, 0, 0.15);
}
.traffic-incident-card.type-construction:hover {
    background: rgba(255, 171, 0, 0.07);
    border-color: rgba(255, 171, 0, 0.25);
}

.traffic-incident-card.type-other {
    border-left-color: #9e9e9e;
}

.traffic-incident-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.traffic-incident-type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.traffic-incident-type.accident {
    background: rgba(255, 23, 68, 0.2);
    color: #ff1744;
    border: 1px solid rgba(255, 23, 68, 0.3);
    font-size: 0.7rem;
}

.traffic-incident-type.congestion {
    background: rgba(255, 145, 0, 0.2);
    color: #ff9100;
    border: 1px solid rgba(255, 145, 0, 0.3);
    font-size: 0.7rem;
}

.traffic-incident-type.closure {
    background: rgba(255, 234, 0, 0.2);
    color: #ffea00;
    border: 1px solid rgba(255, 234, 0, 0.3);
}

.traffic-incident-type.construction {
    background: rgba(255, 171, 0, 0.15);
    color: #ffab00;
    border: 1px solid rgba(255, 171, 0, 0.25);
}

.traffic-incident-type.other {
    background: rgba(158, 158, 158, 0.15);
    color: #9e9e9e;
}

.traffic-incident-time {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

.traffic-incident-road {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.traffic-incident-road i {
    color: var(--primary);
    font-size: 0.7rem;
}

.traffic-incident-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

.traffic-incident-severity {
    display: flex;
    gap: 2px;
    margin-top: 6px;
}

.traffic-incident-severity span {
    width: 18px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
}

.traffic-incident-severity.high span:nth-child(-n+4) { background: #ff1744; }
.traffic-incident-severity.medium span:nth-child(-n+3) { background: #ff9100; }
.traffic-incident-severity.low span:nth-child(-n+2) { background: #ffea00; }

/* Traffic Source */
.traffic-source {
    padding: 10px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
}

.traffic-source a {
    color: var(--primary);
    text-decoration: none;
}

.traffic-source a:hover {
    text-decoration: underline;
}

/* WSB-TV specific styles */
.traffic-section-label {
    padding: 10px 14px;
    margin: 6px 6px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #ff1744;
    background: rgba(255, 23, 68, 0.06);
    border: 1px solid rgba(255, 23, 68, 0.15);
    border-left: 4px solid #ff1744;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.traffic-section-label i {
    font-size: 1rem;
}

.traffic-section-label.construction {
    color: #ffab00;
    background: rgba(255, 171, 0, 0.06);
    border-color: rgba(255, 171, 0, 0.15);
    border-left-color: #ffab00;
}

/* Divider between incidents and construction */
.traffic-section-label.construction::before {
    content: '';
    display: none;
}
.traffic-section-label + .traffic-section-label.construction {
    margin-top: 20px;
}

.traffic-fallback-note {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 8px;
    padding: 10px 14px;
    margin: 0 10px 12px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.traffic-fallback-note i {
    color: var(--primary);
    font-size: 0.85rem;
}

.traffic-fallback-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.traffic-fallback-note a:hover {
    text-decoration: underline;
}

.traffic-more-link {
    text-align: center;
    padding: 12px;
}

.traffic-more-link a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.traffic-more-link a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
}

.wsb-source {
    display: inline-block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    margin-left: 4px;
}

/* More link text */
.traffic-more-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    font-weight: 500;
}

/* No incidents */
.traffic-no-incidents {
    text-align: center;
    padding: 30px 20px;
    color: rgba(255,255,255,0.4);
}

.traffic-no-incidents i {
    font-size: 2.5rem;
    color: #00e676;
    margin-bottom: 10px;
    display: block;
}

.traffic-no-incidents h4 {
    color: white;
    margin-bottom: 5px;
}

.traffic-no-incidents p {
    font-size: 0.8rem;
}

/* Embedded Map */
.traffic-map-container {
    position: relative;
    height: 450px;
}

.traffic-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.traffic-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
}

.traffic-map-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.traffic-map-activate {
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.traffic-map-activate i {
    font-size: 1.5rem;
    color: var(--primary);
}

.traffic-map-activate span {
    font-size: 0.8rem;
}

.traffic-map-activate:hover {
    background: rgba(0, 212, 255, 0.25);
    transform: scale(1.05);
}

/* Routes Grid */
.traffic-routes {
    margin-top: 10px;
}

.traffic-routes-title {
    font-size: 1rem;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.traffic-routes-title i {
    color: var(--primary);
}

.traffic-routes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.route-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.route-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.03);
    transform: translateY(-2px);
}

.route-shield {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a3a6b, #0d2240);
    border: 2px solid #3366cc;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.5px;
}

.route-shield.ga {
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-color: #666;
    border-radius: 50%;
}

.route-name {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.route-status {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.route-indicator {
    height: 3px;
    border-radius: 2px;
    margin-top: 10px;
    transition: background 0.5s;
}

.route-indicator.loading {
    background: rgba(255,255,255,0.1);
    animation: routePulse 1.5s ease-in-out infinite;
}

@keyframes routePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.route-indicator.clear {
    background: #00e676;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.3);
}

.route-indicator.moderate {
    background: #ff9100;
    box-shadow: 0 0 8px rgba(255, 145, 0, 0.3);
}

.route-indicator.heavy {
    background: #ff1744;
    box-shadow: 0 0 8px rgba(255, 23, 68, 0.3);
}

.route-indicator.closed {
    background: #9e9e9e;
}

/* Error state */
.traffic-error {
    text-align: center;
    padding: 25px 20px;
    color: rgba(255,255,255,0.4);
}

.traffic-error i {
    font-size: 2rem;
    color: #ff9100;
    margin-bottom: 8px;
    display: block;
}

.traffic-error p {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.traffic-error a {
    color: var(--primary);
    font-size: 0.8rem;
    text-decoration: none;
}

.traffic-error a:hover {
    text-decoration: underline;
}

/* Traffic Section Responsive */
@media (max-width: 1024px) {
    .traffic-grid {
        grid-template-columns: 1fr;
    }

    .traffic-routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .traffic-status-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .traffic-map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .traffic-routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .traffic-status-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .traffic-status-item {
        padding: 12px;
    }

    .traffic-status-count {
        font-size: 1.2rem;
    }

    .traffic-map-container {
        height: 300px;
    }

    .traffic-incidents-list {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .traffic-status-bar {
        grid-template-columns: 1fr 1fr;
    }

    .traffic-routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .route-card {
        padding: 12px;
    }

    .route-shield {
        width: 40px;
        height: 40px;
        font-size: 0.65rem;
    }
}

/* News Section */
.section-news {
    background: var(--dark-light);
}

/* Noticias Atlanta Audio Player */
.noticias-audio-player {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(156, 39, 176, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    margin: 0 auto 35px;
    max-width: 700px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.noticias-audio-player:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.noticias-audio-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.noticias-audio-info {
    flex-shrink: 0;
    min-width: 120px;
}

.noticias-audio-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1px;
    color: #fff;
    letter-spacing: 0.3px;
}

.noticias-audio-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.noticias-audio {
    flex: 1;
    min-width: 0;
    height: 36px;
    border-radius: 20px;
    filter: invert(1) hue-rotate(180deg) brightness(0.85) contrast(0.9);
}

@media (max-width: 600px) {
    .noticias-audio-player {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }
    .noticias-audio-info {
        min-width: auto;
    }
    .noticias-audio {
        width: 100%;
        flex: unset;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.news-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: rgba(255,255,255,0.4);
}

.news-loading i {
    font-size: 2rem;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.news-card {
    background: var(--dark-medium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    animation: newsSlideIn 0.5s ease-out;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: default;
}

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

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow);
}

.news-card.large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 100%);
}

.news-card.large .news-image {
    height: 100%;
    min-height: 260px;
}

.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    z-index: 1;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-image img + .news-icon {
    display: none;
}

.news-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.25);
    z-index: 1;
    transition: transform 0.4s ease, color 0.4s ease;
}

.news-card:hover .news-icon {
    transform: scale(1.15);
    color: rgba(255, 255, 255, 0.4);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    z-index: 3;
    color: white;
}

.news-content {
    padding: 22px;
}

.news-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.news-date i {
    color: var(--primary);
    font-size: 0.7rem;
}

.news-content h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: white;
}

.news-card:hover .news-content h4 {
    color: var(--primary);
}

.news-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-more {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.news-card:hover .news-read-more {
    gap: 10px;
}

.news-source-badge {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
}

.news-link {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.news-link:hover {
    gap: 10px;
    color: var(--secondary);
}

.news-source-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.news-source-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.news-source-footer a:hover {
    color: white;
}

.news-refresh-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.news-refresh-btn:hover {
    background: rgba(0, 212, 255, 0.2);
}

.news-refresh-btn.spinning i {
    animation: spin 0.8s linear infinite;
}

/* App Section */
.section-app {
    background: var(--dark);
    overflow: hidden;
}

.app-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.app-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.app-feature i {
    color: var(--primary);
    font-size: 1.1rem;
    min-width: 20px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 12px 24px;
    transition: var(--transition);
}

.app-store-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.app-store-btn i {
    font-size: 1.8rem;
}

.app-store-btn small {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
}

.app-store-btn strong {
    font-size: 1rem;
}

/* Phone Mockup */
.app-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 550px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 15px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: var(--gradient-primary);
    padding: 30px 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.phone-player {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.phone-eq {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    margin-bottom: 25px;
}

.phone-eq span {
    width: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: eq 0.8s ease-in-out infinite alternate;
}

.phone-eq span:nth-child(1) { height: 15px; animation-delay: 0s; }
.phone-eq span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.phone-eq span:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.phone-eq span:nth-child(4) { height: 30px; animation-delay: 0.15s; }
.phone-eq span:nth-child(5) { height: 20px; animation-delay: 0.25s; }

.phone-song {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.phone-controls {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--text-muted);
}

.phone-controls .fa-play-circle {
    color: var(--primary);
}

/* Advertise Section */
.section-advertise {
    background: var(--gradient-primary);
    padding: 60px 0;
}

.advertise-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.advertise-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.advertise-content p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-top: 5px;
}

.section-advertise .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.section-advertise .btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.section-contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group label i {
    color: var(--primary);
    margin-right: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-medium);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-group select option {
    background: var(--dark-medium);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    background: var(--dark-light);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-socials {
    background: var(--dark-light);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.contact-socials h4 {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    color: white;
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube { background: #ff0000; }
.social-link.tiktok { background: #000; border: 1px solid rgba(255,255,255,0.1); }
.social-link.whatsapp { background: #25d366; }

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* WhatsApp QR Section */
.whatsapp-qr-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #075e54, #128c7e, #25d366);
    position: relative;
    overflow: hidden;
}

.whatsapp-qr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.whatsapp-qr-section .section-header {
    margin-bottom: 40px;
}

.whatsapp-qr-section .section-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.whatsapp-qr-section .section-title {
    color: #fff;
}

.whatsapp-qr-section .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.whatsapp-qr-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    transition: var(--transition);
}

.whatsapp-qr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.whatsapp-qr-img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px;
    border-radius: 12px;
}

.whatsapp-qr-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 8px;
}

.whatsapp-qr-hint {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-qr-hint i {
    color: #25d366;
}

@media (max-width: 768px) {
    .whatsapp-qr-section {
        padding: 60px 0;
    }
    .whatsapp-qr-card {
        padding: 24px;
        margin: 0 16px;
    }
    .whatsapp-qr-img {
        max-width: 220px;
    }
}

/* Footer */
.footer {
    background: var(--dark-light);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 15px 0 20px;
    line-height: 1.7;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-links li a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    background: var(--dark-medium);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .player-wrapper {
        grid-template-columns: 1fr;
    }
    
    .djs-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.large {
        grid-template-columns: 1fr;
    }
    
    .app-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-features {
        justify-items: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number, .stat-suffix {
        font-size: 2rem;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .schedule-time {
        min-width: auto;
    }
    
    .dj-card {
        flex-direction: column;
    }
    
    .dj-image {
        flex-direction: row;
        padding: 20px;
        gap: 15px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .advertise-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-player {
        padding: 60px 0;
    }
    
    .phone-mockup {
        width: 230px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .player-card {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .schedule-tabs {
        gap: 5px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .back-to-top {
        right: 25px;
        bottom: 95px;
    }
}

/* Form Success Message */
.form-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    display: none;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-success i {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 10px;
    display: block;
}

.form-success h4 {
    margin-bottom: 5px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}

/* Bottom bar */
body {
    padding-bottom: 110px;
}

.bottom-bar-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(180deg, rgba(10,10,20,0.97) 0%, rgba(5,5,15,0.99) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(0, 212, 255, 0.15);
    height: 110px;
    transition: all 0.3s ease;
}

.bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    gap: 16px;
    position: relative;
}

/* Album Art — large & prominent */
.bar-art {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
    position: relative;
}

.bar-art:hover {
    transform: scale(1.05);
}

.bar-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

.bar-art-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.bar-art-glow.active {
    opacity: 1;
}

/* Main area: info + controls stacked */
.bar-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    height: 100%;
    padding: 10px 0;
}

/* Center branding logo */
.bar-center-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.bar-center-logo a {
    display: block;
    pointer-events: auto;
}

.bar-center-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .bar-center-logo img {
        height: 50px;
    }
}

/* Song info row */
.bar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.bar-song {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    transition: opacity 0.3s;
}

.bar-artist {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    transition: opacity 0.3s;
}

.bar-album {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    font-style: italic;
    transition: opacity 0.3s;
}

.bar-album:empty {
    display: none;
}

/* Controls row */
.bar-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Equalizer in bar */
.bar-eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
    min-width: 20px;
}

.bar-eq span {
    display: block;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
    height: 4px;
    transition: height 0.2s ease;
}

.bar-eq.active span {
    animation: barEqBounce 0.8s ease-in-out infinite alternate;
}

.bar-eq.active span:nth-child(1) { animation-delay: 0s; }
.bar-eq.active span:nth-child(2) { animation-delay: 0.15s; }
.bar-eq.active span:nth-child(3) { animation-delay: 0.3s; }
.bar-eq.active span:nth-child(4) { animation-delay: 0.1s; }
.bar-eq.active span:nth-child(5) { animation-delay: 0.25s; }

@keyframes barEqBounce {
    0% { height: 4px; }
    100% { height: 18px; }
}

/* Live indicator */
.bar-live {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.bar-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    transition: background 0.3s;
}

.bar-live-dot.active {
    background: #ff1744;
    box-shadow: 0 0 8px rgba(255, 23, 68, 0.7);
    animation: barPulse 1.5s ease-in-out infinite;
}

@keyframes barPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(255, 23, 68, 0.7); }
    50% { opacity: 0.5; box-shadow: 0 0 15px rgba(255, 23, 68, 0.5); }
}

.bar-live-text {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.bar-live-dot.active + .bar-live-text,
.bar-live:has(.bar-live-dot.active) .bar-live-text {
    color: #ff1744;
}

/* Play button */
.bar-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 212, 255, 0.3);
}

.bar-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 25px rgba(0, 212, 255, 0.5);
}

.bar-play-btn:active {
    transform: scale(0.95);
}

/* Genre badge */
.bar-genre {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--cyan, #00d4ff);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.bar-genre:empty {
    display: none;
}

.bar-spacer {
    flex: 1;
}

/* Song info */
.bar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    gap: 2px;
}

/* Volume */
.bar-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bar-volume-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

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

.bar-volume-slider {
    width: 90px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.bar-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
    transition: transform 0.2s;
}

.bar-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.bar-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
}

/* Listeners */
.bar-listeners {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.bar-listeners i {
    color: var(--accent);
    font-size: 0.7rem;
}

/* Install button */
.bar-install {
    background: none;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.bar-install:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
}

/* Bottom bar responsive */
@media (max-width: 768px) {
    .bottom-bar-player {
        height: 95px;
    }

    body {
        padding-bottom: 95px;
    }

    .bar-inner {
        padding: 0 12px;
        gap: 10px;
    }

    .bar-volume-slider {
        display: none;
    }

    .bar-listeners {
        display: none;
    }

    .bar-live-text {
        display: none;
    }

    .bar-play-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .bar-art {
        width: 75px;
        height: 75px;
        border-radius: 10px;
    }

    .bar-song {
        font-size: 0.85rem;
    }

    .bar-artist {
        font-size: 0.72rem;
    }

    .bar-album {
        display: none;
    }

    .bar-genre {
        display: none;
    }
}

@media (max-width: 480px) {
    .bottom-bar-player {
        height: 85px;
    }

    body {
        padding-bottom: 85px;
    }

    .bar-inner {
        padding: 0 8px;
        gap: 8px;
    }

    .bar-eq {
        display: none;
    }

    .bar-install {
        display: none;
    }

    .bar-art {
        width: 65px;
        height: 65px;
        border-radius: 8px;
    }

    .bar-play-btn {
        width: 34px;
        height: 34px;
    }

    .bar-song {
        font-size: 0.8rem;
    }
}

/* Fix WhatsApp float and back-to-top for bottom bar */
.whatsapp-float {
    bottom: 125px !important;
}

.back-to-top {
    bottom: 125px !important;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 110px !important;
    }
    .back-to-top {
        bottom: 110px !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 100px !important;
    }
    .back-to-top {
        bottom: 100px !important;
    }
}

/* ========================================
   PROMOTIONS SECTION (Connected to Panel)
   ======================================== */

.section-promotions {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.97) 0%, rgba(10, 5, 30, 1) 50%, rgba(0, 0, 0, 0.97) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.section-promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 30%, rgba(255, 193, 7, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(138, 43, 226, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Slider wrapper */
.promos-slider-wrapper {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.promos-slider {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(138, 43, 226, 0.1);
}

.promos-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.promo-slide {
    min-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #0a0a15;
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.02);
}

/* Image container — show full image, no cropping */
.promo-card-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #0a0a15;
}

.promo-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

/* Gradient overlay on image bottom for readability */
.promo-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Badge */
.promo-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a1a2e;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.5);
}

.promo-card-badge i {
    margin-right: 4px;
}

/* Actions bar overlaid at bottom of image */
.promo-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 24px 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
}

.promo-card-info h4 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.promo-card-info p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
}

.promo-card-info .promo-date {
    color: #ffc107;
    font-size: 0.78rem;
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.promo-card-info .promo-date i {
    margin-right: 4px;
}

.btn-participate {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a1a2e;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.35);
}

.btn-participate:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
}

.btn-participate:active {
    transform: scale(0.97);
}

.btn-participate i {
    margin-right: 5px;
}

/* Nav Buttons — now absolutely positioned over slider */
.promo-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(12px);
}

.promo-nav-btn.promo-prev {
    left: -24px;
}

.promo-nav-btn.promo-next {
    right: -24px;
}

.promo-nav-btn:hover {
    background: rgba(255, 193, 7, 0.25);
    border-color: #ffc107;
    color: #ffc107;
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.promo-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.promo-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.promo-dot.active {
    background: #ffc107;
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.6);
    transform: scale(1.3);
    border-color: rgba(255, 193, 7, 0.3);
}

/* Counter indicator */
.promo-counter {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loading */
.promo-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
}

.promo-loading i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #ffc107;
}

/* No promos message */
.promo-empty {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.promo-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   PROMOTION MODAL
   ======================================== */

.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.promo-modal {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

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

.promo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}

.promo-modal-close:hover {
    background: rgba(255, 0, 0, 0.3);
}

.promo-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.promo-modal-header i {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 10px;
    display: block;
}

.promo-modal-header h3 {
    font-size: 1.3rem;
    color: white;
}

.promo-modal-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.promo-modal-form .form-group {
    margin-bottom: 15px;
}

.promo-modal-form label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.promo-modal-form label i {
    margin-right: 5px;
    color: var(--primary);
}

.promo-modal-form input,
.promo-modal-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
    box-sizing: border-box;
}

.promo-modal-form input:focus,
.promo-modal-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.promo-modal-form input::placeholder,
.promo-modal-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.promo-modal-form .btn-block {
    width: 100%;
    margin-top: 10px;
}

/* Modal success */
.promo-modal-success {
    text-align: center;
    padding: 30px 0;
}

.promo-modal-success i {
    font-size: 3.5rem;
    color: #00ff88;
    margin-bottom: 15px;
    display: block;
    animation: successBounce 0.6s ease;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.promo-modal-success h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.promo-modal-success p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Promotions responsive */
@media (max-width: 1024px) {
    .promos-slider-wrapper {
        max-width: 600px;
    }

    .promo-nav-btn.promo-prev {
        left: -18px;
    }

    .promo-nav-btn.promo-next {
        right: -18px;
    }
}

@media (max-width: 768px) {
    .section-promotions {
        padding: 60px 0;
    }

    .promos-slider-wrapper {
        max-width: 100%;
        margin: 0 15px;
    }

    .promo-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .promo-nav-btn.promo-prev {
        left: 8px;
    }

    .promo-nav-btn.promo-next {
        right: 8px;
    }

    .promo-card-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px 16px 16px;
    }

    .btn-participate {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .promo-card-info h4 {
        font-size: 1rem;
    }

    .promo-modal {
        padding: 20px;
        margin: 10px;
    }

    .promo-counter {
        top: 12px;
        right: 12px;
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .section-promotions {
        padding: 50px 0;
    }

    .promos-slider-wrapper {
        margin: 0 10px;
    }

    .promos-slider {
        border-radius: 14px;
    }

    .promo-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .promo-nav-btn.promo-prev {
        left: 5px;
    }

    .promo-nav-btn.promo-next {
        right: 5px;
    }

    .promo-card-badge {
        top: 10px;
        left: 10px;
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .promo-card-info h4 {
        font-size: 0.9rem;
    }

    .promo-dots {
        gap: 8px;
        margin-top: 18px;
    }

    .promo-dot {
        width: 8px;
        height: 8px;
    }
}
