﻿/* WebBayfm/styles.css */
@font-face {
    font-family: 'Swarsh Daisy';
    src: url('../Base/Swarsh\\ Daisy-Regular/Swarsh\\ Daisy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Swarsh Daisy';
    src: url('../Base/Swarsh\\ Daisy-Regular/Swarsh\\ Daisy-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000079;
    background: linear-gradient(90deg, #000079 0%, #154595 50%, #000079 100%);
    background-attachment: scroll; /* Se cambia a scroll para que el degradado cubra toda la página */
    min-height: 100vh;
    /* Fuente clásica y elegante para igualar la imagen de referencia */
    font-family: 'Times New Roman', Times, serif; 
    color: white;
}

.landing-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

/* Sections */
.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 30px;
}

/* Base text styling */
h1, h2, h3, h4, p, td {
    z-index: 2;
    position: relative;
    text-align: center;
    color: white;
    font-weight: normal;
    font-family: 'Swarsh Daisy', serif;
}

h1.textos-1 {
    font-size: 42px; /* Increased from 34px */
    margin: 40px 0;
    line-height: 1.2;
}

h2.textos-2, h2.textos-6 {
    font-size: 60px; /* Increased from 50px */
    margin: 30px 0;
}

h3.textos-3 {
    font-size: 75px; /* Aumentado considerablemente para igualar la escala de la imagen */
    margin: 15px 0 5px 0;
    line-height: 1.1;
    font-style: italic; /* Cursiva para igualar la imagen */
}

.mission-text-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-contactanos-link {
    text-decoration: none;
    cursor: pointer;
    margin-top: 15px;
}

.btn-contactanos {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Diseño de bordes basado en la imagen */
    border-top: 1px solid rgba(0, 255, 255, 0.5);
    border-left: 1px solid rgba(0, 255, 255, 0.5);
    border-bottom: 2px solid #00ffff;
    border-right: none;
    border-radius: 50px 0 0 50px;
    padding: 10px 10px 10px 40px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative; /* Para el brillo */
}

/* Efecto de destello neón inferior (Flair central) */
.btn-contactanos::after {
    content: '';
    position: absolute;
    bottom: -2px; /* Montado en el borde inferior */
    left: 15%;
    width: 70%;
    height: 2px;
    background: #00ffff;
    box-shadow: 0 0 15px 5px rgba(0, 255, 255, 0.8), 0 0 30px 10px rgba(0, 255, 255, 0.4);
    border-radius: 5px;
    z-index: 1;
}

.btn-contactanos span {
    font-size: 55px; /* Agrandado para igualar proporción visual */
    line-height: 1;
    transition: all 0.3s ease;
    font-style: italic; /* Obligar cursiva */
}

.icon-phone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -25px; /* Pulls the icon slightly past the open border edge */
    transition: all 0.3s ease;
}

.icon-phone {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

/* Hover Effects */
.btn-contactanos-link:hover .btn-contactanos {
    background: rgba(0, 255, 255, 0.15); /* Fondo más brillante */
    box-shadow: -5px 0 20px rgba(0, 255, 255, 0.4), inset 5px 0 10px rgba(0, 255, 255, 0.2);
    transform: translateX(-5px); /* Pequeño empuje hacia la izquierda */
}

.btn-contactanos-link:hover .icon-phone {
    animation: ring 0.5s ease-in-out infinite; /* Animación de vibración */
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.8)); /* Brillo en el SVG */
}

