
/* ========================================================
   USER REQUESTED OVERRIDES (Black & White)
   ======================================================== */

.playerBtn {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Fix mobile Play Circle Size */
body.desktop-pc-mode #pcBarPlay {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
}

/* Also for non-desktop mode just in case */
#pcBarPlay, .mobile-play-btn {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    border-radius: 50% !important;
}

/* Reverting our previous MASTER OVERRIDE for these specific buttons because the user requested strict black/white */


/* ========================================================
   MASTER OVERRIDE FOR CONTRAST
   These classes MUST use main-color-text (which handles brightness)
   ======================================================== */
.modern-program-day.active,
.modern-player-badge,
.playerBtn,
body.desktop-pc-mode #pcBarPlay {
    color: #ffffff !important;
}

/* Pause icon lines */
body.desktop-pc-mode #pcBarPlay.playing::before,
.playerBtn.playing::before {
    background-image: linear-gradient(to right, #ffffff 0, #ffffff 7px, transparent 7px, transparent 11px, #ffffff 11px, #ffffff 18px) !important;
}

/* Play icon triangle */
body.desktop-pc-mode #pcBarPlay::before,
.playerBtn::before {
    border-color: transparent transparent transparent #ffffff !important;
}

/* ============================================================
   MODERN PREMIUM STYLE - ISOLATED HERO MODULE
   ============================================================ */

/* SCOPED FONT IMPORT - DO NOT APPLY GLOBALLY */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

/* SCOPED VARIABLES */
.desktop-vraem-shell {
    --vraem-accent: var(--main-color);
    --vraem-accent-rgb: 245, 180, 0;
    --vraem-text-primary: #111;
    --vraem-text-primary-rgb: 17, 17, 17;
    --vraem-text-secondary: #666;
    --vraem-card-bg: #fff;
    --vraem-card-bg-rgb: 255, 255, 255;
    --vraem-border: rgba(0,0,0,0.08);
}

/* THEME: DARK (SCOPED) */
body.desktop-theme-dark .desktop-vraem-shell {
    --vraem-text-primary: #eee;
    --vraem-text-primary-rgb: 238, 238, 238;
    --vraem-text-secondary: #aaa;
    --vraem-card-bg: #111;
    --vraem-card-bg-rgb: 17, 17, 17;
    --vraem-border: rgba(255,255,255,0.1);
}

/* HIDE MODERN DESKTOP SECTIONS ON MOBILE */
@media (max-width: 1024px) {
    #pcMain, 
    .desktop-vraem-shell {
        display: none !important;
    }

    /* PREMIUM MOBILE NEWS CARDS */
    .modern-mobile-news-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    .mm-news-thumb {
        width: 100%;
        height: 180px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .mm-news-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--main-color);
        color: #000;
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .mm-news-content {
        padding: 16px;
    }

    .mm-news-title {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .mm-news-date {
        color: rgba(255,255,255,0.5);
        font-size: 0.8rem;
    }

    /* PREMIUM MOBILE PROGRAM CARDS */
    .programCard {
        background: rgba(255,255,255,0.03) !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        border-radius: 12px !important;
        padding: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .mm-prog-time {
        font-size: 14px;
        font-weight: 900;
        color: var(--main-color);
    }

    .mm-prog-card-inner {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .mm-prog-thumb {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        background-size: cover;
        background-position: center;
        border: 1px solid rgba(255,255,255,0.1);
        flex-shrink: 0;
    }

    .mm-prog-title {
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
    }

    .mm-prog-desc {
        color: rgba(255,255,255,0.6);
        font-size: 0.85rem;
    }
}

/* RESET FONT ONLY WITHIN THIS MODULE */
.desktop-vraem-shell, 
.desktop-vraem-shell button, 
.desktop-vraem-shell div, 
.desktop-vraem-shell span {
    font-family: 'Outfit', sans-serif !important;
    box-sizing: border-box;
}

/* MOBILE SCROLL FIX (DISABLED - REVERTING TO FIXED MOBILE) */
/* Reverting to a fixed viewport on mobile as per original app behavior */

/* ============================================================
   NUESTROS LOCUTORES - DESKTOP ONLY SLIDER
   ============================================================ */
@media (min-width: 1024px) {
    }

    .desktop-locutores-list {
        display: flex;
        gap: 25px;
        overflow: hidden;
        scroll-behavior: smooth;
        padding: 20px 0;
    }

    .desktop-locutores-card {
        flex: 0 0 calc(25% - 18.75px);
        background: var(--vraem-card-bg);
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 16 / 21;
        position: relative;
        border: 1px solid var(--vraem-border);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        transition: all 0.4s ease;
    }

    .desktop-locutores-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.25) !important;
    }

    .desktop-locutores-photo-wrap {
        width: 100%;
        height: 100%;
    }

    .desktop-locutores-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .desktop-locutores-info {
        position: absolute;
        bottom: 25px;
        left: 20px;
        right: 20px;
        z-index: 5;
    }

    /* UNIVERSAL SLIDER NAVIGATION RESTORED */
    .modern-slider-nav, 
    .modern-program-nav {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1.5px solid rgba(255,255,255,0.2);
        color: #fff;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 100;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* NEWS CATEGORY BADGE (Featured) */
    .news-category-badge {
        display: inline-block;
        background: var(--main-color) !important;
        color: #000 !important;
        padding: 5px 14px !important;
        border-radius: 99px !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        margin-bottom: 15px !important;
    }

    /* SOCIAL ICONS MOBILE POLISH */
    .socialLink:hover {
        transform: scale(1.1) translateY(-3px) !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4) !important;
    }

    .modern-slider-nav:hover,
    .modern-program-nav:hover {
        background: var(--vraem-accent);
        color: #000;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 15px 30px rgba(245, 180, 0, 0.4);
    }

    .modern-slider-nav.prev,
    .modern-program-nav.prev { left: -15px; }
    .modern-slider-nav.next,
    .modern-program-nav.next { right: -15px; }
}

.desktop-locutores-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    z-index: 1;
}

.desktop-locutores-info {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 5;
}

.desktop-locutores-badge {
    display: inline-block;
    background: var(--vraem-accent) !important;
    color: #000 !important;
    padding: 3px 10px !important;
    border-radius: 4px !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    margin-bottom: 4px !important;
}

.desktop-locutores-name {
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
}

@media (min-width: 1024px) {
    #desktopLocutoresSection {
        padding: 40px 60px 80px 60px !important;
    }
    .desktop-locutores-title {
        font-size: 3.5rem !important;
        text-align: left;
        display: inline-block;
    }
    .desktop-locutores-viewport {
        overflow: hidden;
    }
    .desktop-locutores-track {
        gap: 30px;
        width: 100%;
    }
    .desktop-locutores-card {
        flex: 0 0 calc(25% - 22.5px);
    }
    .desktop-locutores-info {
        bottom: 25px;
        padding: 16px 20px !important;
    }
    .desktop-locutores-name {
        font-size: 1.35rem !important;
    }
}

