/* ==========================================================================
   CSS SYSTEM - DJ JUNIOR OLEA: LA CABINA ANDINA DIGITAL
   ========================================================================== */

/* --- 1. DESIGN TOKENS (VARIABLES) --- */
:root {
    /* Color Palette */
    --color-bg-deep: #060609;
    --color-bg-card: rgba(18, 18, 26, 0.65);
    --color-bg-card-hover: rgba(26, 26, 38, 0.8);
    --color-text-main: #f5f5fa;
    --color-text-muted: #a0a0b0;
    
    /* Neon Accents */
    --neon-blue: #00f0ff;
    --neon-purple: #d000ff;
    --neon-red: #ff0055;
    --gold: #e6c875;
    --gold-rgb: 230, 200, 117;
    
    /* Neon Shadows */
    --glow-blue: 0 0 10px rgba(0, 240, 255, 0.4), 0 0 25px rgba(0, 240, 255, 0.2);
    --glow-purple: 0 0 10px rgba(208, 0, 255, 0.4), 0 0 25px rgba(208, 0, 255, 0.2);
    --glow-red: 0 0 10px rgba(255, 0, 85, 0.5), 0 0 25px rgba(255, 0, 85, 0.2);
    --glow-gold: 0 0 10px rgba(230, 200, 117, 0.4), 0 0 25px rgba(230, 200, 117, 0.2);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --header-height: 80px;
    --border-radius: 16px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glassmorphism */
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- 2. GLOBAL RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

button, input, select, textarea {
    font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: #1a1a24;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

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

.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* --- 2b. FIXED PAGE BACKGROUND VIDEO --- */
.page-bg-video-wrap {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-bg-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 6, 9, 0.75), rgba(6, 6, 9, 0.92));
}

/* --- 3. ANIMATED ANDEAN FOG EFFECTS --- */
.fog-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    overflow: hidden;
}

.fog-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: repeat-x url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 1000 600"><path fill="%23ffffff" opacity="0.1" d="M0,150 C150,100 350,200 500,150 C650,100 850,200 1000,150 L1000,600 L0,600 Z"/><path fill="%23ffffff" opacity="0.15" d="M0,250 C150,200 350,300 500,250 C650,200 850,300 1000,250 L1000,600 L0,600 Z"/></svg>');
    background-size: 50% 100%;
}

.fog-layer-1 {
    animation: drift-fog 60s linear infinite;
}

.fog-layer-2 {
    animation: drift-fog 35s linear infinite reverse;
    opacity: 0.7;
    filter: blur(5px);
}