.btn-contactanos-link:hover span {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

p.textos-4 {
    font-size: 30px; /* Increased from 24px */
    line-height: 1.4;
    max-width: 900px;
    margin-bottom: 40px;
}

h3.textos-network-title {
    font-size: 48px; /* Increased from 36px */
    margin-top: 60px;
    margin-bottom: 15px;
}
p.textos-network-desc {
    font-size: 28px; /* Increased from 22px */
    line-height: 1.4;
    max-width: 1000px;
    margin-bottom: 60px;
}

p.textos-gen-desc {
    font-size: 28px; /* Increased from 22px */
    line-height: 1.4;
    max-width: 1100px;
    margin-bottom: 60px;
}

h3.textos-reaching {
    font-size: 80px; /* Tamaño adaptado a la segunda imagen, más equilibrado */
    line-height: 0.95;
    margin-top: 60px;
    margin-bottom: 25px;
    font-style: normal; /* Texto en mayúsculas rectos */
}
h3.textos-reaching-sub {
    font-size: 45px; /* Proporcionalmente más pequeño */
    margin-bottom: 60px; /* Aire antes de que aparezca el logo MLC */
}

h2.textos-we-are {
    font-size: 60px; /* Increased from 50px */
    margin-top: 60px;
    margin-bottom: 25px;
}
p.textos-we-are-desc {
    font-size: 26px; /* Increased from 20px */
    line-height: 1.4;
    max-width: 1200px;
    margin-bottom: 90px;
}

.hl-cyan {
    color: #00ffff;
    font-style: normal;
}

.prog-title {
    font-size: 140px; /* Masivo para "On-Air" */
    margin: 0;
    line-height: 0.8;
    font-style: italic; /* "On-Air" en cursiva */
    color: white;
}
.prog-title .hl-cyan {
    font-size: 65px; /* "PROGRAMMING" más pequeño */
    letter-spacing: 4px;
    font-style: normal !important; /* "PROGRAMMING" recto, SIN cursiva */
    display: block;
    margin-top: -10px; /* Acercarlo hacia arriba para que abrace "On-Air" */
}
.prog-sub {
    font-size: 24px;
    letter-spacing: 3px;
    margin-top: 5px;
    font-style: normal !important; /* Recto */
    color: white;
}

/* Ribbon Texts */
.texto-cinta {
    color: #000c25;
    background-color: #00ffff;
    font-size: 56px;
    padding: 10px 40px;
    border-radius: 50% / 100% 100% 0 0; /* Simulating slight curve */
    margin: 0 0 40px 0;
    z-index: 3;
    width: 110%;
    max-width: 1050px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.texto {
    z-index: 2;
}

.hero {
    padding-top: 0;
    padding-bottom: 20px;
    min-height: 100vh;
    justify-content: flex-start;
    /* Hero ya no tiene fondo propio para heredar el global estático, pero necesita position/overflow para las luces */
    position: relative;
    background: transparent;
    /* Se quitó overflow: hidden para que las luces no se recorten */
}
.textos-1 {
    max-width: 100%; /* Permitir que ocupe todo el ancho sin romperse */
    margin-bottom: 25px; /* Reducido para acercar el logo al texto */
    margin-top: 15px; /* Reducido sustancialmente para evitar el espacio en blanco vacío arriba */
    white-space: nowrap; /* Evita que las frases se rompan en varias lineas, obedeciendo solo al <br> */
}
.logo-bay {
    width: 95%; /* Reducido a su tamaño o un poco menos para desktop */
    max-width: 1400px;
    position: relative; /* Necesario para que z-index funcione */
    z-index: 10; /* Asegurar que esté por encima de todo */
    margin-top: 30px; /* Un pelo más de aire arriba */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.1)); /* Sombras desactivada en reposo, casi invisibles */
    cursor: pointer;
}

.logo-bay:hover {
    transform: scale(1.05); /* Agranda el logo al pasar el ratón */
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8)); /* Resplandor cyan fuerte tipo neón solicitado */
}
/* Mission Section */
.mission {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 30px;
}
.nuestra-mision {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}
.textos-3 {
    max-width: 900px; /* Aumentado sustancialmente para evitar que se rompa con la nueva fuente grande */
}
.textos-4 {
    max-width: 800px;
    margin-bottom: 20px;
}

/* Artists Images */
.artists {
    padding: 0;
    margin-top: 20px;
}
.artists-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
.img-artistas {
    width: 100%;
    max-width: none;
    height: auto;
    z-index: 2;
    /* Soft fade at the bottom to transition properly */
    mask-image: linear-gradient(to top, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%);
}
.texto-cinta {
    margin: 0 0 40px 0; /* Overlap image */
    max-width: 1050px; /* Make it stretch wider than container */
    width: 110%;
    position: relative;
    z-index: 3;
}

/* Text Generation */
.text-generation {
    padding-top: 30px;
    padding-bottom: 30px;
}
.textos-6 {
    max-width: 800px;
    margin-bottom: 20px;
    font-size: 75px !important; /* Masivo */
    line-height: 1.1;
    text-align: center;
}
/* Para simular el escalonamiento de la imagen ("a una generación" volcado a la derecha) */
.textos-6 span:last-child {
    display: inline-block;
    transform: translateX(10%); /* Empuja la segunda línea a la derecha */
}
/* Centrado forzado en móviles manejado dentro del media query */
.textos-7 {
    max-width: 800px;
}