@media (min-width: 1024px) {
    .desktop-vraem-shell {
        background: transparent !important;
        position: relative;
        z-index: 10;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
    }

    .desktop-vraem-top-actions {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .desktop-vraem-top-icon {
        width: 38px !important;
        height: 38px !important;
        background: rgba(0, 0, 0, 0.04) !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        border-radius: 50% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #555 !important;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }

    body.desktop-theme-dark .desktop-vraem-top-icon {
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: #ccc !important;
    }

    .desktop-vraem-top-icon:hover {
        background: var(--vraem-accent) !important;
        color: #000 !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .desktop-vraem-top-icon svg {
        width: 18px !important;
        height: 18px !important;
        stroke: currentColor !important;
        stroke-width: 2.5 !important;
    }

    /* MENU ANIMATION */
    .desktop-vraem-menu {
        position: relative;
        display: flex;
        gap: 6px !important;
        background: rgba(0,0,0,0.03);
        padding: 4px;
        border-radius: 99px;
        border: 1px solid rgba(0,0,0,0.04);
    }
    
    body.desktop-theme-dark .desktop-vraem-menu {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.05);
    }

    .desktop-vraem-menu-link {
        position: relative;
        z-index: 2;
        padding: 8px 16px !important; 
        border: none !important;
        background: transparent !important;
        border-radius: 99px !important;
        color: var(--vraem-text-secondary) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        letter-spacing: 0.6px !important;
        text-transform: uppercase !important;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    body.desktop-theme-dark .desktop-vraem-menu-link {
        color: rgba(255, 255, 255, 0.7) !important; /* High contrast inactive */
    }

    body.desktop-theme-dark .desktop-vraem-menu-link.active,
    body.desktop-theme-dark .desktop-vraem-menu-link:hover {
        color: var(--vraem-accent) !important; 
    }

    /* DARK MODE NAVBAR FIX */
    body.desktop-theme-dark .desktop-vraem-topbar-inner {
        background: rgba(20, 20, 20, 0.85) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    }

    .desktop-vraem-menu-indicator {
        position: absolute;
        height: calc(100% - 10px);
        background: rgba(0, 0, 0, 0.08); 
        border-radius: 99px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1;
        pointer-events: none;
        top: 5px;
        left: 0;
        width: 0;
    }

    body.desktop-theme-dark .desktop-vraem-menu-indicator {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }


    @keyframes vraem-fade-up {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .desktop-vraem-wrap {
        padding: 0 40px 60px !important;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center; /* Center vertically for a more balanced look */
        gap: 80px;
    }

    /* Album Section Wrapper */
    .desktop-vraem-card {
        flex: 0 0 380px;
        width: 380px;
        height: 380px;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    /* 
       SOCIAL ICONS - ELEGANT BOTTOM BAR OVERLAY
    */
    .desktop-vraem-socials {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        top: auto !important; /* Reset previous top positioning */
        transform: none !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 15px;
        background: rgba(0, 0, 0, 0.5) !important;
        width: 100% !important;
        height: 54px !important;
        padding: 0 !important;
        border-radius: 0 0 16px 16px !important; /* Only bottom corners matched */
        z-index: 50;
        backdrop-filter: blur(8px);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .desktop-vraem-socials a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 34px !important;
        height: 34px !important;
        border-radius: 50% !important;
        color: #fff !important;
        font-size: 1.1rem !important;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-decoration: none !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    /* BRANDED COLORS FOR DESKTOP BAR */
    .desktop-vraem-socials a[data-social="facebook"] { background: #1877f2 !important; }
    .desktop-vraem-socials a[data-social="whatsapp"] { background: #25d366 !important; }
    .desktop-vraem-socials a[data-social="tiktok"] { background: #000000 !important; border: 1px solid rgba(255,255,255,0.1); }
    .desktop-vraem-socials a[data-social="youtube"] { background: #ff0000 !important; }
    .desktop-vraem-socials a[data-social="instagram"] { 
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; 
    }

    .desktop-vraem-socials a:hover {
        transform: scale(1.15) translateY(-3px);
        filter: brightness(1.2);
        box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    }

    .desktop-vraem-socials i {
        display: block;
        line-height: 1;
    }

    /* ALBUM COVER - PERFECT SQUARE, NO DISTORTION */
    .desktop-vraem-cover {
        width: 380px !important;
        height: 380px !important;
        max-width: 380px !important;
        max-height: 380px !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 16px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: 1px solid var(--vraem-border);
        transition: opacity 0.5s ease;
        object-fit: cover !important; 
        box-shadow: none !important; /* Removed shadow per user request */
    }

    .desktop-vraem-cover.loading {
        opacity: 0.5;
        filter: grayscale(0.5) blur(1px);
    }

    /* CONTENT SECTION */
    .desktop-vraem-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* BADGE - PREMIUM "ON AIR" DESIGN */
    .desktop-vraem-badge {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        background: var(--main-color) !important; /* Brand Yellow */
        color: #000 !important;
        padding: 6px 14px !important;
        border-radius: 4px;
        font-size: 11px !important;
        font-weight: 900 !important;
        letter-spacing: 1.5px;
        margin-bottom: 25px;
        width: fit-content;
        text-transform: uppercase;
        border: none !important;
        box-shadow: 0 4px 15px rgba(245, 180, 0, 0.3);
    }

    .pulse-dot {
        width: 8px;
        height: 8px;
        background: #ff0000;
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
        animation: pulse-red 2s infinite;
    }

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

    body.desktop-theme-dark .desktop-vraem-badge {
        background: var(--main-color) !important;
        color: #000 !important;
    }

    .equalizer {
        display: flex;
        align-items: flex-end;
        gap: 2px;
        height: 10px;
    }

    .equalizer span {
        width: 2px;
        background: currentColor;
        border-radius: 1px;
        animation: eq-min 1s ease-in-out infinite;
    }

    @keyframes eq-min {
        0%, 100% { height: 30%; }
        50% { height: 100%; }
    }

    /* TITLE & ARTIST */
    #desktopVraemTitle {
        font-size: 2.6rem !important;
        line-height: 1.15;
        font-weight: 800 !important;
        color: var(--vraem-text-primary);
        margin-bottom: 10px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    @media (max-width: 480px) {
        #songTitle {
            font-size: 15px !important; /* Reduced per user request */
            line-height: 1.25 !important;
        }
    }

    #desktopVraemArtist {
        font-size: 1.2rem !important;
        color: var(--vraem-text-secondary);
        font-weight: 400 !important;
        margin-bottom: 40px !important;
    }

    /* ACTION BUTTONS - ISOLATED */
    .desktop-vraem-actions {
        display: flex;
        gap: 12px;
    }

    .desktop-vraem-btn {
        height: 46px !important;
        padding: 0 24px !important;
        border-radius: 8px !important;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700 !important;
        font-size: 13px !important;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
        background: none;
    }

    .desktop-vraem-btn.primary {
        background: var(--vraem-text-primary) !important;
        color: var(--vraem-card-bg) !important;
        border: none !important;
    }

    .desktop-vraem-btn.primary svg {
        fill: var(--vraem-card-bg) !important;
    }

    .desktop-vraem-btn.secondary {
        background: var(--vraem-card-bg) !important;
        border: 1px solid var(--vraem-border) !important;
        color: var(--vraem-text-primary) !important;
    }

    .desktop-vraem-btn.secondary svg {
        fill: var(--vraem-text-primary) !important;
    }

    .desktop-vraem-btn.primary:hover {
        background: var(--vraem-accent) !important;
        color: #000 !important;
        transform: translateY(-2px);
    }

    .desktop-vraem-btn.secondary {
        background: var(--vraem-card-bg) !important;
        border: 1px solid var(--vraem-border) !important;
        color: var(--vraem-text-primary) !important;
    }

    .desktop-vraem-btn.secondary:hover {
        background: #f0f0f0 !important;
        transform: translateY(-2px);
    }

    body.desktop-theme-dark .desktop-vraem-btn.secondary:hover {
        background: #1a1a1a !important;
    }

    /* MODAL STYLES - PREMIUM FORMAT */
    .desktop-vraem-modal-overlay {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(0,0,0,0.4) !important;
        backdrop-filter: blur(12px) !important;
        z-index: 9999999 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .desktop-vraem-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .desktop-vraem-modal-content {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        width: 650px;
        max-width: 90%;
        min-height: 400px;
        border-radius: 32px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.2),
            inset 0 0 0 1px rgba(255, 255, 255, 0.2);
        padding: 60px;
        position: relative;
        transform: scale(0.9) translateY(40px);
        filter: blur(10px);
        transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    body.desktop-theme-dark .desktop-vraem-modal-content {
        background: rgba(20, 20, 20, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    }

    .desktop-vraem-modal-overlay.active .desktop-vraem-modal-content {
        transform: scale(1) translateY(0);
        filter: blur(0);
    }

    .desktop-vraem-modal-close {
        position: absolute;
        top: 40px;
        right: 20px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(0,0,0,0.05);
        background: rgba(0,0,0,0.03);
        color: var(--vraem-text-primary);
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }

    body.desktop-theme-dark .desktop-vraem-modal-close {
        border-color: rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.05);
    }

    .desktop-vraem-modal-close:hover {
        background: #ff4d4d !important;
        color: #fff !important;
        border-color: #ff4d4d !important;
        transform: rotate(90deg) scale(1.1);
    }

    .desktop-vraem-modal-body h2 {
        font-size: 38px !important;
        font-weight: 800 !important;
        background: linear-gradient(135deg, var(--vraem-text-primary), var(--vraem-accent));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px !important;
        letter-spacing: -0.5px;
    }

    .desktop-vraem-modal-body p {
        font-size: 18px !important;
        line-height: 1.6;
        color: var(--vraem-text-secondary);
        max-width: 400px;
        margin: 0 auto;
    }

    .modal-icon-wrapper {
        width: 80px;
        height: 80px;
        background: var(--vraem-accent);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        box-shadow: 0 15px 30px rgba(245, 180, 0, 0.3);
        color: #000;
    }

    /* MODAL STYLES - PREMIUM FORMAT */
    /* ... (existing styles) ... */

    /* ============================================================
       NUESTROS LOCUTORES - PREMIUM SECTION
       ============================================================ */
    
    #desktopLocutoresSection {
        padding: 10px 40px 80px 40px !important;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(0,0,0,0.03);
    }

    body.desktop-theme-dark #desktopLocutoresSection {
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* TITULO CON SOMBRA PLOMO Y POSICIÃ“N ELEVADA */
    .desktop-locutores-title {
        font-size: 3.5rem !important;
        font-weight: 800 !important;
        color: var(--vraem-text-primary);
        text-transform: uppercase;
        margin-bottom: 30px !important;
        text-align: left;
        position: relative;
        display: inline-block;
        text-shadow: 3px 3px 0px rgba(100, 100, 100, 0.2), 6px 6px 15px rgba(0,0,0,0.1);
        animation: locutores-title-float 6s ease-in-out infinite;
    }

    .desktop-locutores-title span {
        color: var(--vraem-accent);
        text-shadow: 3px 3px 0px rgba(100, 100, 100, 0.2), 6px 6px 15px rgba(0,0,0,0.1);
    }

    @keyframes locutores-title-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    /* SLIDER NAVIGATION BUTTONS */
    .desktop-locutores-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        z-index: 100;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        opacity: 0.4;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .desktop-locutores-viewport:hover .desktop-locutores-btn {
        opacity: 1;
    }

    .desktop-locutores-btn:hover {
        background: var(--vraem-accent);
        border-color: var(--vraem-accent);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 15px 40px rgba(0, 153, 0, 0.3);
        opacity: 1 !important;
    }

    .desktop-locutores-btn svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .desktop-locutores-btn.prev { left: 20px; }
    .desktop-locutores-btn.next { right: 20px; }
    /* SLIDER CONTAINER */
    .desktop-locutores-viewport {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 30px 0;
    }

    .desktop-locutores-track {
        display: flex;
        gap: 30px; /* Mas espacio entre locutores */
        transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        width: 100%;
        will-change: transform;
    }

    /* CARDS - UNIFORM SIZE AND PROFESSIONAL HIERARCHY */
    .desktop-locutores-card {
        flex: 0 0 calc(25% - 22.5px);
        background: var(--vraem-card-bg);
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 16 / 21;
        position: relative;
        border: 1px solid var(--vraem-border);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    }

    .desktop-locutores-photo-wrap {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .desktop-locutores-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .desktop-locutores-card:hover .desktop-locutores-photo {
        transform: scale(1.08);
    }

    .desktop-locutores-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, 
            rgba(0, 153, 0, 0.95) 0%, 
            rgba(0, 153, 0, 0.4) 35%, 
            rgba(0,0,0,0.1) 65%,
            transparent 100%) !important;
        opacity: 0.8;
        z-index: 1;
        transition: opacity 0.4s ease;
    }

    .desktop-locutores-card:hover .desktop-locutores-gradient {
        opacity: 1;
    }

    .desktop-locutores-info {
        position: absolute;
        bottom: 25px;
        left: 20px;
        right: 20px;
        z-index: 5;
        background: rgba(0, 0, 0, 0.45) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        padding: 16px 20px !important;
        border-radius: 14px !important;
        border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45) !important;
        transform: translateY(0);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .desktop-locutores-card:hover .desktop-locutores-info {
        transform: translateY(-8px);
        border-color: var(--vraem-accent) !important;
        background: rgba(0, 0, 0, 0.65) !important;
    }

    .desktop-locutores-badge {
        display: inline-block;
        background: var(--vraem-accent) !important;
        color: #000 !important;
        padding: 4px 12px !important;
        border-radius: 6px !important;
        font-size: 10px !important;
        font-weight: 900 !important;
        text-transform: uppercase;
        letter-spacing: 1.2px !important;
        margin-bottom: 8px !important;
        box-shadow: 0 4px 10px rgba(245, 180, 0, 0.3) !important;
    }

    .desktop-locutores-name {
        color: #fff !important;
        font-size: 1.35rem !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: -0.6px !important;
    }
    /* ============================================================
       UNIVERSAL SLIDER NAVIGATION
       ============================================================ */
    .modern-slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(0,0,0,0.6);
        border: 1.5px solid rgba(255,255,255,0.15);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 20;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        backdrop-filter: blur(12px);
    }

    .modern-slider-nav:hover:not(:disabled) {
        background: var(--vraem-accent);
        color: #000;
        border-color: transparent;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 10px 25px rgba(245, 180, 0, 0.4);
    }

    .modern-slider-nav:disabled {
        opacity: 0.2;
        cursor: not-allowed;
    }

    .modern-slider-nav.prev { left: -55px; }
    .modern-slider-nav.next { right: -55px; }

    .modern-slider-nav svg {
        width: 24px;
        height: 24px;
    }
    /* ============================================================
       NUESTROS LOCUTORES - SYNCED SLIDER
       ============================================================ */
    #desktopLocutoresSection {
        padding: 0 60px 40px 60px !important;
        position: relative;
    }

    .desktop-locutores-title {
        font-size: 3rem !important;
        font-weight: 800 !important;
        color: var(--vraem-text-primary);
        text-transform: uppercase;
        margin-bottom: 15px !important;
        text-align: left;
        display: inline-block;
        letter-spacing: -1px;
    }

    .desktop-locutores-title span {
        color: var(--vraem-accent);
    }

    /* UNIFIED SECTIONS SYSTEM */
    .desktop-web-section {
        max-width: 1400px !important;
        margin: 5px auto !important; /* Minimal margin */
        padding: 5px 60px 20px 60px !important; /* Minimal top/bottom padding */
        position: relative;
        background: transparent;
        box-sizing: border-box;
    }

    /* UNIFIED TITLES SYSTEM (Programs, News, Ads, Videos) */
    .modern-programs-title, 
    .modern-news-title, 
    .modern-anuncios-title, 
    .modern-videos-title {
        font-size: 3rem !important;
        font-weight: 800 !important;
        color: var(--vraem-text-primary);
        text-transform: uppercase;
        margin-bottom: 15px !important; /* Reduced to bring content closer to title */
        text-align: left;
        display: block; /* Removed flex to keep it simple and aligned left */
        letter-spacing: -1px;
    }

    .modern-programs-title span, 
    .modern-news-title span,
    .modern-anuncios-title span,
    .modern-videos-title span {
        color: var(--vraem-accent);
        margin-left: 0; /* Reset margin */
    }

    /* Remove lottie title placeholder style as it is no longer used */
    .title-lottie { display: none !important; }

    /* Dark mode adjustments for titles */
    .desktop-theme-dark .modern-programs-title,
    .desktop-theme-dark .modern-news-title,
    .desktop-theme-dark .modern-anuncios-title,
    .desktop-theme-dark .modern-videos-title {
        color: #ffffff;
    }


    /* DAYS NAVIGATION TABS - LARGER AND BOLDER */
    .modern-program-days {
        display: flex !important;
        justify-content: space-between !important;
        gap: 12px !important;
        margin-bottom: 50px !important;
        background: rgba(0,0,0,0.04) !important;
        padding: 5px !important; border-radius: 20px !important;
        width: 100% !important;
        border: 1.5px solid rgba(0,0,0,0.06) !important;
        backdrop-filter: blur(15px) !important;
        box-sizing: border-box !important;
    }

    body.desktop-theme-dark .modern-program-days {
        background: rgba(255,255,255,0.03) !important;
        border: 1.5px solid rgba(255,255,255,0.1) !important;
    }

    .modern-program-day {
        flex: 1 !important;
        text-align: center !important;
        border: none !important;
        background: transparent !important;
        color: var(--vraem-text-secondary) !important;
        padding: 10px 5px !important; border-radius: 15px !important; font-size: 11px !important; font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1.5px !important;
        cursor: pointer !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }

    .modern-program-day.active {
        background: var(--vraem-accent) !important;
        color: #000 !important;
        box-shadow: 0 12px 25px rgba(245, 180, 0, 0.3) !important;
        transform: scale(1.02) !important;
    }

    /* SLIDER WRAPPER */
    .modern-program-slider-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .modern-program-list {
        display: flex !important;
        gap: 30px !important;
        overflow-x: hidden !important;
        scroll-behavior: smooth;
        padding: 20px 5px !important;
        width: 100% !important;
    }

    /* PROGRAM CARD - PREMIUM LOCUTORES STYLE */
    .modern-program-card {
        flex: 0 0 calc(25% - 22.5px);
        background: var(--vraem-card-bg);
        border-radius: 20px !important;
        overflow: hidden !important;
        aspect-ratio: 16 / 21 !important;
        position: relative !important;
        border: 1px solid var(--vraem-border) !important;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    }

    .modern-program-photo-wrap {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .modern-program-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .modern-program-card:hover .modern-program-photo {
        transform: scale(1.1);
    }

    .modern-program-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, 
            rgba(0,0,0,0.92) 0%, 
            rgba(0,0,0,0.5) 45%, 
            transparent 75%) !important;
        z-index: 1;
    }

    .modern-program-info {
        position: absolute;
        bottom: 25px;
        left: 20px;
        right: 20px;
        z-index: 5;
        background: rgba(0, 0, 0, 0.45) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        padding: 16px 20px !important;
        border-radius: 14px !important;
        border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
        text-align: center;
        transition: all 0.4s ease;
    }

    .modern-program-card:hover .modern-program-info {
        transform: translateY(-8px);
        border-color: var(--vraem-accent) !important;
        background: rgba(0, 0, 0, 0.65) !important;
    }

    .modern-program-title {
        color: #fff !important;
        font-size: 1.25rem !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 6px !important;
        text-transform: uppercase;
    }

    .modern-program-time {
        font-size: 11px !important;
        color: var(--vraem-accent) !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 1px !important;
    }

    /* LIVE STATE - REFINED MODERN */
    .modern-program-card.is-live {
        border: 2px solid #ff3b30 !important;
        box-shadow: 0 0 40px rgba(255, 59, 48, 0.3) !important;
    }

    .modern-program-card.is-live .modern-program-gradient {
        background: linear-gradient(to top, 
            rgba(255, 59, 48, 0.5) 0%, 
            rgba(0,0,0,0.5) 45%, 
            transparent 75%) !important;
    }

    .modern-program-card.is-live::before {
        content: "EN VIVO";
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ff3b30;
        color: #fff;
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 10px;
        font-weight: 950;
        z-index: 10;
        box-shadow: 0 5px 20px rgba(255,59,48,0.5);
        animation: modern-live-pulse 1.5s infinite;
        letter-spacing: 1px;
    }

    @keyframes modern-live-pulse {
        0% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.08); }
        100% { opacity: 1; transform: scale(1); }
    }

    /* ============================================================
       NUESTROS LOCUTORES - SYNCED SLIDER
       ============================================================ */
    .modern-locutores-slider-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0 10px;
    }

    .desktop-locutores-list {
        display: flex !important;
        gap: 30px !important;
        overflow-x: hidden !important;
        scroll-behavior: smooth;
        padding: 20px 5px !important;
        width: 100% !important;
    }

    .desktop-locutores-card {
        flex: 0 0 calc(25% - 22.5px) !important; /* EXACTLY 4 PER ROW */
    }

    /* Hiding nav if no overflow */
    .modern-slider-nav.hidden {
        display: none !important;
    }
}