@keyframes drift-fog {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- 4. GLASSMORPHISM UTILITY --- */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

/* --- 5. HEADER & NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(6, 6, 9, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    transition: var(--transition-fast);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(6, 6, 9, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.logo-accent {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
    margin-right: 6px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    padding: 8px 12px;
    border-radius: 8px;
}

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

.nav-link.active {
    border-bottom: 2px solid var(--neon-blue);
    border-radius: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-live-header {
    background: linear-gradient(135deg, var(--neon-red), #b3003b);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--glow-red);
    transition: var(--transition-fast);
}

.btn-live-header:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

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

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-fast);
}

/* --- 6. BUTTON SYSTEM --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    color: #060609;
}

.btn-neon-blue {
    background: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.btn-neon-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8), 0 0 40px rgba(0, 240, 255, 0.4);
}

.btn-neon-purple {
    background: var(--neon-purple);
    color: white;
    box-shadow: var(--glow-purple);
}

.btn-neon-purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(208, 0, 255, 0.8), 0 0 40px rgba(208, 0, 255, 0.4);
}

.btn-neon-red {
    background: var(--neon-red);
    color: white;
    box-shadow: var(--glow-red);
}

.btn-neon-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.8), 0 0 40px rgba(255, 0, 85, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-gold {
    background: var(--gold);
    box-shadow: var(--glow-gold);
    color: #060609;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(230, 200, 117, 0.8);
}

.btn-outline {
    background: transparent;
    border: 2px solid currentColor;
}

.btn-gold.btn-outline {
    color: var(--gold);
    background: transparent;
}

.btn-gold.btn-outline:hover {
    background: var(--gold);
    color: #060609;
}

.btn-icon-only {
    padding: 14px;
    border-radius: 50%;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* --- 7. SECTION HEADER --- */
.section-header {
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.section-header.text-center {
    text-align: center;
}

.subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-desc {
    color: var(--color-text-muted);
    max-width: 600px;
    font-size: 1.1rem;
}

/* --- 8. HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 80vh;
    align-content: center;
    gap: 60px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #fff;
    background: rgba(10, 4, 16, 0.55);
    border: 2px solid var(--neon-purple);
    padding: 8px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.animate-glow {
    animation: neon-sign-flicker 4s infinite;
}

@keyframes neon-sign-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 0 0 4px #fff, 0 0 11px var(--neon-purple), 0 0 22px var(--neon-purple), 0 0 15px var(--neon-blue), 0 0 42px var(--neon-blue);
        border-color: var(--neon-purple);
        box-shadow: inset 0 0 10px rgba(208, 0, 255, 0.4), 0 0 14px rgba(208, 0, 255, 0.7), 0 0 38px rgba(0, 240, 255, 0.45);
    }
    20%, 24%, 55% {
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.25);
        border-color: rgba(208, 0, 255, 0.15);
        box-shadow: none;
    }
}

.hero-title {
    position: relative;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title::before,
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: none;
}

.hero-title::before {
    color: var(--neon-blue);
    -webkit-text-fill-color: var(--neon-blue);
    z-index: -1;
    animation: hero-glitch-1 4.5s infinite linear;
}

.hero-title::after {
    color: var(--neon-purple);
    -webkit-text-fill-color: var(--neon-purple);
    z-index: -2;
    animation: hero-glitch-2 4.5s infinite linear;
}

@keyframes hero-glitch-1 {
    0%, 91%, 100% { clip-path: inset(0 0 0 0); transform: translate(0, 0); opacity: 0; }
    92% { clip-path: inset(10% 0 62% 0); transform: translate(-4px, 2px); opacity: 0.85; }
    93% { clip-path: inset(55% 0 8% 0); transform: translate(4px, -2px); opacity: 0.85; }
    94% { clip-path: inset(28% 0 40% 0); transform: translate(-3px, 1px); opacity: 0.85; }
    95%, 100% { opacity: 0; }
}

@keyframes hero-glitch-2 {
    0%, 89%, 100% { clip-path: inset(0 0 0 0); transform: translate(0, 0); opacity: 0; }
    90% { clip-path: inset(70% 0 6% 0); transform: translate(4px, -2px); opacity: 0.85; }
    91% { clip-path: inset(18% 0 58% 0); transform: translate(-4px, 2px); opacity: 0.85; }
    92% { clip-path: inset(45% 0 25% 0); transform: translate(3px, -1px); opacity: 0.85; }
    93%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(11, 11, 15, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.stat-plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-blue);
}

.stat-label {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

/* --- 9. LIVE NOW SECTION --- */
.live-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.live-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
}

.stream-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stream-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 0, 85, 0.1);
    color: var(--neon-red);
    border: 1px solid rgba(255, 0, 85, 0.2);
}

.live-badge.live-active {
    background: rgba(255, 0, 85, 0.2);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
}

.live-badge.live-active .pulse-dot {
    background-color: var(--neon-red);
    box-shadow: var(--glow-red);
}

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

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #0b0b0f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: var(--transition-normal);
}

.video-overlay-play {
    position: absolute;
    z-index: 10;
    text-align: center;
    cursor: pointer;
}

.play-trigger-btn {
    width: 80px;
    height: 80px;
    background: var(--neon-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #060609;
    box-shadow: var(--glow-blue);
    transition: var(--transition-normal);
    margin-bottom: 16px;
}

.play-trigger-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.video-placeholder:hover .play-trigger-btn {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--neon-blue);
}