/* Programming Section */
.programming {
    padding: 0;
    margin-top: 30px;
    min-height: 550px;
}
.bg-numeral {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 0;
    object-position: top center;
}
.programming-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 40px 60px 40px;
    display: flex;
    justify-content: center;
}
.texto-schedule-container {
    width: 100%;
    max-width: 900px;
    margin: 40px 0 60px 0;
    z-index: 2;
    /* Fondo transparente, sin glassmorphism como solicitado */
    background: transparent;
    border: none;
    box-shadow: none;
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
}
.schedule-table tr {
    border-bottom: 1px solid rgba(0, 255, 255, 0.15); /* Línea más suave */
    transition: all 0.3s ease;
}
.schedule-table tr:last-child {
    border-bottom: none; /* Quitar última línea */
}
.schedule-table tr:hover {
    background: rgba(0, 255, 255, 0.08); /* Highlight al pasar el mouse */
    transform: scale(1.02);
}
.schedule-table td {
    padding: 25px 30px;
    vertical-align: middle;
    font-style: italic; /* Tipografía itálica solicitada */
    transition: all 0.3s ease;
}
.schedule-table td:first-child {
    font-size: 32px; /* Reducido levemente para mayor elegancia */
    color: white; /* Blanco puro como la referencia */
    text-align: right;
    width: 25%; /* Ancho de la zona de horario menor */
    border-right: 1px solid rgba(0, 255, 255, 0.4); /* Línea divisoria cian */
    padding-right: 40px; /* Dar aire contra la línea */
}
.schedule-table td:last-child {
    font-weight: normal; /* Normal, no tan bold */
    font-size: 36px; /* Tamaño ligeramente mayor para el show */
    text-align: left;
    width: 75%; /* Ajuste proporcional */
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 40px; /* Dar aire desde la línea hacia el texto */
    font-style: italic; /* Programas también en Itálicas */
}
.schedule-table td:last-child .hl-cyan {
    font-style: italic !important; /* Forzar cursivas sobre la clase base azul */
}
.schedule-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.bay-icon {
    height: 60px;
}

/* MLC Logo */
.mlc-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
}
.mlc-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 20px 0 40px 0;
    z-index: 2;
    position: relative;
}

/* Contact / Bokeh Section */
.contact {
    padding: 60px 20px 0 20px;
    min-height: 150px;
}
.bg-contacto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.textos-10 {
    max-width: 850px; /* Increased from 750px */
    margin-bottom: 50px;
}
.textos-footer-desc {
    max-width: 650px; /* Increased from 600px */
    margin-bottom: 30px;
    z-index: 2;
}

/* Dark Footer Contacts Section */
.footer-dark {
    background-color: #030814; /* Very dark navy/black background */
    width: 100%;
    padding: 40px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.texto-consulta {
    font-family: 'Swarsh Daisy', serif;
    font-style: italic;
    color: #00ffff; /* Cyan */
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 0;
    z-index: 2;
}
.luz-linea {
    width: 90%;
    max-width: 800px;
    margin: 30px 0 50px 0; /* Increased margin */
    z-index: 2;
    mix-blend-mode: screen;
}
.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    z-index: 2;
    gap: 60px; /* Gap between columns */
}
.vert-rule {
    width: 1px;
    height: 120px; /* Taller vertical line for two lines of text */
    background-color: rgba(255, 255, 255, 0.4);
}
.contact-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Gap between name and emails */
    flex: 1;
}

.contact-name {
    height: auto;
    width: 100%;
    max-width: 320px;
}
.contact-mail, .contact-tel {
    height: auto;
    width: 100%;
    max-width: 240px;
}
.contact-link {
    display: inline-block;
    transition: all 0.3s ease;
}
.contact-link:hover {
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
    transform: scale(1.05);
}

/* Animations */

@keyframes ring {
    0% { transform: rotate(0) scale(1); }
    10% { transform: rotate(15deg) scale(1.1); }
    20% { transform: rotate(-10deg) scale(1.1); }
    30% { transform: rotate(15deg) scale(1.1); }
    40% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(10deg) scale(1.1); }
    60% { transform: rotate(-10deg) scale(1.1); }
    70% { transform: rotate(10deg) scale(1.1); }
    80% { transform: rotate(-5deg) scale(1.1); }
    90% { transform: rotate(5deg) scale(1.1); }
    100% { transform: rotate(0) scale(1); }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Partículas flotantes estilo Bokeh para Hero y otros bloques */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Se quita overflow: hidden para que las partículas gigantes no se corten en los bordes de la caja */
    z-index: 0; /* Detrás de todo el hero */
    pointer-events: none;
}