/* MODERN NEWS SECTION (Space Elegance) */
.modern-news-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.modern-news-title span {
    color: var(--vraem-accent) !important;
    text-shadow: none !important;
    -webkit-text-stroke: none !important;
}

.modern-news-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    height: 600px;
}

.modern-news-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modern-news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.modern-news-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.modern-news-card:hover::before {
    opacity: 0.8;
}

.modern-news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--vraem-accent);
    color: #000;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 900;
    border-radius: 8px;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    pointer-events: none;
    transition: all 0.3s ease;
}

.modern-news-card:hover .modern-news-badge {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.modern-news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 4;
}

/* Typography Improvements for Home News */
.home-news-card-title {
    color: #ffffff !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
    letter-spacing: -1px !important;
}

.home-news-card-title-sub {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5) !important;
}

.modern-news-title-text {
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.modern-news-card.main .modern-news-title-text {
    font-size: 2.2rem;
}

.modern-news-card.secondary .modern-news-title-text {
    font-size: 1.2rem;
}

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

.modern-news-dot {
    width: 4px;
    height: 4px;
    background: var(--vraem-accent);
    border-radius: 50%;
}

.modern-news-side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

/* ============================================================
   MODERN NEWS MODAL
   ============================================================ */
.modern-news-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483647 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-news-modal.active {
    opacity: 1;
    visibility: visible;
}

.modern-news-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
}