.overlay-text {
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Now Playing strip: shows current track title over the stream image */
.now-playing-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(rgba(6, 6, 9, 0.85), rgba(6, 6, 9, 0));
    opacity: 0;
    transform: translateY(-6px);
    transition: var(--transition-normal);
    pointer-events: none;
}

.now-playing-strip.active {
    opacity: 1;
    transform: translateY(0);
}

.now-playing-icon {
    color: var(--neon-blue);
    flex-shrink: 0;
}

.now-playing-marquee {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.now-playing-text {
    display: inline-block;
    font-family: 'Orbitron', var(--font-heading), sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.7), 0 2px 6px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
    vertical-align: top;
    padding-left: 100%;
    animation: now-playing-marquee 14s linear infinite;
}

@keyframes now-playing-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Equalizer Bars on stream playing */
.audio-equalizer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3px;
    height: 40px;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 5;
}

.audio-equalizer.active {
    opacity: 1;
}

.audio-equalizer .bar {
    width: 10px;
    height: 100%;
    background-color: var(--neon-blue);
    border-radius: 3px;
    animation: equalize 1s ease-in-out infinite alternate;
    transform-origin: bottom;
}

.audio-equalizer .bar:nth-child(even) { background-color: var(--neon-purple); }
.audio-equalizer .bar:nth-child(6n+1) { animation-duration: 0.6s; }
.audio-equalizer .bar:nth-child(6n+2) { animation-duration: 0.8s; }
.audio-equalizer .bar:nth-child(6n+3) { animation-duration: 0.5s; }
.audio-equalizer .bar:nth-child(6n+4) { animation-duration: 0.7s; }
.audio-equalizer .bar:nth-child(6n+5) { animation-duration: 0.9s; }
.audio-equalizer .bar:nth-child(6n+6) { animation-duration: 0.4s; }

@keyframes equalize {
    0% { transform: scaleY(0.15); }
    100% { transform: scaleY(1); }
}

.stream-footer {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.stream-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.stream-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.stream-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.schedule-panel {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.schedule-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.panel-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.countdown-container {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
}

.countdown-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.countdown-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
}

.countdown-lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.schedule-list h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-blue);
    margin-bottom: 16px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .day {
    font-weight: 600;
}

.schedule-item .time {
    color: var(--color-text-muted);
}

.schedule-item.active-day {
    color: var(--gold);
}

.panel-action {
    margin-top: auto;
    padding-top: 24px;
}

/* --- 10. FOOTBALL LIVE SECTION --- */
.football-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.football-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 240, 255, 0.04) 0%, transparent 60%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.football-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px 16px;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn.active {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* Match Card Styles */
.match-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-text-muted);
}

.match-card.today::before {
    background-color: var(--neon-red);
    box-shadow: var(--glow-red);
}

.match-card.upcoming::before {
    background-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.match-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.match-tag-today {
    color: var(--neon-red);
    text-shadow: var(--glow-red);
    font-weight: 700;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team {
    text-align: center;
    flex: 1;
}

.team-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
}

.team-name {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
    display: block;
    margin: 0 auto;
}

.match-vs {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 700;
    padding: 0 16px;
}

.match-score {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
}

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

.match-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- Mundial 2026: resultados y partidos del día --- */
.mundial-col-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-blue);
    margin: 32px 0 16px;
}

.mundial-loading,
.mundial-empty {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 16px 0;
}

.mundial-updated {
    margin-top: 24px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: right;
}

.match-card.live::before {
    background-color: var(--neon-red);
    box-shadow: var(--glow-red);
    animation: livePulseBar 1.2s infinite;
}

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

.match-tag-live {
    color: var(--neon-red);
    text-shadow: var(--glow-red);
    font-weight: 700;
}

.match-card.finished::before {
    background-color: var(--color-text-muted);
}

.team-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Entrada escalonada + hover con elevación para las tarjetas del Mundial */
#mundial .match-card {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
    animation: mundialCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes mundialCardIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