/* Frente luminoso cyan central (resplandor de la imagen) */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    /* Un brillo detrás del logo suave que se funde con el azul profundo */
    background: radial-gradient(circle, rgba(100, 200, 255, 0.3) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.particle {
    position: absolute;
    border-radius: 50%;
    /* El blur se inserta via JS aleatoriamente (esferas nítidas y manchas difusas) */
    mix-blend-mode: screen; 
    animation: floatBokeh linear infinite;
    z-index: 1;
}

/* Movimiento errático pero más flotante como motas de polvo / lente */
@keyframes floatBokeh {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(15px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-15px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 0 15px;
    }
    
    /* Hero y Logo más compactos */
    .hero {
        padding-top: 10px; /* Reducido desde 50px para eliminar el espacio vacío arriba en móvil */
        min-height: auto;
        padding-bottom: 20px;
    }
    h1.textos-1 {
        font-size: clamp(14px, 4.5vw, 35px) !important; /* Escalado fluido para evitar overflow */
        margin-top: 10px; /* Reducido para móvil */
        margin-bottom: 15px;
    }
    .hero::before {
        top: 75%; /* Ajuste de luz principal a la altura del logo */
    }
    .particles-hero {
        top: 40%; /* Ajuste de partículas a la altura del logo */
        height: 60%;
    }
    .logo-bay {
        margin-top: 20px;
        width: 150%; /* Aumentado un poco más para móvil (antes 130%) */
        max-width: 150%; 
    }
    
    /* Escalar Textos Principales */
    h2.textos-2 {
        font-size: clamp(20px, 11vw, 55px) !important;
        white-space: nowrap;
    }
    .texto-cinta {
        font-size: 30px;
        padding: 8px 20px;
        margin-bottom: 25px;
    }
    h3.textos-reaching {
        font-size: 35px !important;
    }
    p.textos-4, p.textos-network-desc, p.textos-gen-desc, p.textos-we-are-desc {
        font-size: 20px !important;
    }
    h2.textos-we-are {
        font-size: 40px !important;
    }
    .textos-3 {
        font-size: 35px !important;
    }
    
    /* Centrar "Música que define a una generación" */
    h2.textos-6 {
        font-size: 48px !important; /* Más proporcionado en móvil */
        text-align: center;
    }
    .textos-6 span:last-child {
        transform: none; /* Anulamos el desplazamiento a la derecha */
        display: block; /* Forzar bloque para que se centre perfectamente */
        margin-top: 10px;
    }
    
    /* Ajustes Botón Contáctanos */
    .btn-contactanos {
        padding: 5px 10px 5px 20px;
        gap: 8px;
    }
    .btn-contactanos span {
        font-size: 26px;
    }
    .icon-phone-container {
        margin-right: -15px;
    }
    .icon-phone {
        width: 35px;
        height: 35px;
    }
    
    /* Ajustes Tabla de Horarios y "On-Air PROGRAMMING" */
    .prog-title {
        font-size: 65px; /* Agrandado un poco para igualar On-Air a la imagen */
        margin-bottom: 20px;
    }
    .prog-title .hl-cyan {
        font-size: 28px; /* PROGRAMMING un poco más pequeño para encajar debajo */
        letter-spacing: 2px;
        margin-top: -5px;
    }
    .prog-sub {
        font-size: 16px; /* Letra pequeña encaja mejor en el móvil */
        letter-spacing: 1px;
        padding: 0 10px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    .schedule-table {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Separación entre tarjetas */
    }
    .schedule-table tr {
        display: flex;
        flex-direction: column;
        background: rgba(0, 255, 255, 0.05);
        border: 1px solid rgba(0, 255, 255, 0.2);
        border-radius: 12px;
        padding: 15px 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .schedule-table td {
        display: block;
        width: 100% !important;
        text-align: left !important; /* Alineación a la izquierda para mejor legibilidad */
        border-right: none !important;
        padding: 0;
    }
    .schedule-table td:first-child {
        font-size: 20px;
        color: #00ffff;
        border-bottom: none; /* Quitamos la línea punteada */
        padding-top: 0;
        margin-bottom: 5px;
        font-family: 'Times New Roman', Times, serif; /* Contraste tipográfico para la hora */
        font-style: normal;
        letter-spacing: 1px;
        opacity: 0.9;
    }
    .schedule-table td:last-child {
        font-size: 26px;
        justify-content: flex-start; /* Alinear el texto e icono a la izquierda */
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    /* Ajustes Logos y Footer */
    .img-artistas {
        max-width: 100%;
        margin-top: 20px;
    }

    /* ===== Footer Dark - Mobile Optimizado ===== */
    .footer-dark {
        padding: 35px 20px 130px 20px;
    }
    .texto-consulta {
        font-size: 22px;
        line-height: 1.3;
        padding: 0 10px;
        margin-bottom: 5px;
    }
    .luz-linea {
        width: 80%;
        margin: 20px 0 30px 0;
    }
    .contact-info {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 90%;
    }
    .contact-info .hl-cyan {
        display: block;
        text-align: center;
        width: 100%;
    }
    .contact {
        padding: 25px 10px 0 10px;
        min-height: 80px;
    }
    .contact-col {
        gap: 10px;
        padding: 25px 15px;
        background: rgba(0, 255, 255, 0.03);
        border-radius: 16px;
        border: 1px solid rgba(0, 255, 255, 0.08);
    }
    .contact-name {
        max-width: 200px;
    }
    .contact-mail, .contact-tel {
        max-width: 180px;
    }
    .vert-rule {
        width: 60%;
        max-width: 200px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
        margin: 15px auto;
    }
}

/* ==================== Email Popup Modal — Liquid Glass ==================== */
.mail-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mail-popup-overlay.active { opacity: 1; }

.mail-popup {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 36px 32px 32px;
    max-width: 480px;
    width: 90%;

    /* Liquid glass */
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.10) 0%,
        rgba(10, 30, 80, 0.55) 50%,
        rgba(0, 80, 160, 0.20) 100%
    );
    backdrop-filter: blur(40px) saturate(180%) brightness(1.1);
    -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.25) inset,
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 8px 30px rgba(0, 100, 255, 0.15);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mail-popup-overlay.active .mail-popup {
    transform: translateY(0) scale(1);
}

/* Specular top shine on the card */
.mail-popup-glass-shine {
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.03) 60%, transparent 100%);
    border-radius: 28px 28px 70% 70%;
    pointer-events: none;
    z-index: 0;
}