.modern-news-modal-container {
    position: relative;
    width: 90vw;
    max-width: 900px;
    height: 85vh;
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-news-modal.active .modern-news-modal-container {
    transform: translateY(0) scale(1);
}

.modern-news-modal-close {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modern-news-modal-close:hover {
    background: var(--vraem-accent);
    color: #000;
    transform: rotate(90deg);
}

.modern-news-modal-scroll {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 60px;
    scroll-behavior: smooth;
}

.modern-news-modal-scroll::-webkit-scrollbar {
    width: 6px;
}

.modern-news-modal-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.modern-news-modal-header {
    margin-bottom: 40px;
}

.modern-news-modal-badge {
    display: inline-block;
    background: var(--vraem-accent);
    color: #000;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 20px;
}

.modern-news-modal-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.modern-news-modal-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.modern-news-modal-meta .dot {
    width: 5px;
    height: 5px;
    background: var(--vraem-accent);
    border-radius: 50%;
}

.modern-news-modal-cover {
    width: 100%;
    height: 480px;
    border-radius: 15px;
    margin-bottom: 40px;
    overflow: hidden;
}

.modern-news-modal-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-news-modal-body {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 60px;
}

.modern-news-modal-body p {
    margin-bottom: 25px;
}

.modern-news-modal-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.share-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.share-btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsivo para Noticias */
@media (max-width: 1024px) {
    .modern-news-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .modern-news-card.main {
        height: 400px;
    }
    
    .modern-news-side-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    
    .modern-news-card.secondary {
        height: 250px;
    }
    
    .modern-news-modal-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .modern-news-side-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-news-modal-scroll {
        padding: 30px;
    }
    
    .modern-news-modal-cover {
        height: 250px;
    }
}

/* MODERN ANUNCIOS SECTION (Premium Banners) */
.modern-anuncios-section {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.modern-anuncios-title span {
    color: var(--vraem-accent) !important;
}

.modern-anuncios-slider-container {
    width: 100%;
    background: rgba(var(--vraem-accent-rgb), 0.03);
    border: 1px solid var(--vraem-border);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

body.desktop-theme-dark .modern-anuncios-slider-container {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255,255,255,0.05);
}

.modern-anuncios-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
    width: 100%;
}

.modern-anuncios-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.modern-anuncios-slide img, 
.modern-anuncios-slide a img {
    width: 100%;
    max-width: 1300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

.modern-anuncios-slide:hover img {
    transform: scale(1.005);
}


/* MODERN VIDEOS SECTION (Premium Experience) */
.modern-videos-section {
    position: relative;
    background: transparent;
}

.modern-videos-title span {
    color: var(--vraem-accent) !important;
}

.desktop-videos-layout {
    display: grid !important;
    grid-template-columns: 350px 1fr !important;
    gap: 25px !important;
    background: rgba(var(--vraem-accent-rgb), 0.03) !important;
    border: 1px solid var(--vraem-border) !important;
    border-radius: 20px !important;
    padding: 20px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
}

body.desktop-theme-dark .desktop-videos-layout {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255,255,255,0.05) !important;
}

.desktop-videos-list {
    background: rgba(0,0,0,0.05) !important;
    border-radius: 12px !important;
    padding: 10px !important;
    overflow: hidden !important;
    max-height: 500px !important;
}

body.desktop-theme-dark .desktop-videos-list {
    background: rgba(0,0,0,0.2) !important;
}

.desktop-video-item {
    background: transparent !important;
    border: none !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
}

.desktop-video-item:hover {
    background: rgba(var(--vraem-accent-rgb), 0.1) !important;
    transform: translateX(5px) !important;
}

.desktop-video-item.active {
    background: var(--vraem-accent) !important;
}

.desktop-video-item.active .desktop-video-title,
.desktop-video-item.active .desktop-video-artist,
.desktop-video-item.active .desktop-video-rank {
    color: #000 !important;
}

.desktop-video-rank {
    background: rgba(var(--vraem-accent-rgb), 0.1) !important;
    color: var(--vraem-text-secondary) !important;
    border-radius: 5px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.desktop-video-thumb {
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

.desktop-video-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    color: var(--vraem-text-primary) !important;
}

.desktop-video-artist {
    color: var(--vraem-text-secondary) !important;
}

.desktop-videos-player {
    background: #000 !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
}

/* ============================================================
   PC FOOTER PLAYER - PREMIUM FLOATING ISLAND
   ============================================================ */

body.desktop-pc-mode .pcMobileBar {
    display: flex !important;
    position: fixed !important;
    left: 50% !important;
    bottom: 25px !important;
    transform: translateX(-50%) !important;
    width: min(1180px, calc(100vw - 60px)) !important;
    height: 90px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    border: 2px solid #e0e0e0 !important;
    padding: 0 30px !important;
    gap: 25px !important;
    z-index: 99999 !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
    transition: all 0.4s ease !important;
}

body.desktop-theme-dark.desktop-pc-mode .pcMobileBar {
    background: #1a1a1a !important;
    border-color: #333 !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4) !important;
}

/* Play Button Improvement - PERFECT CIRCLE & ABSOLUTE CENTERING */
body.desktop-pc-mode #pcBarPlay {
        background: var(--main-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 30px rgba(245, 180, 0, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: none !important;
    position: relative !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    line-height: 0 !important;
    overflow: visible !important;
}

body.desktop-theme-dark.desktop-pc-mode #pcBarPlay {
    background: var(--main-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

body.desktop-pc-mode #pcBarPlay::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 12px 0 12px 20px !important;
    border-color: transparent transparent transparent #ffffff !important;
    transform: translate(-50%, -50%) translateX(3px) !important; /* Optical shift to the right for balance */
    transition: all 0.2s ease !important;
}

body.desktop-pc-mode #pcBarPlay.playing::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 24px !important;
    height: 24px !important;
    border: none !important;
    transform: translate(-50%, -50%) !important;
    background: transparent !important;
    background-image: linear-gradient(to right, 
        #000 0, #000 9px, 
        transparent 9px, transparent 15px, 
        #000 15px, #000 24px) !important;
}

/* Program Button Improvement */
body.desktop-pc-mode .pcProgramBtn {
    background: #f1f3f5 !important;
    border-radius: 50px !important;
    height: 60px !important;
    padding: 0 22px !important;
    gap: 10px !important;
    border: 1px solid #ced4da !important;
    color: #000 !important;
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

body.desktop-theme-dark.desktop-pc-mode .pcProgramBtn {
    background: #2a2a2a !important;
    border-color: #444 !important;
    color: #fff !important;
}

body.desktop-pc-mode .pcProgramBtn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 15px rgba(var(--vraem-accent-rgb), 0.3) !important;
}

body.desktop-pc-mode .pcProgramIcon svg {
    stroke: currentColor !important;
    width: 20px !important;
    height: 20px !important;
}

/* Info Section */
body.desktop-pc-mode .pcMobileBarInfo {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

body.desktop-pc-mode #pcBarTitle {
    font-family: 'Outfit', sans-serif !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--vraem-text-primary) !important;
}

body.desktop-pc-mode #pcBarArtist {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    color: var(--vraem-text-secondary) !important;
    margin-top: 2px !important;
}

body.desktop-pc-mode .pcBarCover {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

/* MODERN VOLUME SLIDER - BRAND COLORS */
body.desktop-pc-mode .pcBarVolume {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-left: auto !important;
    background: #f1f3f5 !important;
    padding: 12px 24px !important;
    border-radius: 20px !important;
    border: 1px solid #dee2e6 !important;
}

body.desktop-theme-dark.desktop-pc-mode .pcBarVolume {
    background: #252525 !important;
    border-color: #333 !important;
}

body.desktop-pc-mode .pcVolumeBtn svg {
    width: 24px !important;
    height: 24px !important;
}

body.desktop-pc-mode .pcVolumeBtn svg,
body.desktop-pc-mode .pcVolumeBtn svg path,
body.desktop-pc-mode .pcVolumeBtn svg rect {
    fill: var(--main-color) !important; /* Amarillo marca vibrante */
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2)) !important;
}

body.desktop-theme-dark.desktop-pc-mode .pcVolumeBtn svg,
body.desktop-theme-dark.desktop-pc-mode .pcVolumeBtn svg path,
body.desktop-theme-dark.desktop-pc-mode .pcVolumeBtn svg rect {
    fill: var(--main-color) !important;
}

/* MODERN VOLUME SLIDER - BRAND COLORS & MULTI-BROWSER */
#pcVolumeSlider {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 120px !important;
    height: 8px !important; /* Ligeramente mÃ¡s grueso para visibilidad */
    background: #555 !important; /* Gris oscuro para contraste total */
    border-radius: 10px !important;
    outline: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

body.desktop-theme-dark #pcVolumeSlider {
    background: #888 !important; /* MÃ¡s claro en modo oscuro para resaltar */
}