#mundial .match-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#mundial .match-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35), var(--glow-blue);
    border-color: rgba(0, 240, 255, 0.25);
}

#mundial .match-card.live {
    animation: mundialCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards, liveCardGlow 2.4s ease-in-out infinite;
}

@keyframes liveCardGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(255, 0, 85, 0); }
    50% { box-shadow: 0 0 24px rgba(255, 0, 85, 0.25); }
}

.match-score.score-flash {
    animation: scoreFlash 0.9s ease;
}

@keyframes scoreFlash {
    0% { color: var(--neon-red); text-shadow: var(--glow-red); transform: scale(1.25); }
    100% { color: #fff; text-shadow: none; transform: scale(1); }
}

.sports-flyer {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    padding: 48px;
    align-items: center;
    gap: 32px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.flyer-info h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    margin-top: 12px;
}

.flyer-info p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 4px;
}

.tag-gold {
    background-color: rgba(230, 200, 117, 0.1);
    color: var(--gold);
    border: 1px solid rgba(230, 200, 117, 0.3);
}

.flyer-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.football-graphic {
    position: relative;
    width: 150px;
    height: 150px;
}

.soccer-ball {
    font-size: 5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: rotate-ball 12s linear infinite;
}

@keyframes rotate-ball {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    animation: ring-pulse 2s infinite;
    z-index: 1;
}

@keyframes ring-pulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* --- 11. EXPERIENCE SECTION --- */
.experience-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.experience-card {
    padding: 40px 32px;
    text-align: left;
    transition: var(--transition-normal);
}

.experience-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #060609;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.card-icon.neon-blue { background-color: var(--neon-blue); box-shadow: var(--glow-blue); }
.card-icon.neon-purple { background-color: var(--neon-purple); box-shadow: var(--glow-purple); color: white; }
.card-icon.neon-red { background-color: var(--neon-red); box-shadow: var(--glow-red); color: white; }
.card-icon.gold { background-color: var(--gold); box-shadow: var(--glow-gold); }

.experience-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.experience-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* --- 12. MUSIC SECTION --- */
.music-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.track-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.track-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #0b0b0f;
    overflow: hidden;
}

.track-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.track-card:hover .track-img-container img {
    transform: scale(1.05);
}

.track-overlay-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 9, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.track-card:hover .track-overlay-btn {
    opacity: 1;
}

.btn-play-track {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--neon-purple);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--glow-purple);
    transition: var(--transition-fast);
}

.btn-play-track:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--neon-purple);
}

.btn-play-track svg {
    width: 24px;
    height: 24px;
}

.btn-play-track .play-icon { margin-left: 2px; }

.track-info {
    padding: 24px;
}

.track-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.track-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

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

/* Audio spectrum visualizer in footer */
.music-equalizer-footer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.eq-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.eq-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    flex-grow: 1;
    max-width: 400px;
}

.eq-bars span {
    width: 100%;
    height: 10%;
    background-color: var(--neon-purple);
    border-radius: 1px;
    transition: height 0.15s ease;
}

/* --- 12b. PENDRIVE MUSICAL (PRODUCTO) --- */
.product-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.product-info > p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.product-features .icon-circle {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .product-card {
        grid-template-columns: 1fr;
    }
    .product-features {
        grid-template-columns: 1fr;
    }
}

/* --- 13. EVENTS AGENDA SECTION --- */
.events-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

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

.event-card {
    display: flex;
    padding: 24px;
    gap: 20px;
    align-items: flex-start;
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    min-width: 70px;
    height: 70px;
    text-align: center;
}

.event-date-badge .day {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neon-blue);
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.event-details {
    flex-grow: 1;
}

.event-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 4px;
    display: block;
}