.mail-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
    line-height: 1;
}
.mail-popup-close:hover {
    color: #fff;
    background: rgba(0,200,255,0.2);
    border-color: rgba(0,200,255,0.4);
    transform: scale(1.1);
}

/* Header row */
.mail-popup-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.mail-popup-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,180,255,0.25), rgba(0,80,200,0.2));
    border: 1px solid rgba(0,200,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,220,255,0.9);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(0,180,255,0.15);
}

.mail-popup-title {
    font-family: 'Swarsh Daisy', sans-serif;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.95);
    margin: 0 0 2px 0;
    text-shadow: 0 0 20px rgba(0,200,255,0.3);
}
.mail-popup-to {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Form fields */
.mail-popup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.mail-input-group {
    position: relative;
}
.mail-popup-form input,
.mail-popup-form textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.92);
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    resize: vertical;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.mail-popup-form input::placeholder,
.mail-popup-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.30);
}
.mail-popup-form input:focus,
.mail-popup-form textarea:focus {
    border-color: rgba(0, 200, 255, 0.45);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 0 3px rgba(0,180,255,0.10), 0 0 20px rgba(0,180,255,0.08);
}

/* Send button */
.mail-popup-send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0,180,255,0.30) 0%, rgba(0,100,220,0.25) 100%);
    border: 1px solid rgba(0,200,255,0.35);
    border-radius: 50px;
    padding: 13px 28px;
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 6px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 6px 20px rgba(0,100,255,0.2);
}
.mail-popup-send:hover {
    background: linear-gradient(135deg, rgba(0,200,255,0.45) 0%, rgba(0,120,240,0.35) 100%);
    border-color: rgba(0,220,255,0.55);
    box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 8px 28px rgba(0,150,255,0.30);
    transform: translateY(-2px);
}
.mail-popup-send:active { transform: translateY(0); }

/* ==================== Scroll Reveal Animations ==================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger para contact cols */
.contact-col.reveal:nth-child(1) { transition-delay: 0.1s; }
.contact-col.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ============================================================
   LIQUID GLASS FLOATING PLAYER
   Apple visionOS / iOS 26 inspired
   ============================================================ */

/* Body padding for the floating player is handled by .footer-dark padding-bottom */
/* ── Outer wrapper: floating fixed container ── */
/* IMPORTANT: NO filter property here — it would break backdrop-filter on the child */
.listen-live-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 820px;
    padding: 0 !important;
    z-index: 9000;
}