/* Chrome, Safari, Edge, Opera */
#pcVolumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    background: var(--main-color) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    border: 3px solid #fff !important;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

body.desktop-theme-dark #pcVolumeSlider::-webkit-slider-thumb {
    border-color: #1a1a1a !important;
}

#pcVolumeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Firefox */
#pcVolumeSlider::-moz-range-thumb {
    width: 20px !important;
    height: 20px !important;
    background: var(--main-color) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    border: 3px solid #fff !important;
}

/* IE/Edge */
#pcVolumeSlider::-ms-thumb {
    width: 20px !important;
    height: 20px !important;
    background: var(--main-color) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    border: 3px solid #fff !important;
}

.mobileAppMenu { display: none; }
.newsModal.active { display: block !important; }

/* ============================================================
   MOBILE FOOTER PLAYER - EXACT CAPTURE DESIGN
   ============================================================ */
.app {
    position: relative;
    z-index: 100; /* Forzar nivel bajo para que el modal de 2 mil millones siempre gane */
}
@media (max-width: 768px) {
    .phone {
        height: 100dvh !important;
        min-height: 100dvh !important;
        overflow: hidden !important;
        padding-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .coverBox, .metaRow {
        flex-shrink: 0 !important;
    }

    body.desktop-pc-mode .pcMobileBar {
        display: flex !important;
        align-items: center !important;
        width: calc(100% - 30px) !important;
        height: 75px !important;
        bottom: 80px !important; /* Elevado para dejar espacio al menÃº */
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: rgba(85, 85, 85, 0.95) !important;
        border-radius: 25px !important;
        border: none !important;
        padding: 0 15px !important;
        gap: 12px !important;
        z-index: 999999 !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
        transition: bottom 0.3s ease !important;
    }

    /* Hide unnecessary elements on mobile */
    body.desktop-pc-mode .pcProgramBtn,
    body.desktop-pc-mode .separator,
    body.desktop-pc-mode .pcBarVolume,
    .bottomMenu,
    .playerBar,
    .chatLiveBtn {
        display: none !important;
    }

    .socialRow {
        display: flex !important;
        position: relative !important;
        bottom: auto !important;
        justify-content: center !important;
        width: 100% !important;
        margin-top: 10px !important; /* Espacio compacto vs Banner */
        margin-bottom: 20px !important; /* Espacio compacto vs Player */
        padding: 0 !important;
        z-index: 10 !important;
    }

    .socialRow .social {
        display: flex !important;
        justify-content: center !important;
        width: auto !important;
        gap: 15px !important;
    }

    body.desktop-pc-mode .pcBarCover {
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px !important;
        order: 1 !important; /* Portada a la izquierda */
        align-self: center !important;
    }

    body.desktop-pc-mode .pcMobileBarInfo {
        order: 2 !important; /* InformaciÃ³n al centro */
        flex-grow: 1 !important;
    }

    body.desktop-pc-mode #pcBarTitle {
        color: #ffffff !important;
        font-size: 15px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 140px !important;
    }

    body.desktop-pc-mode #pcBarArtist {
        color: #cccccc !important;
        font-size: 12px !important;
    }

    /* Mobile Play Button Override */
    body.desktop-pc-mode #pcBarPlay {
        background: var(--main-color) !important;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        box-shadow: none !important;
        order: 3 !important; /* Play a la derecha */
        margin-left: auto !important;
    }

    body.desktop-pc-mode #pcBarPlay::before {
        border-color: transparent transparent transparent #ffffff !important;
        border-width: 10px 0 10px 16px !important;
        left: 50% !important;
        transform: translate(-50%, -50%) translateX(2px) !important;
    }

    body.desktop-pc-mode #pcBarPlay.playing::before {
        background-image: linear-gradient(to right, #ffffff 0, #ffffff 7px, transparent 7px, transparent 11px, #ffffff 11px, #ffffff 18px) !important;
        width: 18px !important;
        height: 18px !important;
        transform: translate(-50%, -50%) !important;
    }

    /* Mobile Navigation Bar (App Style) */
    .mobileAppMenu {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 70px !important;
        background: rgba(26, 26, 26, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        z-index: 1000000 !important;
        justify-content: space-around !important;
        align-items: center !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.5) !important;
    }

    .mobileMenuItem {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        color: rgba(255, 255, 255, 0.6) !important;
        text-decoration: none !important;
        gap: 6px !important;
        flex: 1 !important;
        transition: all 0.3s ease !important;
    }

    .mobileMenuItem:active {
        color: var(--main-color) !important;
        transform: translateY(-2px);
    }

    .mobileMenuIcon {
        width: 26px !important;
        height: 26px !important;
    }

    .mobileMenuItem span {
        font-size: 11px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
    }

    /* Restoration and Spacing of Advertising Banner */
    .sliderTitle {
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin-top: 20px !important;
        margin-bottom: 10px !important;
        flex-shrink: 0 !important;
    }

    .sliderPanel {
        display: block !important;
        visibility: visible !important;
        height: 100px !important;
        width: 90% !important;
        margin: 0 auto !important;
        overflow: hidden !important;
        border-radius: 12px !important;
        flex-shrink: 0 !important;
    }

    .slideTrack {
        display: flex !important;
        height: 100% !important;
    }

    .slideTrack img {
        height: 100% !important;
        object-fit: cover !important;
    }
}