.event-details h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.event-details .location {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-details .desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.event-actions {
    display: flex;
    gap: 10px;
}

/* --- 14. GALLERY SECTION --- */
.gallery-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-auto-rows: 240px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 9, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-hover span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: var(--glow-blue);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

/* Span masonry sizing */
.gallery-item:nth-child(2) {
    grid-row: span 2;
}
.gallery-item:nth-child(3) {
    grid-column: span 2;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 6, 9, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.lightbox-caption {
    margin-top: 16px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--neon-blue);
    color: #060609;
    box-shadow: var(--glow-blue);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* --- 15. BOOKING SECTION --- */
.booking-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.booking-info h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.booking-info p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.quick-contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.contact-item p {
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
}

.booking-form-container {
    padding: 40px;
}

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

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

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    transition: var(--transition-fast);
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

select option {
    background-color: var(--color-bg-deep);
    color: #fff;
}

/* --- 16. COMMUNITY SECTION --- */
.community-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(208, 0, 255, 0.02));
}

.community-section .section-desc {
    margin: 16px auto 48px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.social-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.social-card span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Hover effects matching brand colors */
.social-card.wa:hover { border-color: #25d366; box-shadow: 0 0 15px rgba(37, 211, 102, 0.2); }
.social-card.wa:hover .social-icon { background-color: #25d366; color: #060609; }

.social-card.ig:hover { border-color: #e1306c; box-shadow: 0 0 15px rgba(225, 48, 108, 0.2); }
.social-card.ig:hover .social-icon { background-color: #e1306c; color: white; }

.social-card.tt:hover { border-color: #00f2fe; box-shadow: 0 0 15px rgba(0, 242, 254, 0.2); }
.social-card.tt:hover .social-icon { background-color: #00f2fe; color: #060609; }

.social-card.yt:hover { border-color: #ff0000; box-shadow: 0 0 15px rgba(255, 0, 0, 0.2); }
.social-card.yt:hover .social-icon { background-color: #ff0000; color: white; }

/* --- 17. FLOATING AUDIO PLAYER --- */
.floating-audio-player {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(18, 18, 26, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: var(--glass-shadow), 0 0 20px rgba(208, 0, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 99;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
    max-width: 90vw;
}

.floating-audio-player.active {
    transform: translateY(0);
    opacity: 1;
}

/* EQ bar indicator in mini-player */
.player-visual-eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 18px;
    width: 20px;
}

.player-visual-eq span {
    width: 3px;
    height: 100%;
    background-color: var(--neon-purple);
    transform-origin: bottom;
}

.floating-audio-player.playing .player-visual-eq span {
    animation: equalize-mini 1s ease-in-out infinite alternate;
}

.floating-audio-player.playing .player-visual-eq span:nth-child(1) { animation-duration: 0.4s; }
.floating-audio-player.playing .player-visual-eq span:nth-child(2) { animation-duration: 0.8s; }
.floating-audio-player.playing .player-visual-eq span:nth-child(3) { animation-duration: 0.6s; }
.floating-audio-player.playing .player-visual-eq span:nth-child(4) { animation-duration: 0.5s; }

@keyframes equalize-mini {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}

.player-track-info {
    max-width: 180px;
}

.player-track-info h5 {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-track-info p {
    font-size: 0.75rem;
    color: var(--neon-purple);
    font-weight: 700;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.player-btn:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}

.player-btn svg {
    width: 18px;
    height: 18px;
}

.btn-play-main {
    background: white;
    color: #060609;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-play-main:hover {
    background: var(--neon-purple);
    color: white;
    box-shadow: var(--glow-purple);
    transform: scale(1.05);
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vol-icon {
    font-size: 0.95rem;
    cursor: pointer;
}

#fp-volume {
    width: 70px;
    height: 4px;
    accent-color: var(--neon-purple);
    cursor: pointer;
}

.player-close-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    margin-left: 8px;
}

.player-close-btn:hover {
    color: var(--neon-red);
}

/* --- 18. FIXED WHATSAPP WIDGET --- */
.fixed-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), var(--glow-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: var(--transition-normal);
}

.fixed-whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.fixed-whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 25px #25d366;
}

.wa-tooltip {
    position: absolute;
    right: 76px;
    background-color: rgba(6, 6, 9, 0.9);
    border: 1px solid var(--glass-border);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-fast);
}

.fixed-whatsapp-btn:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* --- 19. FOOTER SECTION --- */
.main-footer {
    background-color: #040406;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 16px;
    max-width: 320px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.footer-links h4, .footer-info h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-blue);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-info p {
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    color: var(--gold) !important;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

/* Firma de marca WLADJ Productions - insignia discreta y responsiva */
.footer-brand-banner {
    display: block;
    width: 100%;
    max-width: 612px;
    margin: 32px auto 0;
    padding: 0 24px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-brand-banner:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.footer-brand-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

@media (max-width: 480px) {
    .footer-brand-banner {
        max-width: 432px;
    }
}

/* --- 20. RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .live-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sports-flyer {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .flyer-visual {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-nav-toggle {
        display: flex;
        z-index: 110;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(6, 6, 9, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        padding: 100px 40px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 105;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Layout details */
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    /* Move floating player up to avoid overlapping with bottom bar elements */
    .floating-audio-player {
        bottom: 96px;
        left: 5%;
        width: 90%;
        padding: 12px 16px;
    }
    
    .player-volume {
        display: none;
    }

    .player-track-info {
        max-width: 100px;
    }

    /* Grids & Cards adjustments to prevent overflow */
    .events-grid, .music-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .event-card {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .event-date-badge {
        align-self: flex-start;
    }

    .gallery-item:nth-child(3) {
        grid-column: span 1;
    }
}

/* --- Match Flyer Banner (partido destacado del día) --- */
.featured-match-section {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 0;
}

.match-flyer-banner {
    display: block;
    margin: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(var(--gold-rgb), 0.35);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-normal);
}

.match-flyer-banner:hover {
    box-shadow: var(--glow-gold), var(--glass-shadow);
    transform: translateY(-4px);
}

.match-flyer-banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Semifinales: dos tarjetas de video en vivo lado a lado --- */
.semifinal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 760px) {
    .semifinal-grid {
        grid-template-columns: 1fr;
    }
}

/* ── LIVE STREAM ── */
.live-stream-container {
    max-width: 900px;
    margin: 2rem auto;
}
.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
#hls-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.stream-offline {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a14, #0f1a2a);
    color: #fff;
    text-align: center;
    padding: 2rem;
    gap: 0.75rem;
}
.offline-icon { font-size: 3rem; }
.stream-offline h3 { font-size: 1.5rem; font-weight: 700; }
.stream-offline p { color: #9399A6; max-width: 400px; font-size: 0.9rem; }
.offline-instructions {
    margin-top: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem;
}
.offline-instructions p { color: #C5C6C7; font-size: 0.8rem; margin-bottom: 0.5rem; }
.offline-instructions code {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: #66FCF1;
    background: rgba(102,252,241,0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin: 4px 0;
}

.stream-info-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(0,0,0,0.6);
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
}
.stream-live-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #FF2D95;
    box-shadow: 0 0 8px #FF2D95;
    animation: pulse-live 1.4s ease-in-out infinite;
}
@keyframes pulse-live { 0%,100%{opacity:1} 50%{opacity:0.5;transform:scale(1.2)} }
.stream-live-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.8rem; color: #FF2D95; letter-spacing: 0.1em; }
.stream-quality { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: #5C6270; }

.stream-controls {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.5);
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
}
.stream-controls .btn { flex: 1; padding: 0.6rem; font-size: 0.75rem; }

/* OBS Instructions */
.obs-instructions {
    max-width: 900px;
    margin: 2rem auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}
.obs-instructions h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.obs-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #9399A6;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.obs-step:last-child { border-bottom: none; }
.step-num {
    width: 24px; height: 24px;
    background: rgba(102,252,241,0.15);
    color: #66FCF1;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem; font-weight: 700;
    flex-shrink: 0;
}
.obs-step code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: #66FCF1;
    background: rgba(102,252,241,0.08);
    padding: 2px 8px;
    border-radius: 4px;
}