/* ── Inner glass pill ── */
.listen-live-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 18px 8px 18px;
    gap: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    cursor: default;

    /* Translucent tint — keep low opacity so blur bleeds through clearly */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(10, 40, 100, 0.28) 45%,
        rgba(0, 160, 255, 0.08) 100%
    );

    /* The real blur engine — no filter on parent so this actually works */
    backdrop-filter: blur(36px) saturate(200%) brightness(1.15);
    -webkit-backdrop-filter: blur(36px) saturate(200%) brightness(1.15);

    /* Subtle glass border */
    border: 1px solid rgba(255, 255, 255, 0.20);

    /* All shadows here (not on parent) to avoid breaking backdrop-filter */
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.28) inset,
        0 -1px 0 rgba(0, 0, 0, 0.12) inset,
        0 10px 40px rgba(0, 0, 0, 0.40),
        0 2px 12px rgba(0, 0, 0, 0.25),
        0 0 0 0.5px rgba(255, 255, 255, 0.08),
        0 6px 36px rgba(0, 160, 255, 0.18);

    transition:
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

/* Hover: deepen the glow + brighten border */
.listen-live-inner:hover {
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.38) inset,
        0 -1px 0 rgba(0, 0, 0, 0.12) inset,
        0 14px 50px rgba(0, 0, 0, 0.45),
        0 2px 12px rgba(0, 0, 0, 0.28),
        0 0 0 0.5px rgba(255, 255, 255, 0.15),
        0 6px 50px rgba(0, 180, 255, 0.30);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.10) 0%,
        rgba(15, 50, 120, 0.32) 45%,
        rgba(0, 180, 255, 0.12) 100%
    );
}

/* ── Specular top highlight (static) ── */
.listen-live-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.03) 70%,
        transparent 100%
    );
    border-radius: 100px 100px 70% 70%;
    pointer-events: none;
    z-index: 2;
    /* Brightens slightly on hover */
    transition: opacity 0.4s ease;
}
.listen-live-inner:hover::before {
    opacity: 1.4;
}

/* ── Hover shimmer sweep: light moves L→R across glass ── */
.listen-live-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 30%,
        rgba(255, 255, 255, 0.16) 50%,
        rgba(255, 255, 255, 0.06) 70%,
        transparent 100%
    );
    transform: skewX(-15deg);
    pointer-events: none;
    z-index: 2;
    transition: left 0s;
}
.listen-live-inner:hover::after {
    left: 140%;
    transition: left 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Logo ── */
.live-bar-logo-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    z-index: 1;
}
.live-bar-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 180, 255, 0.35));
    transition: filter 0.4s ease;
}
#live-player-bar.is-playing .live-bar-logo {
    filter: drop-shadow(0 0 16px rgba(0, 220, 255, 0.65));
}

/* Spinning arc ring around logo (only when playing) */
.live-bar-logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(0, 220, 255, 0.8);
    border-right-color: rgba(0, 220, 255, 0.35);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
#live-player-bar.is-playing .live-bar-logo-pulse {
    opacity: 1;
    animation: logoSpin 2s linear infinite;
}
@keyframes logoSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── LIVE badge ── */
.live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(220, 30, 30, 0.18);
    border: 1px solid rgba(255, 60, 60, 0.35);
    border-radius: 50px;
    padding: 3px 8px 3px 6px;
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.4s ease;
}
.live-badge-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: #ff3333;
    box-shadow: 0 0 6px rgba(255,50,50,0.8);
    animation: badgePulse 1.4s ease-in-out infinite;
}
#live-player-bar.is-playing .live-badge {
    background: rgba(220, 30, 30, 0.30);
    border-color: rgba(255, 60, 60, 0.6);
    box-shadow: 0 0 12px rgba(255,50,50,0.2);
}
@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}
.live-badge-text {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 80, 80, 0.9);
    text-transform: uppercase;
}
#live-player-bar.is-playing .live-badge-text {
    color: #ff5555;
    text-shadow: 0 0 8px rgba(255,50,50,0.5);
}