/* ============================================================
   VIBRANT KINETIC WAVES (v2) - REACTIVE BACKGROUND
   ============================================================ */
.pcMobileBar, .playerBar {
    position: relative !important;
    overflow: hidden !important;
}

#audioVisualizerLayer,
#audioVisualizerLayerMobile {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 0;
    transition: opacity 0.8s ease-in-out !important;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.1));
    mix-blend-mode: screen;
}

#audioVisualizerLayer.active,
#audioVisualizerLayerMobile.active {
    opacity: 0.8;
}

/* Light Theme: Subtle watercolor wash */
body.desktop-theme-light #audioVisualizerLayer,
body.desktop-theme-light #audioVisualizerLayerMobile {
    mix-blend-mode: normal;
    filter: none;
    opacity: 0 !important;
}

body.desktop-theme-light #audioVisualizerLayer.active,
body.desktop-theme-light #audioVisualizerLayerMobile.active {
    opacity: 1 !important;
}

/* Dark Theme: Vibrant Nebula */
body.desktop-theme-dark #audioVisualizerLayer.active,
body.desktop-theme-dark #audioVisualizerLayerMobile.active {
    opacity: 0.7 !important;
    mix-blend-mode: screen;
}

/* Ensure controls remain sharp and readable */
.pcMobileBar > *:not(canvas),
.playerBar > *:not(canvas) {
    position: relative !important;
    z-index: 10 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Fallback for the canvas containers */
.pcMobileBar canvas, .playerBar canvas {
    display: block;
    background: transparent !important;
}



/* ============================================================
   SYSTEM PRO MODAL FRAMEWORK - SHARP & PROFESSIONAL
   ============================================================ */
.system-modal {
    position: fixed;
    inset: 0;
    z-index: 2200000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.system-modal.active {
    opacity: 1;
    visibility: visible;
}

.system-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.system-modal-container {
    position: relative;
    width: 100%;
    height: 90vh;
    background: #0a0a0a;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 -20px 40px rgba(0,0,0,0.5);
}

.system-modal.active .system-modal-container {
    transform: translateY(0);
}

/* NO RADIUS BORDER AS REQUESTED */
.system-modal-container, 
.system-modal-item,
.system-modal-close {
    border-radius: 0 !important;
}

.system-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #111;
    border-bottom: 1px solid #222;
}

.system-modal-header h2 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.system-modal-close {
    width: 50px;
    height: 50px;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.system-modal-close:hover {
    background: #ff4d4d;
    border-color: #ff4d4d;
}

.system-modal-scroll {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
    background: #0a0a0a;
}

/* GRID FOR LOCUTORES */
.system-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.system-modal-item {
    background: #161616;
    border: 1px solid #222;
    overflow: hidden;
    position: relative;
}

.system-modal-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.system-modal-item-info {
    padding: 12px;
    background: #111;
}

.system-modal-item-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

/* LIST FOR PROGRAMS */
.system-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.system-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #161616;
    border: 1px solid #222;
}

.system-list-thumb {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: cover;
}

.system-list-details {
    flex-grow: 1;
}

.system-list-name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: block;
}

.system-list-time {
    color: var(--vraem-accent);
    font-size: 12px;
    font-weight: 600;
}

@media (min-width: 1025px) {
    .system-modal { display: none !important; }
}

/* ============================================================
   ELITE NEWS PRO - FULL SCREEN IMMERSIVE
   ============================================================ */
.news-pro-modal {
    position: fixed;
    inset: 0;
    z-index: 2300000;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.news-pro-modal.active {
    opacity: 1;
    visibility: visible;
}

.news-pro-header {
    height: 70px;
    background: #111;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    flex-shrink: 0;
}

.news-pro-logo {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-pro-logo span {
    color: var(--vraem-accent);
}

.news-pro-close {
    width: 44px;
    height: 44px;
    background: #222;
    border: 1.5px solid #333;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-pro-close:hover {
    background: #ff4d4d;
    border-color: #ff4d4d;
    transform: rotate(90deg);
}

.news-pro-body {
    flex-grow: 1;
    display: flex;
    overflow: hidden; /* Scroll in columns */
}

/* PC TWO-COLUMN LAYOUT */
.news-pro-main {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
    background: #0a0a0a;
}

.news-pro-sidebar {
    width: 350px;
    background: #111;
    border-left: 1px solid #222;
    overflow-y: auto;
    padding: 30px;
    display: none; /* Mobile hide */
}

@media (min-width: 1025px) {
    .news-pro-sidebar {
        display: block;
    }
}

/* MAIN STORY STYLES */
.news-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.news-story-img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
    margin-bottom: 30px;
    border: 1px solid #222;
}

.news-story-badge {
    display: inline-block;
    background: var(--vraem-accent);
    color: #000;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.news-story-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.news-story-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.news-story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.news-story-text p {
    margin-bottom: 25px;
}

/* SIDEBAR ITEMS */
.sidebar-title {
    font-size: 14px;
    font-weight: 800;
    color: #666;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border: 1px solid transparent;
}

.sidebar-item:hover {
    background: #161616;
    border-color: #333;
}

.sidebar-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-info {
    flex-grow: 1;
}

.sidebar-item-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* MOBILE INTERESTING DESIGN */
@media (max-width: 1024px) {
    .news-pro-main {
        padding: 20px;
    }
    .news-story-title {
        font-size: 1.8rem;
    }
    .news-story-img {
        aspect-ratio: 16/9;
        margin: -20px -20px 20px -20px;
        width: calc(100% + 40px);
        max-width: none;
        border: none;
    }
    .mobile-other-news {
        margin-top: 50px;
        padding: 20px;
        background: #111;
        border-top: 1px solid #333;
    }
}
/* MOBILE SCROLL FIX */
@media (max-width: 1024px) {
    body {
        overflow: hidden !important; /* Ensure scrolling is allowed on main page */
        height: auto !important;
    }
    body.active-modal {
        overflow: hidden !important; /* Lock only when modal is open */
    }
    
    /* System Modal tweaks for News */
    #newsListSystemModal .system-list-item {
        cursor: pointer;
    }
}

/* Limitar tama?os de logos para evitar descuadre de scroll en m?viles */
.logoTop, .desktop-vraem-logo {
    max-height: 65px !important;
    width: auto !important;
    object-fit: contain;
}
/* Tema de Locutores */
.desktop-locutores-title span { color: var(--main-color) !important; }
.desktop-locutores-badge { background: var(--main-color) !important; color: #ffffff !important; }



/* Mobile System Modal Program Card Override */
.programCard {
    display: flex;
    align-items: center;
    background: var(--vraem-card-bg);
    border-radius: 15px;
    padding: 10px;
    gap: 15px;
    border: 1px solid var(--vraem-border);
    margin-bottom: 2px;
}
.programThumbWrap {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.programThumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.programInfo {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.programTitle {
    font-size: 14px;
    font-weight: 800;
    color: var(--vraem-text-primary);
}
.programDesc {
    font-size: 11px;
    color: var(--main-color, #ff0044);
    font-weight: 600;
}
.programTime {
    font-size: 14px;
    font-weight: 900;
    color: var(--vraem-text-primary);
    min-width: 50px;
    text-align: center;
}
.liveBadge {
    display: inline-flex;
    align-items: center;
    background: var(--main-color, #ff0044);
    color: var(--main-color-text, #fff);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 5px;
    width: fit-content;
}
.liveBadgeDot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    margin-right: 4px;
    animation: livePulse 1s infinite alternate;
}



/* ========================================================
   STRICT USER OVERRIDES - NO MAIN COLOR PERMITTED
   ======================================================== */

/* SONANDO AHORA */


/* PLAY/PAUSE, PROGRAMAS, TOP VIDEOS */
.playerBtn {
    background: #000000 !important;
    color: #ffffff !important;
}
.playerBtn::before {
    border-color: transparent transparent transparent #ffffff !important;
}
.playerBtn.playing::before {
    background-image: linear-gradient(to right, #ffffff 0, #ffffff 7px, transparent 7px, transparent 11px, #ffffff 11px, #ffffff 18px) !important;
}

/* Remove hover color change on player buttons */
.playerBtn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: none !important;
}

/* Mobile PC Bar Play Button */
body.desktop-pc-mode #pcBarPlay {
    background: #000000 !important;   /* Let's make it black too for consistency, or keep it as defined above... Wait, user said "el circulo del play, se redujo". The desktop play button is black too right? Yes. User said "los botones no aplica colores principales, solo negro". */
    color: #ffffff !important;
}
body.desktop-pc-mode #pcBarPlay::before {
    border-color: transparent transparent transparent #ffffff !important;
}
body.desktop-pc-mode #pcBarPlay.playing::before {
    background-image: linear-gradient(to right, #ffffff 0, #ffffff 7px, transparent 7px, transparent 11px, #ffffff 11px, #ffffff 18px) !important;
}

/* Remove hover on mobile play */
body.desktop-pc-mode #pcBarPlay:hover {
    background: #000000 !important;
    transform: none !important;
}

/* LUNES A DOMINGO TABS */
.modern-program-day.active {
    background: #000000 !important;
    color: #ffffff !important;
    font-weight: 900 !important; /* Bold */
}

/* HORA: 09:00 - EXITOS */
.modern-program-time {
    color: #ffffff !important;
}
.programTime {
    color: #ffffff !important;
}
.programDesc {
    color: #ffffff !important;
}


/* MOBILE PLAY BUTTON (CIRCLE) - RESTORE MAIN COLOR AND FIX ICON */
body.desktop-pc-mode #pcBarPlay {
    background: var(--main-color) !important;
    border: none !important;
}

/* FIX PLAY ICON (Triangle) */
body.desktop-pc-mode #pcBarPlay::before {
    content: '' !important;
    box-sizing: border-box !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    background-image: none !important;
    border-style: solid !important;
    border-color: transparent transparent transparent #ffffff !important;
    border-width: 12px 0 12px 20px !important;
    transform: translate(-50%, -50%) translateX(3px) !important;
}

