: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; }

body {
    background-color: var(--body-bg);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    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: 140px; /* Aumentado de 130px */
    width: 100%;
    margin: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    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;
}

.header-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 140px; /* Sincronizado */
    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: 15px 0; /* Más espacio vertical */
    display: flex;
    align-items: center;
}

.header-left .logo img {
    max-width: 190px;
    max-height: 110px; /* Tamaño aumentado para web */
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.15));
    transition: transform 0.3s ease;
}

.header-left .logo img: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: #ffcc00; /* Amarillo vibrante exacto */
    height: 60px;
    border-radius: 10px;
    padding: 0 25px;
    gap: 20px;
    margin: 5px 0;
}

.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; /* Sin fondo, como en la imagen */
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; /* Reducido de 0.8rem */
    font-weight: 900;
    padding: 1px 10px;
    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;
    font-size: 0.85rem; /* Reducido de 0.95rem */
    font-weight: 700;
    color: #000000;
    margin-left: 2px;
}

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

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

.live-show-mini-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; /* Reducido de 1.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;
    font-size: 0.85rem; /* Reducido de 0.95rem */
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-show-mini-time i {
    font-size: 0.85rem;
    color: #000000;
}

@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: 1px 8px; }
    .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: 50px !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: #e2e8f0 !important; /* Blanco oscuro / Gris claro */
    color: #0f172a !important; /* Texto oscuro */
    border: none !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: 0 2px 5px rgba(0,0,0,0.1) !important;
}

.nav-link.ticker-header-btn:hover {
    background: #cbd5e1 !important;
    transform: scale(1.05);
}

/* ─── BREAKING NEWS TICKER REFINED ─── */
/* ─── BREAKING NEWS TICKER (REFINED BLACK) ─── */
.breaking-news-ticker {
    width: 100% !important;
    height: 42px !important;
    background: #000000 !important; /* Fondo negro como pediste */
    margin: 5px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 100 !important;
    border-bottom: none !important; /* Eliminada línea roja */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    font-family: 'Roboto', sans-serif !important;
}

.ticker-label {
    background: #ff0000 !important; /* Etiqueta roja fija */
    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;
    /* 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: 500 !important;
    display: flex !important;
    align-items: center !important;
}

.ticker-link { 
    color: #ffffff !important; 
    text-decoration: none !important;
}

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

.ticker-line-sep {
    width: 1.5px !important;
    height: 18px !important;
    background: rgba(255,255,255,0.3) !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; }
    .ticker-label { font-size: 0.65rem !important; padding: 0 12px !important; }
    .ticker-track span { font-size: 0.8rem !important; }
    .ticker-label::after { border-top-width: 19px; border-bottom-width: 19px; border-left-width: 10px; right: -10px; }
}

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

#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; }

/* ─── 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: 900;
    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: transparent;
    border-radius: 50%;
    padding: 5px;
    border: 5px solid rgba(255, 255, 255, var(--border-op, 0.15));
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(var(--pulse-scale, 1));
}

.player-logo-circle img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    transition: transform 0.5s ease;
}

.modern-player.playing .player-logo-circle img {
    animation: spin-record 15s linear infinite;
}

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

.player-controls-container {
    position: relative;
    z-index: 10;
    padding: 20px 30px;
    width: 100%;
}
    position: relative;
    transform: scale(var(--pulse-scale, 1));
}

.player-logo-circle img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 0;
    transform: scale(var(--img-scale, 1));
}

.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: 80%; }

.volume-slider-wrapper::after {
    content: ''; position: absolute; left: var(--vol-pos, 80%);
    width: 16px; height: 16px; background: #f1c40f; border-radius: 50%;
    transform: translate(-50%, 0); box-shadow: 0 0 10px rgba(0,0,0,0.5); z-index: 5;
}

.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: 90px;
    height: 90px;
    background: #fff;
    color: #001f3f;
    border: none;
    border-radius: 50%;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}
.play-btn-large:hover { transform: scale(1.08); }
.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: rotate-spinner 1s linear infinite; }

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

/* ─── 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; 
}

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #0d1b4b 0%, #020817 100%);
    z-index: 9999;
    display: none; flex-direction: column; padding: 25px 20px; overflow-y: auto;
    font-family: 'Montserrat', sans-serif;
}

.mobile-menu-overlay.active { 
    display: flex; 
    animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; 
}

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

.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: 25px; }
.mobile-menu-logo { max-width: 120px; 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: 25px; }
.mobile-menu-social a { 
    width: 38px; height: 38px; border-radius: 10px; 
    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: 1rem;
}

.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: 14px; border-radius: 12px; font-weight: 800; 
    display: flex; align-items: center; justify-content: center; 
    gap: 10px; margin-bottom: 25px; font-size: 0.9rem;
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.2);
    transition: all 0.3s;
}

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

.mobile-nav-links { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav-item { 
    background: rgba(255,255,255,0.02); 
    color: rgba(255,255,255,0.9); 
    text-decoration: none; padding: 14px 20px; 
    font-weight: 700; font-size: 1rem; border-radius: 12px; 
    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: 28px;
    border-color: var(--gold);
}

/* ─── PWA INSTALL MODAL PREMIUM ─── */
.pwa-banner-premium {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 8, 23, 0.85);
    backdrop-filter: blur(8px);
    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: #fff;
    width: 100%;
    max-width: 400px;
    border-radius: 32px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    animation: slideUpPwa 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.pwa-icon-large {
    width: 80px; height: 80px;
    background: #fff;
    border-radius: 22px;
    margin: 0 auto 20px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pwa-icon-large img { width: 100%; height: 100%; border-radius: 12px; }

.pwa-text-box h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.4rem; color: #0d1b4b; margin-bottom: 10px; }
.pwa-text-box p { font-size: 0.95rem; color: #64748b; line-height: 1.5; margin-bottom: 30px; }

.pwa-btn-install {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.pwa-btn-install:hover { background: var(--accent-dark); transform: translateY(-3px); }

.pwa-btn-close-modal {
    margin-top: 15px;
    background: none; border: none;
    color: #94a3b8; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; text-decoration: underline;
}
.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; }
}

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

    .mobile-menu-btn-trigger { 
        display: flex !important; align-items: center !important; justify-content: center !important;
        background: rgba(255,255,255,0.1) !important; border-radius: 8px !important; width: 38px !important; height: 38px !important; 
        font-size: 1.3rem !important; color: #ffffff !important; cursor: pointer !important; border: none !important; 
        order: 1 !important; visibility: visible !important; opacity: 1 !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: 6px 0 -10px !important; border-bottom: none !important; }
    .ticker-label { font-size: 0.9rem !important; padding: 0 10px !important; font-weight: 950 !important; }
    .ticker-track span { font-size: 1.05rem !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: 175px; height: 175px; margin-top: -10px; }
    .player-logo-circle { width: 155px; height: 155px; border-width: 3px; }
    .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: 155px; height: 155px; }
    .player-logo-circle { width: 135px; height: 135px; }
    .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; }
}

@media (max-width: 768px) {
    .news-grid-feed { grid-template-columns: 1fr; }
    .page-card { padding: 20px; border-radius: 20px; }
    .hero-title { font-size: 1.8rem; }
    .pub-banner-text h2 { font-size: 1.6rem; }
}