/* ── Subtitle row (badge + time) ── */
.live-subtitle-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}
.live-time {
    font-size: 13px;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ── Playing: whole-pill breathing animation ── */
#live-player-bar.is-playing .listen-live-inner {
    animation: pillBreath 3s ease-in-out infinite;
}
@keyframes pillBreath {
    0%, 100% {
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.28) inset,
            0 -1px 0 rgba(0, 0, 0, 0.12) inset,
            0 10px 40px rgba(0, 0, 0, 0.40),
            0 2px 12px rgba(0, 0, 0, 0.25),
            0 0 0 0.5px rgba(255, 255, 255, 0.08),
            0 6px 36px rgba(0, 160, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.20);
    }
    50% {
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.35) inset,
            0 -1px 0 rgba(0, 0, 0, 0.12) inset,
            0 12px 44px rgba(0, 0, 0, 0.45),
            0 2px 12px rgba(0, 0, 0, 0.28),
            0 0 0 1px rgba(0, 200, 255, 0.25),
            0 8px 50px rgba(0, 180, 255, 0.38);
        border-color: rgba(0, 220, 255, 0.35);
    }
}

/* All inner elements above glass layers */
.listen-live-bar > .listen-live-inner > * {
    position: relative;
    z-index: 1;
}
.listen-live-text,
.live-bar-visualizer,
.live-bar-controls {
    position: relative;
    z-index: 1;
}

/* ── Left: Live dot + text ── */
.listen-live-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.listen-live-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: #ff4040;
    border-radius: 50%;
    box-shadow: 0 0 6px #ff4040, 0 0 14px rgba(255, 60, 60, 0.5);
    animation: livePulse 1.5s ease-in-out infinite;
    transition: background 0.3s, box-shadow 0.3s;
}
.listen-live-dot.dot-off {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    animation: none;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1);    box-shadow: 0 0 6px #ff4040, 0 0 14px rgba(255,60,60,0.5); }
    50%       { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 3px #ff4040, 0 0 7px rgba(255,60,60,0.3); }
}

.listen-live-heading {
    font-family: 'Swarsh Daisy', serif !important;
    font-size: 22px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-style: italic;
    margin: 0 !important;
    line-height: 1.1;
    text-align: left !important;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(0, 220, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4);
}

.listen-live-sub {
    font-family: 'Times New Roman', Times, serif !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: normal;
    margin: 2px 0 0 0 !important;
    text-align: left !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── Center: Visualizer ── */
.live-bar-visualizer {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 32px;
    min-width: 0;
    padding: 0 16px;
}

.viz-bar {
    flex: 1;
    max-width: 5px;
    min-width: 2px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px 3px 0 0;
    transition: background 0.3s;
}

/* Playing: glowing cyan bars */
.live-bar-visualizer.playing .viz-bar {
    background: linear-gradient(to top, rgba(0, 220, 255, 0.9), rgba(180, 240, 255, 0.6));
    animation: vizBounce 0.6s ease-in-out infinite alternate;
    box-shadow: 0 0 6px rgba(0, 220, 255, 0.4);
}

.live-bar-visualizer.playing .viz-bar:nth-child(1)  { animation-duration: 0.45s; animation-delay: 0.00s; }
.live-bar-visualizer.playing .viz-bar:nth-child(2)  { animation-duration: 0.55s; animation-delay: 0.05s; }
.live-bar-visualizer.playing .viz-bar:nth-child(3)  { animation-duration: 0.50s; animation-delay: 0.10s; }
.live-bar-visualizer.playing .viz-bar:nth-child(4)  { animation-duration: 0.60s; animation-delay: 0.03s; }
.live-bar-visualizer.playing .viz-bar:nth-child(5)  { animation-duration: 0.42s; animation-delay: 0.08s; }
.live-bar-visualizer.playing .viz-bar:nth-child(6)  { animation-duration: 0.58s; animation-delay: 0.12s; }
.live-bar-visualizer.playing .viz-bar:nth-child(7)  { animation-duration: 0.48s; animation-delay: 0.02s; }
.live-bar-visualizer.playing .viz-bar:nth-child(8)  { animation-duration: 0.52s; animation-delay: 0.07s; }
.live-bar-visualizer.playing .viz-bar:nth-child(9)  { animation-duration: 0.62s; animation-delay: 0.11s; }
.live-bar-visualizer.playing .viz-bar:nth-child(10) { animation-duration: 0.44s; animation-delay: 0.04s; }
.live-bar-visualizer.playing .viz-bar:nth-child(11) { animation-duration: 0.56s; animation-delay: 0.09s; }
.live-bar-visualizer.playing .viz-bar:nth-child(12) { animation-duration: 0.47s; animation-delay: 0.06s; }
.live-bar-visualizer.playing .viz-bar:nth-child(13) { animation-duration: 0.53s; animation-delay: 0.01s; }
.live-bar-visualizer.playing .viz-bar:nth-child(14) { animation-duration: 0.59s; animation-delay: 0.13s; }
.live-bar-visualizer.playing .viz-bar:nth-child(15) { animation-duration: 0.46s; animation-delay: 0.03s; }
.live-bar-visualizer.playing .viz-bar:nth-child(16) { animation-duration: 0.54s; animation-delay: 0.10s; }
.live-bar-visualizer.playing .viz-bar:nth-child(17) { animation-duration: 0.50s; animation-delay: 0.07s; }
.live-bar-visualizer.playing .viz-bar:nth-child(18) { animation-duration: 0.57s; animation-delay: 0.02s; }

@keyframes vizBounce {
    0%   { height: 3px; }
    100% { height: 28px; }
}

/* ── Right: Controls ── */
.live-bar-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Play/Pause — liquid glass button (bold, eye-catching) */
.live-bar-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 200, 255, 0.5);
    background: linear-gradient(
        145deg,
        rgba(0, 200, 255, 0.35) 0%,
        rgba(0, 100, 220, 0.30) 60%,
        rgba(0, 60, 180, 0.25) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.4) inset,
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 18px rgba(0, 160, 255, 0.30),
        0 0 0 3px rgba(0,180,255,0.08);
}
.live-bar-play-btn:hover {
    background: linear-gradient(
        145deg,
        rgba(0, 220, 255, 0.50) 0%,
        rgba(0, 130, 240, 0.42) 60%,
        rgba(0, 80, 200, 0.35) 100%
    );
    border-color: rgba(0, 230, 255, 0.7);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.5) inset,
        0 8px 28px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(0, 180, 255, 0.45),
        0 0 0 5px rgba(0,180,255,0.12);
    transform: scale(1.08);
}
.live-bar-play-btn:active { transform: scale(0.93); }