/* FIX PAUSE ICON (Two vertical bars perfectly sized) */
body.desktop-pc-mode #pcBarPlay.playing::before {
    content: '' !important;
    box-sizing: border-box !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 20px !important;
    height: 22px !important;
    background: transparent !important;
    background-image: none !important;
    border-style: solid !important;
    border-color: #ffffff !important;
    border-width: 0 7px 0 7px !important;
    transform: translate(-50%, -50%) !important;
}


/* ANIMATED SONANDO AHORA BADGE (PREMIUM DESIGN) */
.modern-player-badge {
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%) !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 8px 18px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 11px !important;
    animation: badgeFloat 4s ease-in-out infinite !important;
}

/* The red recording dot */
.modern-player-badge::before {
    content: '' !important;
    display: inline-block !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #ff2a2a !important;
    border-radius: 50% !important;
    box-shadow: 0 0 8px rgba(255, 42, 42, 0.8) !important;
    animation: redPulse 1.5s infinite alternate !important;
}

@keyframes badgeFloat {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-4px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes redPulse {
    from { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(255, 42, 42, 0.8); }
    to { opacity: 0.4; transform: scale(0.85); box-shadow: 0 0 2px rgba(255, 42, 42, 0.3); }
}


/* ========================================================
   VRAEM DESKTOP COMPONENT OVERRIDES (Premium Black/White)
   ======================================================== */

/* ANIMATED SONANDO AHORA BADGE (PREMIUM DESIGN) - Corrected Class */
.desktop-vraem-badge, body.desktop-theme-dark .desktop-vraem-badge {
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    font-weight: 900 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    animation: badgeFloat 4s ease-in-out infinite !important;
}

.desktop-vraem-badge .pulse-dot {
    background-color: #ff2a2a !important;
    box-shadow: 0 0 8px rgba(255, 42, 42, 0.8) !important;
    animation: redPulse 1.5s infinite alternate !important;
}

/* PLAY/PAUSE, PROGRAMAS, TOP VIDEOS BUTTONS - Corrected Class */
.desktop-vraem-btn, body.desktop-theme-dark .desktop-vraem-btn {
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
}

/* Force white text and SVG icons inside buttons */
.desktop-vraem-btn span, .desktop-vraem-btn svg {
    color: #ffffff !important;
    fill: #ffffff !important; 
}

/* Remove hover color change on vraem buttons */
.desktop-vraem-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: none !important;
}
.desktop-vraem-btn:hover svg {
    fill: #ffffff !important;
}


/* ========================================================
   VRAEM DESKTOP BUTTONS - HIGH SPECIFICITY FIX 
   ======================================================== */
.desktop-vraem-actions .desktop-vraem-btn, 
.desktop-vraem-actions .desktop-vraem-btn.primary, 
.desktop-vraem-actions .desktop-vraem-btn.secondary,
body.desktop-theme-dark .desktop-vraem-actions .desktop-vraem-btn.secondary {
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
}

.desktop-vraem-actions .desktop-vraem-btn:hover, 
.desktop-vraem-actions .desktop-vraem-btn.primary:hover, 
.desktop-vraem-actions .desktop-vraem-btn.secondary:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: none !important;
}

.desktop-vraem-actions .desktop-vraem-btn span, 
.desktop-vraem-actions .desktop-vraem-btn.secondary span {
    color: #ffffff !important;
}

.desktop-vraem-actions .desktop-vraem-btn svg, 
.desktop-vraem-actions .desktop-vraem-btn.secondary svg,
.desktop-vraem-actions .desktop-vraem-btn.secondary:hover svg {
    fill: #ffffff !important;
    stroke: none !important;
}


/* ========================================================
   FIX OVERFLOW FOR PROGRAMACION BUTTON
   ======================================================== */
body.desktop-pc-mode .pcProgramBtn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: max-content !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}


/* ========================================================
   HIDE PROGRAM BUTTON ON MOBILE (Fixing global override collision)
   ======================================================== */
@media screen and (max-width: 991px) {
    body.desktop-pc-mode .pcProgramBtn,
    .pcProgramBtn {
        display: none !important;
    }
}


/* ========================================================
   GLOBAL TITLE ANIMATIONS (NUESTROS PROGRAMAS, NOTICIAS, VIDEOS, ETC)
   ======================================================== */
.modern-programs-title,
.modern-news-title,
.modern-anuncios-title,
.modern-videos-title {
    text-shadow: 3px 3px 0px rgba(100, 100, 100, 0.2), 6px 6px 15px rgba(0,0,0,0.1) !important;
    animation: locutores-title-float 6s ease-in-out infinite !important;
    position: relative !important;
    display: inline-block !important;
}

.modern-programs-title span,
.modern-news-title span,
.modern-anuncios-title span,
.modern-videos-title span {
    text-shadow: 3px 3px 0px rgba(100, 100, 100, 0.2), 6px 6px 15px rgba(0,0,0,0.1) !important;
}


/* ========================================================
   MENU TYPOGRAPHY & HISTORY MODAL
   ======================================================== */
/* Enforce black and bold on all top menu links */
.desktop-vraem-menu-link {
    color: #000000 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}
body.desktop-theme-dark .desktop-vraem-menu-link {
    color: #ffffff !important;
}

/* History Modal List Styling */
#historyListContainer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
}
.history-item {
    background: rgba(0,0,0,0.4);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    border-left: 4px solid var(--vraem-accent);
    animation: fadeIn 0.4s ease-out forwards;
    display: flex;
    align-items: center;
    gap: 10px;
}
.history-item-number {
    font-weight: 900;
    color: var(--vraem-accent);
}


/* ========================================================
   GLOBAL OVERRIDES (SYSTEM MODAL FIX & VIDEOS UI)
   ======================================================== */

/* Force System Modals to be visible when deeply active, overriding mobile queries */
.system-modal.active {
    display: flex !important;
}

/* Modificar Card de Video Activo */
.desktop-video-item.active {
    background: transparent !important;
    border: 2px solid var(--main-color) !important;
    text-align: left !important;
}
.desktop-video-item .desktop-video-info,
.desktop-video-item.active .desktop-video-info {
    text-align: left !important;
    align-items: flex-start !important; /* In case it's a flex container */
    width: 100%;
}
.desktop-video-item.active .desktop-video-title {
    color: var(--main-color) !important; /* Make active video title stand out */
}


/* ==========================================
   FIX RESPONSIVO - OCULTAR MODALES DESKTOP EN MOVIL
   ========================================== */
@media (max-width: 991px) {
    .desktop-vraem-modal-overlay,
    .installPromptOverlay {
        display: none !important;
    }
}

/* ==========================================
   REDISEÑO MODAL NOTICIAS PC (LIGHT THEME)
   ========================================== */
#desktopNewsModal .modern-news-modal-container {
    background: #ffffff;
    color: #111111;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 1000px;
    width: 90%;
    overflow: hidden;
}

#desktopNewsModal .modern-news-modal-scroll {
    background: #ffffff;
}

#desktopNewsModal .modern-news-modal-header {
    background: #ffffff !important;
    padding: 40px 50px 20px !important;
}

#desktopNewsModal .modern-news-modal-badge {
    background: var(--main-color) !important;
    color: white !important;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    display: inline-block;
}

