:root {
    --primary: #0d1b4b;
    --primary-light: #1a2d6b;
    --accent: #e30000;
    --accent-dark: #b30000;
    --gold: #f5b041;
    --text-white: #ffffff;
    --text-gray: #a8b2d1;
    --card-bg: #ffffff;
    --body-bg: #e8edf5;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-premium: 0 4px 20px rgba(0,0,0,0.08);
    --nav-bg: #0d1b4b;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', system-ui, -apple-system, sans-serif; }

html {
    width: 100%;
}
body {
    overflow-x: hidden;
    width: 100%;
}

img, video, iframe {
    max-width: 100%;
}

body {
    background-color: var(--body-bg);
    color: var(--primary);
    line-height: 1.6;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.site-main-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── HEADER ─── */
header {
    background: linear-gradient(135deg, #0d1b4b 0%, #1a3580 60%, #0d1b4b 100%);
    min-height: 125px; /* Revertido a 125px */
    height: auto;
    width: 100%;
    margin: 0;
    border-radius: 0;
    position: relative;
    /* overflow: hidden; */ /* Eliminado para permitir que el logo sobresalga si es necesario */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1001 !important;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none; /* No bloquear clics en logo ni otros elementos */
}

.header-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 125px; /* Sincronizado */
    height: 125px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    gap: 20px;
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-left .logo {
    padding: 0;
    display: flex;
    align-items: center;
}

.header-left .logo img,
.header-brand-logo {
    max-width: 220px !important;
    max-height: 120px !important; /* Restaurado el tamaño grande solicitado */
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.15));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 20;
}

.header-left .logo img:hover,
.header-brand-logo:hover {
    transform: scale(1.05);
}

.header-center {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-col-center {
    display: none;
}

.header-col-right {
    display: none;
}

.social-pills-header {
    display: flex;
    gap: 10px;
}

.social-pills-header .social-circle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
}

/* ─── HEADER LIVE BANNER (EXACT programa.png MATCH) ─── */
.header-live-banner {
    display: inline-flex;
    align-items: center;
    background: transparent !important; /* Totalmente transparente */
    border: none !important;
    height: 60px;
    border-radius: 0;
    padding: 0;
    gap: 20px;
    margin: 5px 0;
    font-family: 'Montserrat', sans-serif !important;
}

.header-live-banner *:not(i) {
    font-family: 'Montserrat', sans-serif !important;
}

.live-banner-item-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.live-status-pill-small {
    border: 2px solid #2a8a1e; /* Verde bosque exacto */
    background: transparent;
    color: #000000;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.live-status-pill-small::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #000000; /* Punto negro puro */
    border-radius: 50%;
}

.live-announcer-mini {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000;
    margin-left: 2px;
}

.live-banner-sep {
    width: 4px;
    height: 35px;
    background: #2a8a1e; /* Divisor verde bosque */
    border-radius: 3px;
}

.live-banner-item-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.live-show-mini-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.live-show-mini-time {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-show-mini-time i {
    font-size: 0.85rem;
    color: #000000;
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    .header-live-banner { height: auto; padding: 8px 12px; gap: 10px; border-radius: 8px; }
    .live-banner-sep { height: 30px; }
    .live-status-pill-small { font-size: 0.65rem; padding: 5px 12px; }
    .live-announcer-mini { font-size: 0.8rem; }
    .live-show-mini-title { font-size: 0.85rem; }
    .live-show-mini-time { font-size: 0.75rem; }
}

.contact-pill {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-right {
    flex: 1;
    position: relative;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

/* ─── NAVIGATION (ver.png INSPIRED) ─── */
.premium-nav-bar {
    background: #000000 !important;
    border-top: none !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    position: relative !important;
    z-index: 1000 !important;
}

.nav-bar-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    height: 45px !important;
    padding: 0 20px !important;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    padding: 0 18px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: transparent !important;
    gap: 0 !important;
}

.nav-link:hover { color: #ffcc00 !important; }

.nav-link.active {
    background: transparent !important;
    color: #ffcc00 !important;
    position: relative !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: #ffcc00 !important; /* Línea amarilla indicadora */
    border-radius: 2px 2px 0 0;
}

/* Search Button Stylized */
.nav-link.ticker-header-btn {
    margin-left: auto !important;
    background: transparent !important;
    color: #ffffff !important;
    border: 1.5px solid #ffffff !important;
    height: 28px !important;
    border-radius: 50px !important;
    padding: 0 15px !important;
    font-size: 0.65rem !important;
    font-weight: 900 !important;
    display: inline-flex !important;
    align-items: center !important;
    align-self: center !important;
    margin-top: 1px !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.nav-link.ticker-header-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    transform: scale(1.05);
}

/* ─── NAVIGATION DROPDOWN ─── */
.nav-dropdown-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 2px solid #ffcc00;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1001;
}

.nav-dropdown-wrapper:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.submenu-item:hover {
    background: rgba(255, 204, 0, 0.1) !important;
    color: #ffcc00 !important;
}

/* ─── HOMEPAGE PROGRAMMING SECTION ─── */
.home-prog-section { margin-top: 50px; margin-bottom: 30px; }
.section-header-v2 { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; border-left: 6px solid var(--mag-accent); padding-left: 15px; }
.section-header-v2 h2 { font-size: 1.6rem; font-weight: 900; color: var(--mag-primary); margin: 0; text-transform: uppercase; }
.btn-view-all-prog { font-size: 0.8rem; font-weight: 800; color: var(--mag-accent); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.btn-view-all-prog:hover { gap: 12px; }

.btn-round-view {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--mag-border);
    color: var(--mag-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.btn-round-view:hover {
    background: var(--mag-accent);
    border-color: var(--mag-accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

/* ─── HOME PROGRAMMING EXACT (PROG.PNG) ─── */
.home-prog-exact-section {
    background: #111111; /* Dark background */
    padding: 60px 0;
    margin-bottom: 60px;
    position: relative;
    border-radius: 20px;
}

.home-prog-exact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(74, 142, 34, 0.15) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 20px;
}

.prog-exact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.prog-header-exact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.prog-header-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.prog-header-left p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.btn-prog-pill-exact {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-prog-pill-exact:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.prog-grid-exact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prog-card-exact {
    display: flex;
    flex-direction: column;
}

.prog-exact-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.prog-exact-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.prog-card-exact:hover .prog-exact-thumb img {
    transform: scale(1.05);
}

.prog-exact-content {
    display: flex;
    flex-direction: column;
}

.prog-exact-bold {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.prog-exact-normal {
    font-size: 0.95rem;
    font-weight: 400;
    color: #94a3b8;
    margin: 0 0 5px 0;
}

.prog-exact-time {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffcc00; /* Yellow */
}

@media (max-width: 1024px) {
    .prog-grid-exact { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .prog-header-exact { flex-direction: column; gap: 20px; }
    .prog-grid-exact { grid-template-columns: 1fr; }
    .prog-header-left h2 { font-size: 1.8rem; }
}
/* ─── HOME CATEGORY NEWS SECTIONS (EXACT NEWS.PNG REFINED) ─── */
.home-category-section { margin-bottom: 60px; }

.cat-header-exact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
}

.cat-header-left h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ea580c !important; /* Premium Warm Orange */
    margin: 0 0 8px 0;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cat-header-left h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 32px;
    background: var(--cat-color, #4a8e22);
    border-radius: 4px;
}

.cat-header-left p {
    font-size: 1rem;
    color: #4b5563;
    margin: 0;
    max-width: 700px;
    font-weight: 400;
}

.btn-pill-exact {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--cat-color, #4a8e22);
    border-radius: 50px;
    color: var(--cat-color, #4a8e22);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.btn-pill-exact:hover {
    background: var(--cat-color, #4a8e22);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-grid-exact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-exact {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.news-card-exact:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
}

.exact-thumb-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
}

.exact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card-exact:hover .exact-img {
    transform: scale(1.06);
}

.exact-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #FFDA34 !important; /* Yellow-gold background */
    color: #000000 !important; /* Black text */
    padding: 5px 14px !important;
    border-radius: 50px !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important; /* Thinner weight */
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08) !important;
    border: none !important;
}

.exact-content {
    display: flex;
    flex-direction: column;
    padding: 8px 6px 14px 6px;
}

.exact-date {
    font-size: 0.82rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.read-time-badge {
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.exact-title {
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

.exact-title a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.exact-title a:hover {
    color: var(--cat-color, #4a8e22);
}

@media (max-width: 1024px) {
    .news-grid-exact { grid-template-columns: repeat(2, 1fr); }
    .cat-header-exact { flex-direction: column; gap: 20px; }
    .btn-pill-exact { margin-top: 0; }
}

@media (max-width: 768px) {
    .news-grid-exact { grid-template-columns: 1fr; }
    .cat-header-left h2 { font-size: 2.0rem; }
    .cat-header-left h2::before { height: 26px; width: 5px; }
}


/* ─── BREAKING NEWS TICKER REFINED ─── */
/* ─── BREAKING NEWS TICKER (REFINED BLACK) ─── */
.breaking-news-ticker {
    width: 100% !important;
    height: 37px !important;
    background: #FF0000 !important; /* Fondo rojo puro */
    margin: 2px 0 2px 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 100 !important;
    border-bottom: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    font-family: 'Roboto', sans-serif !important;
}

.ticker-label {
    background: #000000 !important; /* Etiqueta negra fija para alto contraste */
    color: #fff !important;
    padding: 0 20px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    font-size: 0.85rem !important;
    font-weight: 900 !important;
    position: relative !important;
    z-index: 5 !important;
    flex-shrink: 0 !important;
    text-transform: uppercase !important;
    font-family: 'Roboto', sans-serif !important;
    /* Rectángulo limpio, sin ::after */
}

.ticker-content {
    flex: 1 !important;
    overflow: hidden !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.ticker-track {
    display: flex !important;
    white-space: nowrap !important;
    animation: ticker-scroll 120s linear infinite !important;
}

.ticker-track span {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    display: flex !important;
    align-items: center !important;
    font-family: 'Roboto', sans-serif !important;
}

.ticker-link { 
    color: #ffffff !important; 
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif !important;
}

.ticker-link:hover { 
    color: #ffcc00 !important;
}

.ticker-line-sep {
    width: 3.5px !important;
    height: 18px !important;
    background: rgba(255,255,255,0.8) !important;
    border-radius: 4px !important;
    margin: 0 45px !important;
    display: inline-flex !important;
    align-self: center !important;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .breaking-news-ticker { height: 38px !important; margin: 2px 0 2px 0 !important; font-family: 'Roboto', sans-serif !important; }
    .ticker-label { font-size: 13px !important; padding: 0 12px !important; font-weight: 500 !important; font-family: 'Roboto', sans-serif !important; }
    .ticker-track span { font-size: 13px !important; font-weight: 400 !important; font-family: 'Roboto', sans-serif !important; }
    .ticker-label::after { border-top-width: 19px; border-bottom-width: 19px; border-left-width: 10px; right: -10px; }
}

.sticky-desktop-nav-actions {
    display: flex;
    align-items: center;
}

.mobile-search-btn-trigger {
    display: none !important;
}

.sticky-search-btn-desktop {
    display: none !important;
}

/* ─── MAIN LAYOUT ─── */
main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
    padding: 0 20px;
    contain: layout;
}

/* Eliminar espacio en blanco entre ticker y contenido del home */
main.home-magazine-v2 {
    display: block;
    padding-top: 0 !important;
    margin-top: 0 !important;
}
main.home-magazine-v2 > .container:first-child,
main.home-magazine-v2 > div:first-child,
main.home-magazine-v2 > section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
main.home-magazine-v2 .magazine-hero-block:first-child,
main.home-magazine-v2 .container .magazine-hero-block:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}/* ─── ESPACIADO UNIVERSAL POST-TICKER ─────────────────────────────────────
   Todo <main> tiene exactamente 2px de margen superior (igual que el home).
   Esto garantiza que el espacio debajo del Breaking News Ticker sea uniforme
   en todas las páginas sin importar la clase del <main>.
─────────────────────────────────────────────────────────────────────── */
main {
    margin-top: 2px !important;
}
/* El home ya tiene su propio control de espaciado */
main.home-magazine-v2 {
    margin-top: 0 !important;
}

#radio-player {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* ─── SALUDOS PREMIUM HEADER (IMAGE INSPIRED) ─── */
.saludos-premium-header {
    padding: 15px 0 10px;
}

.saludos-header-pill {
    background: #ffca01; /* Color exacto de saludos.png */
    height: 42px; /* Altura más compacta */
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.chevron-accent {
    background: rgba(255,255,255,0.4);
    height: 100%;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 0;
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
    margin-right: 12px;
}

.chevron-accent i {
    color: #fff;
    font-size: 0.85rem;
    margin-left: -4px;
}

.saludos-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.saludos-title-group i {
    font-size: 1.2rem;
    color: #000;
}

.saludos-title-group span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem; /* Texto más proporcionado */
    color: #000;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.saludos-header-pill::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 18px;
    background-image: radial-gradient(rgba(255,255,255,0.5) 1.5px, transparent 1.5px);
    background-size: 5px 5px;
    pointer-events: none;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.column {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    height: fit-content;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    contain: layout;
}

/* Staggered delays for columns */
main .column:nth-child(1) { animation-delay: 0.1s; }
main .column:nth-child(2) { animation-delay: 0.3s; }
main .column:nth-child(3) { animation-delay: 0.5s; }

.transparent-col { background: transparent !important; box-shadow: none !important; border: none !important; padding: 0 !important; }

/* ─── CARDS ─── */
.premium-card-header {
    padding: 16px 20px 10px;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid #f0f2f8;
}

.premium-card-header i { color: var(--accent); }
.premium-card-content { padding: 0; }

/* ─── UNIFICACIÓN DE LOGOS EN COLUMNAS ─── */
.premium-card-content img {
    max-width: 90% !important;
    height: auto !important;
    max-height: 140px !important; /* Tamaño uniforme */
    display: block !important;
    margin: 20px auto !important;
    object-fit: contain !important;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.premium-card-content img:hover {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
}

/* ─── SALUDOS ─── */
.saludos-list {
    padding: 0 15px; /* Espacio interno para que el texto no pegue al borde */
}

.saludo-item {
    display: flex;
    gap: 11px;
    padding: 14px 5px; /* Ajustado */
    border-bottom: 1px solid #f2f4f8;
}

.saludo-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }

.saludo-text { flex: 1; }
.saludo-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; }
.saludo-meta strong { font-size: 0.82rem; color: var(--primary); font-weight: 800; }
.saludo-meta span { font-size: 0.68rem; color: #aaa; }
.saludo-text p { font-size: 0.78rem; color: #555; line-height: 1.4; }

.saludo-input-container {
    display: flex;
    gap: 8px;
    padding: 15px; /* Añadido padding para el formulario */
    background: #f8fafc; /* Fondo sutil para el área de envío */
    align-items: center;
}

.saludo-input-container input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 22px;
    border: 1px solid #e5e9f0;
    background: #f7f9fc;
    outline: none;
    font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif;
}

.send-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: #1a73e8; color: white; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.3s;
}
.send-btn:hover { background: #1558c0; }

.ver-mas-saludos {
    display: block; width: 100%; text-align: center;
    padding: 11px; border: 1.5px solid #e5e9f0; border-radius: 10px;
    margin-top: 14px; color: var(--accent); text-decoration: none;
    font-weight: 800; font-size: 0.73rem; letter-spacing: 0.3px;
    transition: all 0.3s;
}
.ver-mas-saludos:hover { background: #fff5f5; border-color: var(--accent); }

/* ─── SOCIAL BANNER (sidebar) ─── */
.premium-social-banner {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.social-banner-title {
    font-weight: 800; font-size: 0.82rem;
    display: flex; align-items: center; gap: 9px;
    letter-spacing: 0.5px;
}

.social-banner-icons { display: flex; gap: 10px; }

.social-banner-icons a {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem; text-decoration: none;
    transition: all 0.3s ease;
}
.social-banner-icons a:hover { transform: scale(1.15); }
.banner-fb { background: #1877f2; }
.banner-wa { background: #25d366; }
.banner-yt { background: #ff0000; }
.banner-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

.ver-todas-link { font-size: 0.73rem; color: var(--accent); font-weight: 700; text-decoration: none; }

/* ─── NEWS SECTION IMPROVED ─── */
.news-sidebar-column {
    background: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
}

.news-modern-header {
    padding: 20px 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.header-main-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.header-main-title i {
    color: var(--accent);
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px rgba(227,0,0,0.2));
}

.modern-view-all {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #fff5f5;
    border-radius: 20px;
    transition: all 0.3s;
}

.modern-view-all:hover {
    background: var(--accent);
    color: #fff;
}

/* ─── PREMIUM NEWS HEADER REFINED ─── */
.news-premium-header {
    padding: 25px 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-bottom: 1px solid #f1f5f9;
}

.premium-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pulse-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #0d1b4b 0%, #1e3a8a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(13, 27, 75, 0.2);
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(13, 27, 75, 0.2); }
    50% { transform: scale(1.08); box-shadow: 0 5px 20px rgba(13, 27, 75, 0.4); }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(13, 27, 75, 0.2); }
}

.header-text-group {
    display: flex;
    flex-direction: column;
}

.header-subtitle {
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.header-main-title {
    font-size: 1.2rem;
    font-weight: 950;
    color: var(--primary);
    margin: 0;
    letter-spacing: -0.8px;
    line-height: 1;
}

.premium-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-view-all:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 27, 75, 0.2);
}

/* ─── GLASS CATEGORY TAGS ─── */
.news-grid-tag {
    align-self: flex-start;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 4px 10px;
    text-transform: uppercase;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

.cat-deportes { background: rgba(5, 150, 105, 0.85) !important; border-color: rgba(16, 185, 129, 0.4) !important; }
.cat-politica { background: rgba(79, 70, 229, 0.85) !important; border-color: rgba(99, 102, 241, 0.4) !important; }
.cat-economia { background: rgba(8, 145, 178, 0.85) !important; border-color: rgba(6, 182, 212, 0.4) !important; }
.cat-salud { background: rgba(219, 39, 119, 0.85) !important; border-color: rgba(236, 72, 153, 0.4) !important; }
.cat-tecnologia { background: rgba(124, 58, 237, 0.85) !important; border-color: rgba(139, 92, 246, 0.4) !important; }
.cat-mundo { background: rgba(37, 99, 235, 0.85) !important; border-color: rgba(59, 130, 246, 0.4) !important; }
.cat-actualidad { background: rgba(227, 0, 0, 0.85) !important; border-color: rgba(255, 77, 77, 0.4) !important; }
.cat-general { background: rgba(100, 116, 139, 0.85) !important; border-color: rgba(148, 163, 184, 0.4) !important; }

/* ─── STACKED SLIDER REFINED ─── */
.news-slider-stack {
    position: relative;
    width: 100%;
    height: 180px;
}

.news-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-slider-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 5;
}

.news-overlay-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
    height: 100%;
}

.news-overlay-thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

.news-overlay-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-overlay-card:hover .news-overlay-thumb img {
    transform: scale(1.1);
}

.news-overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 75, 0.95) 0%, rgba(13, 27, 75, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
}

.news-text-box h3 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px;
    color: #fff;
    letter-spacing: -0.2px;
}

.news-grid-meta {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-grid-meta::before {
    content: '';
    width: 12px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.news-card-info h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.news-card-mini:hover h3 a {
    color: var(--accent);
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 400;
}

.news-date i {
    margin-right: 3px;
    color: var(--accent);
}

/* ─── PREMIUM AD PROMO REFINED ─── */
.premium-ad-promo {
    padding: 20px;
    background: #fff;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.promo-inner {
    background: #0d1b4b; /* Navy Solid fallback */
    background-image: linear-gradient(135deg, rgba(13, 27, 75, 0.92) 0%, rgba(30, 58, 138, 0.92) 100%),
                      url('../../premiun.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(13, 27, 75, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-text {
    position: relative;
    z-index: 5;
}

.promo-tag {
    font-size: 0.55rem;
    font-weight: 900;
    background: var(--gold);
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(245, 176, 65, 0.3);
}

.promo-text h3 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
    line-height: 1.1;
    color: #fff;
}

.promo-text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
    font-weight: 500;
}

.promo-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 10px 22px;
    border-radius: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-btn:hover {
    background: var(--gold);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 176, 65, 0.4);
}

.promo-icon {
    font-size: 4rem;
    color: rgba(245, 176, 65, 0.1);
    position: absolute;
    right: -10px;
    bottom: -15px;
    transform: rotate(-10deg);
    z-index: 1;
}

/* ─── PLAYER (NO TOCAR) ─── */
.modern-player {
    background: #001f3f;
    border-radius: 40px;
    padding: 0;
    width: 100%;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    isolation: isolate;
    min-height: 460px;
    contain: layout;
}

.player-bg-blur {
    position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
    background-size: cover; background-position: center;
    filter: blur(25px) brightness(0.4);
    z-index: 1; opacity: 0.8; transition: background-image 1s ease;
}

.player-content {
    position: relative;
    z-index: 10;
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: radial-gradient(circle at center, rgba(0,31,63,0.1) 0%, rgba(0,31,63,0.4) 100%);
    width: 100%;
    height: 100%;
}

.player-visualizer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.player-meta-info { text-align: center; width: 100%; margin-bottom: 5px; }

.live-program-row {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 12px;
}

.presenting-label {
    background: #e30000;
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(227,0,0,0.4);
    flex-shrink: 0;
}

.current-program-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.song-metadata {
    min-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.meta-song-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    overflow: hidden;
    min-width: 0;
}

.meta-song-title .marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-seamless 35s linear infinite;
    padding-right: 0;
}

.meta-song-title .marquee-track span {
    padding-right: 80px;
}

.meta-song-title:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-seamless {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.player-logo-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
}

.player-logo-container::before,
.player-logo-container::after {
    content: none !important;
    display: none !important;
}

.player-logo-circle {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.05); /* Base de vidrio esmerilado */
    border-radius: 24px; /* Cuadrado estático con bordes redondeados de 24px */
    padding: 0; /* Sin padding para alinear el borde exactamente con la carátula */
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.player-logo-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 5px solid rgba(255, 255, 255, var(--border-op, 0.15)); /* Reducido 4px (9px - 4px = 5px) */
    border-radius: 24px; /* Ajustado perfectamente al radio estático del contenedor (24px) */
    box-shadow: 0 0 var(--glow-radius, 35px) rgba(241, 196, 15, var(--border-op, 0.25)); /* Destello de luz oro reactivo */
    transition: box-shadow 0.05s ease-out, border-color 0.05s ease-out;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

/* Animación de respaldo deshabilitada por preferencia global de diseño limpio */
.modern-player.playing:not(.visualizer-active) .player-logo-circle::before {
    animation: none !important;
}

.player-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste premium que llena el contenedor */
    border-radius: 24px; /* Hace juego perfecto con el radio de la carátula y el borde (24px) */
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

/* Deshabilitado el giro ya que ahora es cuadrado con bordes redondeados */
.modern-player.playing .player-logo-circle img {
    animation: none;
}

.player-controls-container {
    position: relative;
    z-index: 10;
    padding: 20px 30px;
    width: 100%;
}

.player-controls-container { width: 100%; display: flex; flex-direction: column; gap: 30px; }
.player-volume-bar-wrapper { width: 100%; }

.volume-bar-container { display: flex; align-items: center; gap: 15px; padding: 0 15px; }

.vol-icon-btn { background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; }

.volume-slider-wrapper {
    flex: 1; position: relative; height: 6px;
    background: rgba(255,255,255,0.2); border-radius: 10px; display: flex; align-items: center;
}

.volume-slider-wrapper input { position: absolute; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 10; }

.volume-progress { position: absolute; height: 100%; background: #f1c40f; border-radius: 10px; width: 100%; }

.vol-percent { color: #fff; font-size: 0.95rem; font-weight: 700; min-width: 45px; }

.player-main-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.action-side { width: 50px; display: flex; justify-content: center; }

.play-btn-large {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #001f3f;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 5;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.play-btn-large:focus,
.play-btn-large:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.play-btn-large:hover { transform: scale(1.08); background: #f1c40f; color: #000; }
.play-btn-large i { margin-left: 6px; }
.play-btn-large.is-playing i { margin-left: 0; }
.play-btn-large.is-loading i { margin-left: 0; animation: fa-spin 2s linear infinite !important; }

/* ─── STATUS INDICATOR ─── */
.status-indicator-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.status-indicator-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: #f1c40f;
    border-color: #f1c40f;
}

.status-indicator {
    color: #fff;
    font-size: 1.8rem;
    opacity: 0.9;
}

.status-indicator.live {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.status-indicator.live i {
    color: #f1c40f;
    font-size: 1.5rem;
}

.status-indicator.live span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* ─── MOBILE MENU TRIGGER (PC HIDE) ─── */
.mobile-menu-btn-trigger {
    display: none; 
}

@media (max-width: 900px) {
    .mobile-menu-btn-trigger {
        display: block;
        background: rgba(255,255,255,0.1);
        border: none;
        color: white;
        padding: 10px;
        border-radius: 8px;
        font-size: 1.2rem;
        cursor: pointer;
    }
    .header-center, .premium-nav-bar { display: none !important; }
    .header-content-inner { justify-content: space-between; padding: 0 15px; }
}

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 8, 23, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    font-family: 'Montserrat', sans-serif;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #0d1b4b 0%, #020817 100%);
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 35px 25px;
    overflow-y: auto;
    box-sizing: border-box;
    transform: translateX(-100%);
}

@media (min-width: 769px) {
    .mobile-menu-content {
        width: 400px;
    }
}

.mobile-menu-overlay.active { 
    display: block !important; 
    animation: fadeInOverlay 0.3s ease forwards;
}

.mobile-menu-overlay.active .mobile-menu-content {
    animation: slideInLeftDrawer 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.close-menu-btn { 
    position: absolute; top: 20px; right: 20px; 
    background: rgba(255,255,255,0.1); border: none; 
    font-size: 1.8rem; color: #fff; cursor: pointer; 
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}

.close-menu-btn:hover { background: var(--accent); transform: rotate(90deg); }

.mobile-menu-header { text-align: left; margin-bottom: 15px; }
.mobile-menu-logo { max-width: 100px; filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); }

.mobile-menu-social { display: flex; justify-content: flex-start; gap: 10px; margin-bottom: 15px; }
.mobile-menu-social a { 
    width: 34px; height: 34px; border-radius: 8px; 
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); 
    display: flex; align-items: center; justify-content: center; 
    color: #fff; text-decoration: none; transition: all 0.3s;
    font-size: 0.9rem;
}

.mobile-menu-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); border-color: var(--accent); }

.mobile-wa-btn { 
    background: #25d366; color: white; text-decoration: none; 
    padding: 10px; border-radius: 10px; font-weight: 800; 
    display: flex; align-items: center; justify-content: center; 
    gap: 10px; margin-bottom: 15px; font-size: 0.85rem;
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.2);
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif !important;
}

.mobile-wa-btn:active { transform: scale(0.98); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-item { 
    background: rgba(255,255,255,0.02); 
    color: rgba(255,255,255,0.9); 
    text-decoration: none; padding: 10px 16px; 
    font-weight: 700; font-size: 0.9rem; border-radius: 10px; 
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.mobile-nav-item:hover, .mobile-nav-item:active { 
    background: rgba(255,255,255,0.06); 
    color: var(--gold); 
    padding-left: 22px;
    border-color: var(--gold);
}

/* ─── MOBILE ACCORDION SUBMENU PREMIUM ─── */
.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 0;
    margin-bottom: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    gap: 6px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.mobile-submenu.active {
    max-height: 500px; /* Suficiente espacio para listar todas las categorías */
    opacity: 1;
    margin-top: 8px;
    margin-bottom: 12px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.mobile-submenu-item {
    background: rgba(255, 255, 255, 0.01) !important;
    color: rgba(255, 255, 255, 0.6) !important; /* Texto atenuado para marcar jerarquía */
    text-decoration: none !important;
    padding: 8px 14px !important;
    font-size: 0.82rem !important; /* Ligeramente más pequeño */
    font-weight: 500 !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-family: 'Roboto', sans-serif !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Indicador visual de subcategoría (flecha sutil) */
.mobile-submenu-item::before {
    content: "\203a" !important;
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 1.1rem !important;
    line-height: 0 !important;
    transition: all 0.3s ease !important;
}

.mobile-submenu-item:hover, .mobile-submenu-item:active {
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--gold) !important;
    padding-left: 18px !important;
    border-color: rgba(255, 204, 0, 0.25) !important; /* Borde dorado sutil */
}

.mobile-submenu-item:hover::before, .mobile-submenu-item:active::before {
    color: var(--gold) !important;
    transform: translateX(3px) !important;
}

/* ─── PWA INSTALL MODAL PREMIUM ─── */
.pwa-banner-premium {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 8, 23, 0.7);
    backdrop-filter: blur(12px);
    z-index: 10001;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
}

.pwa-banner-premium.active { display: flex !important; animation: fadeIn 0.3s ease; }

.pwa-modal-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(241, 196, 15, 0.2);
    width: 100%;
    max-width: 400px;
    border-radius: 32px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(241, 196, 15, 0.1);
    position: relative;
    animation: fallAndWobble 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fallAndWobble {
    0% {
        transform: translateY(-150vh) rotate(-15deg) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(30px) rotate(8deg) scale(1.05);
        opacity: 1;
    }
    65% {
        transform: translateY(-15px) rotate(-4deg) scale(0.98);
    }
    80% {
        transform: translateY(8px) rotate(2deg) scale(1.01);
    }
    90% {
        transform: translateY(-3px) rotate(-1deg) scale(0.99);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

.pwa-icon-large {
    width: 90px; height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(241, 196, 15, 0.3);
    border-radius: 24px;
    margin: 0 auto 25px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3), 0 0 20px rgba(241, 196, 15, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwa-icon-large img { width: 100%; height: 100%; border-radius: 16px; object-fit: cover; }

.pwa-text-box h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900; 
    font-size: 1.5rem; 
    color: #fff; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px; 
}

.pwa-text-box p { 
    font-size: 0.95rem; 
    color: #94a3b8; 
    line-height: 1.6; 
    margin-bottom: 35px; 
}

.pwa-btn-install {
    width: 100%;
    background: linear-gradient(135deg, #f1c40f 0%, #d4ac0d 100%);
    color: #0f172a;
    border: none;
    padding: 18px;
    border-radius: 18px;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(241, 196, 15, 0.2);
}

.pwa-btn-install:hover { 
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 0 15px 25px rgba(241, 196, 15, 0.3);
}

.pwa-btn-install:active {
    transform: translateY(-1px) scale(0.98);
}

.pwa-btn-close-modal {
    margin-top: 20px;
    background: none; border: none;
    color: #64748b; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.pwa-btn-close-modal:hover {
    color: #f1c40f;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.3);
}
.search-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13, 27, 75, 0.95);
    z-index: 10000;
    display: none; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
}

.search-modal-overlay.active { display: flex; animation: fadeIn 0.3s ease; }

.search-modal-box {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    text-align: center;
}

.search-close-btn {
    position: absolute; top: 20px; right: 25px;
    font-size: 2.5rem; background: none; border: none;
    color: #64748b; cursor: pointer;
}

.search-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.search-input-group {
    display: flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.search-input-group:focus-within {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 10px 20px rgba(227,0,0,0.1);
}

.search-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
}

.search-input-group button {
    background: var(--accent);
    color: #fff;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.search-input-group button:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .search-modal-box { padding: 40px 20px; }
    .search-modal-title { font-size: 1.2rem; }
}
.main-footer {
    background: linear-gradient(135deg, #0d1b4b 0%, #1a3580 60%, #0d1b4b 100%) !important;
    color: #fff !important;
    padding: 60px 0 30px !important;
    margin: 40px 0 0 !important;
    width: 100% !important;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.18);
}

.main-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 18px 18px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding: 0 28px;
    position: relative;
    z-index: 10;
}

.footer-title {
    color: #f5b041 !important;
    font-size: 1.15rem;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.footer-text {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: #f5b041 !important;
    width: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.footer-social-circles {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-circle:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.social-circle.fb { background: #3b5998 !important; }
.social-circle.yt { background: #ff0000 !important; }
.social-circle.tk { background: #333333 !important; }
.social-circle.wa { background: #25d366 !important; }

.footer-copyright-simple {
    text-align: left;
    margin-top: 15px;
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

/* ─── MODERN RESPONSIVE RECONSTRUCTION ─── */

@media (max-width: 1024px) {
    main { grid-template-columns: 1fr; padding: 0 15px; margin: 20px auto; gap: 20px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.mobile-nav-group {
    display: none !important;
}

@media (max-width: 768px) {
    /* Global Header Mobile (Ultra Compact) */
    header { min-height: 65px !important; height: 65px !important; margin: 0 !important; width: 100% !important; border-radius: 0 !important; overflow: visible !important; }
    .header-content-inner { min-height: 65px !important; height: 65px !important; padding: 0 12px !important; gap: 6px !important; justify-content: space-between !important; align-items: center !important; }
    .header-right { height: 65px !important; display: flex !important; align-items: center !important; flex: 0 0 auto !important; gap: 8px !important; order: 3 !important; }
    .header-left { flex: 0 0 auto !important; order: 2 !important; display: flex !important; align-items: center !important; }
    .header-left .logo img, .header-brand-logo { max-width: 130px !important; max-height: 55px !important; margin: 0 !important; }

    .header-center { display: none !important; }
    .header-live-banner { display: none !important; }

    .mobile-menu-btn-trigger { 
        display: flex !important; align-items: center !important; justify-content: center !important;
        margin: 0 !important;
        background: transparent !important; border-radius: 0 !important; width: auto !important; height: 65px !important; 
        font-size: 1.5rem !important; color: #ffffff !important; cursor: pointer !important; border: none !important; 
        order: 1 !important; visibility: visible !important; opacity: 1 !important;
        padding: 0 !important;
    }

    .mobile-search-btn-trigger {
        display: flex !important;
        background: #000000 !important;
        border: none !important;
        color: #ffffff !important;
        font-size: 1.1rem !important;
        cursor: pointer !important;
        width: 34px !important;
        height: 34px !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        order: 2 !important;
        margin-left: 30px !important;
        align-self: center !important;
    }

    .social-pills-header { display: flex !important; gap: 6px !important; align-items: center !important; }
    .social-pills-header .social-circle { width: 34px !important; height: 34px !important; font-size: 0.9rem !important; }

    .premium-nav-bar { display: none !important; }

    /* Breaking News Ticker Mobile */
    .breaking-news-ticker { height: 35px !important; margin: 2px 0 2px 0 !important; border-bottom: none !important; font-family: 'Roboto', sans-serif !important; }
    .ticker-label { font-size: 13px !important; padding: 0 10px !important; font-weight: 500 !important; font-family: 'Roboto', sans-serif !important; }
    .ticker-track span { font-size: 13px !important; font-weight: 400 !important; font-family: 'Roboto', sans-serif !important; }
    main.home-magazine-v2 { margin-top: 0 !important; }

    /* Modern Player Mobile Optimization */
    .modern-player { border-radius: 30px; min-height: 400px; margin-bottom: 10px; padding: 0; width: 100% !important; min-width: 100% !important; box-shadow: none !important; }
    .player-visualizer-canvas { display: none !important; }
    .player-logo-container { width: 195px; height: 195px; margin-top: -10px; }
    .player-logo-circle { width: 175px; height: 175px; }
    .player-logo-circle::before { border-width: 4px; }
    .play-btn-large { width: 60px; height: 65px; font-size: 1.6rem; }
    
    .live-program-row { flex-direction: column; gap: 5px; margin-bottom: 8px; }
    .current-program-name { font-size: 1.2rem; max-width: 280px; text-align: center; }
    .presenting-label { font-size: 0.85rem; padding: 3px 12px; }
    .meta-song-title { font-size: 1.1rem; padding: 0 15px; }

    .player-controls-container { padding-bottom: 20px; gap: 12px; }
    .volume-bar-container { width: 85%; padding: 0 10px; }
    .vol-percent { font-size: 0.7rem; min-width: 35px; }

    /* News & Sidebar */
    .column { margin-bottom: 15px; }
    .news-premium-header { padding: 15px; }
    .header-main-title { font-size: 1rem; }
    
    /* Footer Mobile */
    .footer-container { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
    .footer-column { padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 30px; }
    .footer-column:last-child { border-bottom: none; margin-bottom: 0; }
    .footer-social-circles { justify-content: center; }
    .footer-copyright-simple { text-align: center; }
}

@media (max-width: 480px) {
    .player-logo-container { width: 175px; height: 175px; }
    .player-logo-circle { width: 155px; height: 155px; }
    .current-program-name { font-size: 1.15rem; }
    .modern-player { min-height: 420px; }
    .ticker-track span { font-size: 1.02rem; }
}

/* ── Responsive inner pages ── */
@media (max-width: 900px) {
    .about-hero-section { grid-template-columns: 1fr; }
    .about-logo-col { padding: 30px; }
    .about-mv-section { grid-template-columns: 1fr; }
    .about-mv-card { border-right: none; border-bottom: 1px solid #eef1f8; }
    .about-stats-row { flex-wrap: wrap; }
    .pub-banner { grid-template-columns: 1fr; padding: 40px 20px; }
    .pub-banner-img { display: none; }
    .pub-benefits-grid { grid-template-columns: 1fr; }
    .pub-contact-bar { flex-wrap: wrap; gap: 14px; padding: 25px; justify-content: center; }
}

/* ─── STICKY BOTTOM PLAYER BAR ─── */
@keyframes stickyPlayerSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-player-bar {
    position: fixed;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    height: 80px;
    background: rgba(13, 27, 75, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    align-items: center;
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden; 
    animation: stickyPlayerSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sticky-player-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    position: relative;
    z-index: 2; /* Stay above canvas */
}

.sticky-player-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.sticky-logo {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05); /* Base de vidrio esmerilado como el player principal */
    border: 2px solid rgba(255, 255, 255, 0.15); /* Borde blanco semi-transparente como el player principal */
    border-radius: 12px;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.25); /* Destello dorado reactivo coherente con el reproductor */
    box-sizing: border-box;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out, border-color 0.15s ease-out;
    will-change: transform, box-shadow;
}

.sticky-visualizer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.sticky-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste que llena el contenedor perfectamente */
    border-radius: 10px; /* Hace juego con los bordes del contenedor */
}

.sticky-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sticky-live-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: #ffffff;
    background: #ff0000;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.sticky-live-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

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

.sticky-song-title {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, 0.9);
}


.sticky-play-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    color: #0d1b4b;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.sticky-play-btn:focus,
.sticky-play-btn:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.sticky-play-btn:hover {
    transform: scale(1.1);
    background: #f1c40f;
    color: #000;
}

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

.sticky-play-btn.is-playing i {
    margin-left: 0;
}

.sticky-play-btn.is-loading i {
    margin-left: 0;
    animation: fa-spin 2s linear infinite;
}

.sticky-player-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.sticky-volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
}

.sticky-vol-icon {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.sticky-volume-slider-wrapper {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
}

.sticky-volume-slider-wrapper input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.sticky-volume-progress {
    position: absolute;
    height: 100%;
    background: #f1c40f;
    border-radius: 5px;
    width: 100%;
    pointer-events: none;
}

.sticky-live-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f1c40f;
}

.sticky-live-indicator i {
    font-size: 1.2rem;
}

.sticky-live-indicator span {
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Add padding to body so fixed player doesn't cover content */
body {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .sticky-player-bar {
        height: 70px;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important;
    }
    .sticky-player-inner {
        padding: 0 15px;
    }
    .sticky-logo {
        width: 45px;
        height: 45px;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 10px !important;
        overflow: hidden !important;
    }
    .sticky-song-title {
        font-size: 0.88rem !important;
        max-width: calc(100vw - 160px) !important; /* Aprovecha todo el ancho disponible en móvil */
    }
    .sticky-volume-container, .sticky-live-indicator {
        display: none;
    }
    .sticky-player-right {
        flex: 0;
    }
    .sticky-play-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    /* El ancho de la canción se calcula dinámicamente con calc(100vw - 160px) en el media query superior */
}


/* ─── PREMIUM WELCOME MODAL (INICIO) ─── */
.welcome-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(15, 23, 42, 0.75) !important; /* Slate 900 translucent */
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 999999 !important; /* Top level above all other elements */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    animation: welcome-modal-fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.welcome-modal-overlay.fade-out {
    animation: welcome-modal-fade-out 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.welcome-modal-box {
    background: #ffffff !important;
    width: 100% !important;
    max-width: 480px !important;
    border-radius: 28px !important;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.3) !important;
    position: relative !important;
    padding: 35px 30px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    opacity: 0;
    transform: scale(0.3) translateY(100px) rotate(-10deg);
    animation: welcome-modal-bounce-in 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.15s forwards !important;
}

.welcome-modal-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: #f1f5f9 !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    font-size: 1.4rem !important;
    color: #64748b !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    z-index: 10 !important;
}

.welcome-modal-close:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    transform: rotate(90deg) !important;
}

.welcome-modal-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.welcome-modal-icon {
    font-size: 2.2rem !important;
    color: #ef4444 !important;
    margin-bottom: 15px !important;
}

.welcome-modal-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.3 !important;
    margin: 0 0 20px 0 !important;
}

.welcome-modal-img-wrapper {
    width: 100% !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    margin-bottom: 22px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.welcome-modal-img-wrapper img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

.welcome-modal-img-wrapper img:hover {
    transform: scale(1.03) !important;
}

.welcome-ad-badge {
    background: #f1f5f9 !important;
    color: #475569 !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
    display: inline-block !important;
}

/* ─── DISEÑO AD MODERNO FULL-BLEED ─── */
.welcome-modal-ad-fullbleed {
    padding: 0 !important;
    overflow: visible !important; /* Allow the close button to float outside without clipping */
    max-width: 500px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45) !important;
}

.welcome-modal-ad-fullbleed .welcome-modal-close {
    top: -21px !important; /* Half of the button's height outside */
    right: -21px !important; /* Half of the button's width outside */
    background: rgba(15, 23, 42, 0.85) !important; /* Slightly darker glass for contrast outside */
    color: #ffffff !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 2px solid #ffffff !important; /* Solid white border to stand out perfectly */
    width: 42px !important;
    height: 42px !important;
    font-size: 1.4rem !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 100 !important;
}

.welcome-modal-ad-fullbleed .welcome-modal-close:hover {
    background: rgba(15, 23, 42, 0.85) !important;
    transform: rotate(90deg) scale(1.1) !important;
    color: #ffffff !important;
}

.welcome-ad-layout-modern {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    border-radius: 28px !important;
    overflow: hidden !important;
}

.welcome-ad-link-wrap {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    cursor: pointer !important;
}

.welcome-ad-img-modern {
    width: 100% !important;
    height: auto !important;
    max-height: 82vh !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 28px !important;
    transition: filter 0.3s ease, transform 0.5s ease !important;
}

.welcome-ad-link-wrap:hover .welcome-ad-img-modern {
    filter: brightness(0.92) !important;
    transform: scale(1.01) !important;
}

.welcome-poll-form {
    width: 100% !important;
}

.welcome-poll-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-bottom: 25px !important;
}

.welcome-poll-option-label {
    display: flex !important;
    align-items: center !important;
    padding: 14px 20px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    font-weight: 600 !important;
    color: #334155 !important;
    font-size: 0.95rem !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

.welcome-poll-option-label:hover {
    border-color: #cbd5e1 !important;
    background: #f8fafc !important;
}

.welcome-poll-option-label input[type="radio"] {
    margin-right: 14px !important;
    accent-color: #ef4444 !important;
    transform: scale(1.15) !important;
}

.welcome-poll-option-label:has(input[type="radio"]:checked) {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
    color: #ef4444 !important;
}

.btn-submit-welcome-modal {
    width: 100% !important;
    padding: 14px 25px !important;
    background: #ef4444 !important; /* Premium red primary color */
    border: none !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25) !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.btn-submit-welcome-modal:hover {
    background: #dc2626 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35) !important;
}

.btn-submit-welcome-modal.secondary {
    background: #64748b !important;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.2) !important;
}

.btn-submit-welcome-modal.secondary:hover {
    background: #475569 !important;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3) !important;
}

@keyframes welcome-modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes welcome-modal-fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes welcome-modal-bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px) rotate(-10deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.08) translateY(-15px) rotate(3deg);
    }
    70% {
        transform: scale(0.97) translateY(5px) rotate(-1.5deg);
    }
    90% {
        transform: scale(1.01) translateY(-2px) rotate(0.5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
    }
}

/* ==========================================================================
   PERSISTENT STICKY MENU SYSTEM (PREMIUM GLASSMORPHISM & SMOOTH ENTRANCE)
   ========================================================================== */

@keyframes stickySlideDown {
    from {
        transform: translateY(-100%) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* 1. Desktop Sticky Header & Integrated Navigation */
@media (min-width: 993px) {
    header.sticky-active {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100px !important;
        min-height: 100px !important;
        z-index: 2000 !important;
        backdrop-filter: blur(15px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        animation: stickySlideDown 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    header.sticky-active .header-content-inner {
        height: 100px !important;
        min-height: 100px !important;
        padding: 0 30px !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    header.sticky-active .header-left {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        flex: none !important;
        order: 2 !important;
        z-index: 10100 !important;
        pointer-events: all !important;
    }
    
    header.sticky-active .header-center {
        display: none !important;
    }
    
    header.sticky-active .header-brand-logo {
        max-height: 100px !important;
        max-width: 220px !important;
        transition: all 0.3s ease !important;
    }
    
    header.sticky-active .premium-nav-bar {
        display: none !important;
    }
    header.sticky-active .sticky-desktop-nav-actions {
        display: flex !important;
        align-items: center !important;
    }
    
    header.sticky-active .mobile-menu-btn-trigger {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(0, 0, 0, 0.05) !important;
        border: 1px solid rgba(0, 0, 0, 0.15) !important;
        color: #000000 !important;
        border-radius: 50% !important;
        width: 42px !important;
        height: 42px !important;
        font-size: 1.3rem !important;
        cursor: pointer !important;
        margin-right: 12px !important;
        transition: all 0.3s ease !important;
        order: 0 !important;
    }

    header.sticky-active .sticky-search-btn-desktop {
        display: inline-flex !important;
        background: transparent !important;
        color: #000000 !important;
        border: 1.5px solid #000000 !important;
        height: 30px !important;
        border-radius: 50px !important;
        padding: 0 16px !important;
        font-size: 0.65rem !important;
        font-weight: 800 !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        align-self: center !important;
        order: 1 !important;
        margin-left: 0 !important;
        letter-spacing: 0.5px !important;
    }
    
    header.sticky-active .sticky-search-btn-desktop:hover {
        background: rgba(0, 0, 0, 0.08) !important;
        transform: scale(1.05);
    }

    header.sticky-active .mobile-menu-btn-trigger:hover {
        background: rgba(0, 0, 0, 0.08) !important;
        transform: scale(1.05);
    }

    /* Logo siempre clickeable en sticky desktop */
    header.sticky-active .header-left .logo a,
    header.sticky-active .header-left .logo {
        position: relative !important;
        z-index: 100 !important;
        cursor: pointer !important;
        pointer-events: all !important;
    }
}

/* 2. Mobile Sticky Header */
@media (max-width: 992px) {
    header.sticky-active {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 2000 !important;
        backdrop-filter: blur(15px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        animation: stickySlideDown 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    header.sticky-active .mobile-search-btn-trigger {
        margin-left: 30px !important;
    }

    /* Logo siempre clickeable en sticky mobile */
    header.sticky-active .header-left .logo a,
    header.sticky-active .header-left .logo {
        position: relative !important;
        z-index: 100 !important;
        cursor: pointer !important;
        pointer-events: all !important;
    }
}

/* ==========================================================================
   TV EN VIVO - DYNAMIC SEPARATOR, PILL BUTTON, PULSING DOT & MODAL STYLES
   ========================================================================== */

/* Divider line in header */
.live-tv-divider {
    width: 1.5px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 16px;
    display: inline-block;
    align-self: center;
    flex-shrink: 0;
}

/* TV Pill Button in Header */
.btn-live-tv {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF0000;
    border: 1.5px solid #FF0000;
    border-radius: 50px;
    padding: 8px 18px;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-live-tv i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.btn-live-tv:hover {
    background: #cc0000;
    border-color: #cc0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-live-tv:hover i {
    transform: scale(1.15) rotate(-3deg);
}

.btn-live-tv:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
}

/* Pulsing White Dot (for high contrast against red background) */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 8px #ffffff;
    animation: live-pulse-white 1.6s infinite;
}

@keyframes live-pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }
    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);
    }
}

/* SweetAlert2 Premium Custom Styling */
.premium-swal-popup {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    font-family: 'Montserrat', sans-serif !important;
}
.premium-swal-button {
    border-radius: 8px !important;
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Glassmorphic Live TV Modal */
.tv-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 30, 0.82);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.tv-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.tv-modal-box {
    width: 100%;
    max-width: 960px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
}

.tv-modal-overlay.active .tv-modal-box {
    transform: scale(1) translateY(0);
}

/* Ultra-Premium Close Button positioned nicely on border outer-edge */
.tv-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ff4757;
    border: 3px solid rgba(15, 23, 42, 0.9);
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(255, 71, 87, 0.4);
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-modal-close:hover {
    transform: scale(1.15) rotate(90deg);
    background: #ff6b81;
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.6);
}

.tv-modal-close:active {
    transform: scale(0.95);
}

/* 16:9 Aspect Ratio Container */
.tv-modal-content {
    width: 100%;
    padding: 12px;
}

.tv-player-ratio-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #020617;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .live-tv-divider {
        height: 24px;
        margin: 0 10px;
    }
    
    .btn-live-tv {
        padding: 6px 12px;
        gap: 5px;
        font-size: 0.65rem;
    }
    
    .btn-live-tv i {
        font-size: 0.75rem;
    }
    
    .tv-modal-box {
        border-radius: 16px;
    }
    
    .tv-modal-close {
        top: -12px;
        right: -12px;
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Hide the text on extremely small screens to fit neatly */
    .btn-live-tv span:not(.live-dot) {
        display: none;
    }
    
    .btn-live-tv {
        padding: 0;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        justify-content: center;
    }
    
    .btn-live-tv i {
        margin: 0;
        font-size: 0.85rem;
    }
    
    .live-tv-divider {
        margin: 0 6px;
    }
}

/* ==========================================================================
   ─── MODERN TYPOGRAPHY SYSTEM OVERRIDES ───
   Inspired by Latin American professional news portals & online radio.
   ========================================================================== */

/* Global base and headings */
body, p, span, a, input, button, textarea, select {
    font-family: 'Poppins', 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* 1. Main Navigation Menu (Roboto Sans-Serif) */
.nav-link {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.1px !important;
}
.submenu-item {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0px !important;
}
.mobile-nav-links a.mobile-nav-item {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0px !important;
}

/* 2. Breaking News / "Lo Último" (Sleek Roboto in uppercase) */
.breaking-news-ticker {
    font-family: 'Roboto', sans-serif !important;
}
.ticker-label {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
}
.ticker-track span, .ticker-link {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0px !important;
}

/* 3. Header Superior Live Info (Clean, modern Outfit) */
.header-live-banner,
.header-live-banner *:not(i),
.live-status-pill-small,
.live-announcer-mini,
.live-show-mini-title,
.live-show-mini-time,
.btn-live-tv {
    font-family: 'Outfit', sans-serif !important;
}
.live-status-pill-small {
    font-weight: 800 !important;
    letter-spacing: 0.6px !important;
}
.live-announcer-mini {
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
}
.live-show-mini-title {
    font-weight: 800 !important;
    letter-spacing: -0.3px !important;
}
.live-show-mini-time {
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
}
.btn-live-tv {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
}

/* 4. Programming Sections (Clean geometric Poppins) */
.home-prog-exact-section,
.prog-exact-container,
.prog-header-left h2,
.prog-header-left p,
.prog-exact-bold,
.prog-exact-normal,
.prog-exact-time,
.btn-prog-pill-exact,
.btn-view-all-prog,
.btn-view-all-prog *:not(i),
.prog-container-modern,
.prog-container-modern *:not(i),
.day-pill-btn,
.prog-row-item,
.prog-row-item *:not(i),
.prog-time-modern,
.prog-info-main h3,
.prog-announcer-modern,
.prog-participate-btn,
.show-day-badge,
.live-badge-modern {
    font-family: 'Poppins', sans-serif !important;
}

/* Font Awesome Reset to ensure icons never get overridden */
.header-live-banner i,
.btn-live-tv i,
.prog-row-item i,
.btn-view-all-prog i,
.prog-container-modern i,
i.fas, i.far, i.fab, i.fa-solid, i.fa-regular, i.fa-brands,
[class^="fa-"], [class*=" fa-"] {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
}

.prog-header-left h2 {
    font-weight: 800 !important;
    letter-spacing: -0.8px !important;
}
.prog-exact-bold {
    font-weight: 700 !important;
    letter-spacing: -0.2px !important;
}
.prog-exact-normal {
    font-weight: 400 !important;
}
.prog-exact-time {
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
}
.day-pill-btn {
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
}
.prog-info-main h3 {
    font-weight: 800 !important;
    letter-spacing: -0.4px !important;
}
.prog-announcer-modern {
    font-weight: 600 !important;
}
.prog-participate-btn {
    font-weight: 800 !important;
    letter-spacing: 0.4px !important;
}

/* 5. Visual Hierarchy & News Titles Improvement */
.cat-header-left h2 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: -1.2px !important;
}
.hero-title, .hero-title a {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.15 !important;
}
.side-title, .side-title a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.25 !important;
}
.exact-title, .exact-title a {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.35 !important;
}
.page-main-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 950 !important;
    letter-spacing: -1.5px !important;
}
.page-hero-title {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 950 !important;
    letter-spacing: -2px !important;
}
.about-section-title, .mv-card-modern h3, .pub-title-modern, .benefit-card-premium h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.8px !important;
}

/* ─── FOOTER BADGES ROW ─── */
.footer-badge-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 15px !important;
    flex-wrap: wrap !important;
}


/* ─── FOOTER PWA PLAYSTORE BUTTON ─── */
.footer-pwa-install-container {
    margin-top: 0 !important; /* Margen removido para alineación flex */
    display: block !important;
}

.footer-pwa-install-link {
    display: inline-block !important;
    transition: transform 0.3s ease, filter 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    line-height: 0 !important;
}

.footer-playstore-img {
    height: 42px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    transition: box-shadow 0.3s ease !important;
}

.footer-pwa-install-link:hover {
    transform: scale(1.05) !important;
}

.footer-pwa-install-link:hover .footer-playstore-img {
    box-shadow: 0 6px 15px rgba(241, 196, 15, 0.25) !important;
}

/* ─── ROTATING BORDER FOR PLAY BUTTONS ─── */
.sticky-play-btn,
.play-btn-large {
    position: relative !important;
}

/* Pseudo-elemento para el borde giratorio degradado */
.sticky-play-btn::before,
.play-btn-large::before {
    content: '' !important;
    position: absolute !important;
    border-radius: 50% !important;
    background: conic-gradient(from 0deg, transparent 0%, rgba(255, 255, 255, 0.15) 8%, #ffffff 25%, rgba(255, 255, 255, 0.15) 42%, transparent 50%, transparent 100%) !important; /* Cápsula de luz blanca degradada en ambos extremos */
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease, filter 0.3s ease !important;
    animation: spin-play-border 1.5s linear infinite !important; /* Velocidad acelerada para notar claramente el movimiento */
    pointer-events: none !important;
}

/* Dimensiones específicas del pseudo-borde para el play grande */
.play-btn-large::before {
    top: -5px !important;
    left: -5px !important;
    right: -5px !important;
    bottom: -5px !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) !important;
}

/* Dimensiones específicas del pseudo-borde para el play flotante inferior */
.sticky-play-btn::before {
    top: -4px !important;
    left: -4px !important;
    right: -4px !important;
    bottom: -4px !important;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6)) !important;
}

/* Activar y mostrar el borde giratorio brillante cuando está reproduciendo */
.play-btn-large.is-playing::before,
.sticky-play-btn.is-playing::before {
    opacity: 1 !important;
}

/* Añadir un sutil destello de luz rotatorio cuando está en hover reproduciendo */
.play-btn-large.is-playing:hover::before,
.sticky-play-btn.is-playing:hover::before {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9)) !important;
}

@keyframes spin-play-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