/* Playing state: stronger pulse ring */
#live-player-bar.is-playing .live-bar-play-btn {
    border-color: rgba(0, 220, 255, 0.65);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.45) inset,
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 22px rgba(0, 200, 255, 0.45),
        0 0 0 4px rgba(0,180,255,0.14);
}

.live-ctrl-icon {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 4px rgba(0, 220, 255, 0.5));
}

/* Volume control */
.live-bar-volume {
    display: flex;
    align-items: center;
    gap: 8px;
}
.live-vol-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}
.live-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.live-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9), rgba(0,200,255,0.8));
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.5), 0 1px 3px rgba(0,0,0,0.3);
    transition: box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.3);
}
.live-vol-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 14px rgba(0, 200, 255, 0.8), 0 1px 3px rgba(0,0,0,0.3);
}
.live-vol-slider::-moz-range-thumb {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9), rgba(0,200,255,0.8));
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.5);
}

/* ── Mobile: single row ── */
@media (max-width: 680px) {
    .listen-live-bar {
        bottom: 12px;
        width: calc(100% - 20px);
    }
    .listen-live-inner {
        padding: 10px 14px;
        gap: 8px;
        border-radius: 60px;
        flex-wrap: nowrap;   /* single line */
    }
    .live-bar-logo-wrap {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
    .live-bar-logo {
        width: 48px;
        height: 48px;
    }
    .live-bar-logo-pulse {
        width: 56px;
        height: 56px;
    }
    .listen-live-text {
        flex-shrink: 1;
        min-width: 0;
    }
    .listen-live-heading {
        font-size: 13px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 2px;
    }
    .live-subtitle-row {
        gap: 4px;
        margin-top: 2px;
    }
    .live-time {
        font-size: 11px;
    }
    .live-badge {
        padding: 2px 5px 2px 4px;
    }
    .live-badge-dot {
        width: 5px;
        height: 5px;
        min-width: 5px;
    }
    .live-badge-text {
        font-size: 8px !important;
        letter-spacing: 1px;
    }
    /* Visualizer: compact inline, not full width */
    .live-bar-visualizer {
        flex: 1;
        order: 0;
        width: auto;
        height: 22px;
        padding: 0 4px;
        min-width: 40px;
    }
    .live-bar-controls {
        flex-shrink: 0;
    }
    .live-bar-volume {
        display: none;
    }
    .live-bar-play-btn {
        width: 36px;
        height: 36px;
    }
    .live-ctrl-icon {
        width: 16px;
        height: 16px;
    }
}