#desktopNewsModal .modern-news-modal-title {
    color: #000 !important;
    font-size: 32px;
    font-weight: 900;
    margin-top: 15px;
}

#desktopNewsModal .modern-news-modal-meta {
    color: #666;
    margin-top: 10px;
}

#desktopNewsModal .modern-news-modal-body {
    background: #ffffff;
    color: #333333 !important;
    padding: 20px 50px 40px;
    line-height: 1.8;
    font-size: 17px;
}

#desktopNewsModal .modern-news-modal-close {
    background: #f3f4f6 !important;
    color: #000 !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    top: 20px;
    right: 20px;
    z-index: 100;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

#desktopNewsModal .modern-news-modal-close:hover {
    background: #e5e7eb !important;
    transform: rotate(90deg);
}

/* Overlay con desenfoque premium */
#desktopNewsModalOverlay {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* --- SIDEBAR NEWS ITEMS --- */
.sidebar-news-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-news-item:hover {
    transform: translateX(5px);
}

.sidebar-news-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.sidebar-news-info {
    flex: 1;
}

.sidebar-news-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin: 0 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-meta {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

/* Modal Layout Adjustments */
@media (max-width: 900px) {
    .modern-news-modal-sidebar {
        display: none !important;
    }
    .modern-news-modal-layout {
        display: block !important;
    }
}


/* --- SOCIAL ICONS FIX & POSITIONING --- */
.social {
    margin-top: 25px !important;
    justify-content: center;
    gap: 15px;
}

.socialLink.social-twitter-x {
    background-color: #000 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M12.6 0h2.454l-5.36 6.142L16 16h-4.937l-3.867-5.07L2.777 16H.32l5.735-6.57L0 0h5.063l3.495 4.633L12.6 0zm-.86 14.547h1.359L4.354 1.359H2.9l8.84 13.188z'/%3E%3C/svg%3E") !important;
    background-size: 60% !important;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- LIGHT MODE REFINEMENTS: PC --- */
#desktopNewsModal .modern-news-modal-container {
    background: #ffffff !important;
    color: #111 !important;
    border-radius: 30px !important;
    overflow: hidden !important;
}

#desktopNewsModal .modern-news-modal-body {
    color: #333 !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
}

/* Scrollbar invisible pero funcional para PC */
#desktopNewsModal .modern-news-modal-scroll::-webkit-scrollbar {
    display: none;
}
#desktopNewsModal .modern-news-modal-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* --- LIGHT MODE REFINEMENTS: MOBILE --- */
.news-pro-modal {
    background: #ffffff !important;
    color: #000 !important;
}

.news-story-title {
    color: #000 !important;
    font-size: 24px !important;
    font-weight: 900 !important;
}

.news-story-text {
    color: #333 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.news-pro-header {
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0;
}

.news-pro-close {
    color: #000 !important;
    background: #f5f5f5 !important;
}

.news-story-badge {
    background: var(--main-color) !important;
    color: #fff !important;
}

/* No visible scroll in mobile but still scrolls the content */
.news-pro-body::-webkit-scrollbar {
    width: 0;
}

/* --- SHARE BUTTONS STYLING --- */
.share-btn-modern {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn-modern.fb { background: #1877f2; color: #fff; }
.share-btn-modern.wa { background: #25d366; color: #fff; }
.share-btn-modern.tw { background: #000; color: #fff; }

.share-btn-modern:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}


/* ==========================================
   FIX TARJETAS DE NOTICIAS (HOME)
   ========================================== */
.modern-news-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Alinea contenido abajo */
}

/* Forzar que el titulo no sea negro y gigante en el home */
.modern-news-card .modern-news-title,
.modern-news-card h2.modern-news-title {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 8px 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-news-content {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent) !important;
    padding: 20px !important;
    width: 100% !important;
    box-sizing: border-box;
}

.modern-news-badge {
    background: var(--main-color) !important;
    color: white !important;
    font-size: 11px !important;
    padding: 4px 10px !important;
}

.modern-news-meta {
    color: rgba(255,255,255,0.8) !important;
    font-size: 12px !important;
}

/* ==========================================
   MODAL NOTICIAS - FORCE LIGHT MODE ABSOLUTO
   ========================================== */
#desktopNewsModal .modern-news-modal-container,
#desktopNewsModal .modern-news-modal-scroll,
#desktopNewsModal .modern-news-modal-header,
#desktopNewsModal .modern-news-modal-body,
#desktopNewsModal aside.modern-news-modal-sidebar,
#desktopNewsModal .modern-news-modal-layout {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Fix sidebar unreadability */
#desktopNewsModal aside.modern-news-modal-sidebar {
    background: #fbfbfb !important;
    border-left: 1px solid #efefef !important;
}

#desktopNewsModal aside.modern-news-modal-sidebar h4 {
    color: #111111 !important;
}

#desktopNewsModal .sidebar-news-title {
    color: #222222 !important;
}

/* Hide PHYSICAL scrolls but allow scrolling */
.modern-news-modal-scroll::-webkit-scrollbar,
.news-pro-body::-webkit-scrollbar,
aside.modern-news-modal-sidebar::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

.modern-news-modal-scroll,
.news-pro-body,
aside.modern-news-modal-sidebar {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}


/* ==========================================
   MODAL NOTICIAS: ESTILO WORDPRESS PREMIUM
   ========================================== */

/* Modal Wrapper (Absolute Top Layer) */
#wpNewsModal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483647 !important;
    display: none; 
}

#wpNewsModal.active {
    display: block !important;
}

/* Fondo del Overlay (Blur suave) */
#wpNewsModalOverlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 2147483646 !important;
}

/* Contenedor Principal (Pantalla Completa) */
.wp-modal-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #ffffff !important;
    overflow: hidden !important;
    z-index: 2147483647 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Botón Cerrar Elegante */
.wp-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f5f5f5 !important;
    color: #000 !important;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.wp-modal-close:hover {
    background: #e0e0e0 !important;
    transform: rotate(90deg);
}

/* Layout de Dos Columnas */
.wp-modal-layout {
    display: flex;
    height: 100%;
    width: 100%;
}

/* COLUMNA IZQUIERDA: CONTENIDO */
#wpNewsModal .wp-modal-main {
    flex: 1;
    overflow-y: auto;
    padding: 60px;
    background: #ffffff !important;
}

/* COLUMNA DERECHA: SIDEBAR */
#wpNewsModal .wp-modal-sidebar {
    width: 350px;
    background: #fcfcfc !important;
    border-left: 1px solid #f0f0f0;
    overflow-y: auto;
    padding: 60px 40px;
}

/* Ocultar Scrollbars pero mantener funcionalidad */
#wpNewsModal .wp-modal-main::-webkit-scrollbar,
#wpNewsModal .wp-modal-sidebar::-webkit-scrollbar,
.wp-content-scroll::-webkit-scrollbar {
    width: 0 !important;
    display: none !important;
}
#wpNewsModal .wp-modal-main, #wpNewsModal .wp-modal-sidebar, .wp-content-scroll {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* ESTILOS DE ARTÍCULO (WP) */
.wp-article-header {
    margin-bottom: 40px;
}

.wp-badge {
    display: inline-block;
    background: var(--main-color) !important;
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.wp-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #111 !important;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.wp-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.wp-featured-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wp-featured-image img {
    width: 100%;
    display: block;
}

.wp-article-body {
    font-size: 20px !important;
    line-height: 1.7 !important;
    color: #333 !important;
}

/* WIDGETS SIDEBAR */
.wp-sidebar-widget {
    margin-bottom: 50px;
}

.widget-title {
    font-size: 13px !important;
    font-weight: 900 !important;
    color: #aaa !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Botones Compartir en Sidebar */
.wp-share-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wp-share-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: #fff !important;
    transition: all 0.3s ease;
}

.wp-share-btn.fb { background: #1877f2; }
.wp-share-btn.wa { background: #25d366; }
.wp-share-btn.tw { background: #000000; }

.wp-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Ajustes Responsive */
@media (max-width: 991px) {
    .wp-modal-layout {
        flex-direction: column;
    }
    #wpNewsModal .wp-modal-sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding: 40px;
    }
    #wpNewsModal .wp-modal-main {
        padding: 40px 30px;
    }
    .wp-title {
        font-size: 32px !important;
    }
}

#wpNewsModal,
#wpNewsModal .wp-modal-container,
#wpNewsModal .wp-modal-layout,
#wpNewsModal .wp-modal-main,
#wpNewsModal .wp-modal-sidebar,
#wpNewsModal .wp-content-scroll {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #111111 !important;
}

#wpNewsModal .wp-modal-main, 
#wpNewsModal .wp-modal-sidebar {
    scrollbar-width: none !important;
}
