    :root {
        --header-bg: #000000;
        --header-height: 140px;
        --header-sticky-height: 80px;
        --transition-speed: 0.4s;
    }

    .custom-main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--header-bg);
        z-index: 9999;
        transition: all var(--transition-speed) ease-in-out;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .header-content-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 20px;
        height: var(--header-height);
        transition: height var(--transition-speed) ease;
    }


    .header-custom-ad {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 250px;
        transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 1;
        transform: scale(1);
    }

    .header-custom-ad.left {
        justify-content: flex-start;
    }

    .header-custom-ad.right {
        justify-content: flex-end;
    }

    .header-custom-ad a {
        display: block;
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .header-custom-ad a:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    }

    .header-custom-ad img {
        width: 100%;
        height: auto;
        max-height: 100px;
        object-fit: contain;
        transition: all 0.3s ease;
    }


    .header-custom-logo {
        flex: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all var(--transition-speed) ease;
        position: relative;
    }

    .header-custom-logo img {
        height: auto;
        max-height: 110px;
        width: auto;
        max-width: 100%;
        transition: all var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);

        animation: logoPulse 5s infinite;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    }

    @keyframes logoPulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    body.is-scrolled .custom-main-header {
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }

    body.is-scrolled .header-content-wrapper {
        height: var(--header-sticky-height);
    }

    body.is-scrolled .header-custom-logo img {
        max-height: 60px;
        animation: none;
    }

    body.is-scrolled .header-custom-ad {
        opacity: 0;
        transform: scale(0.5);
        max-width: 0;
        flex: 0 0 0;
        margin: 0;
        overflow: hidden;
    }


    body {
        padding-top: var(--header-height);
        transition: padding-top var(--transition-speed) ease;
    }

    body.is-scrolled {
        padding-top: var(--header-sticky-height);
    }


    @media (max-width: 991px) {
        .header-content-wrapper {
            flex-direction: row;
            justify-content: space-between;
            height: var(--header-height);
            padding: 5px 10px;
            gap: 5px;
        }

        .header-custom-ad {
            max-width: 30%;
            justify-content: center !important;
        }

        .header-custom-ad img {
            max-height: 60px;
            object-fit: contain;
        }

        .header-custom-logo {
            flex: unset;
            max-width: 40%;
        }

        .header-custom-logo img {
            max-height: 70px;
        }

        body {
            padding-top: var(--header-height);
        }

        body.is-scrolled .header-content-wrapper {
            height: var(--header-sticky-height);
        }

        body.is-scrolled .header-custom-logo img {
            max-height: 40px;
        }
    }

    /* ====== SHOUTCAST PLAYER STYLES ====== */
    .title-block {
        margin: auto !important;
        width: 80%;
    }

    .detail-content {
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .sc-player {
        position: relative;
        width: 100%;
        height: 450px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        padding: 0 40px;
    }

    .sc-player-overlay {
        position: absolute;
        width: 100%;
        height: 450px;
        /* Overlay oscurecido a la izquierda y difuminado a la derecha */
        background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 1;
    }

    /* Columna Izquierda: Botones y Control */
    .sc-player-left {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .sc-player-header {
        position: relative;
    }

    .sc-player-logo {
        width: 140px;
        height: auto;
    }

    @keyframes pulseBorder {
        0% {
            box-shadow: 0 0 0 0 rgba(250, 137, 67, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(250, 137, 67, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(250, 137, 67, 0);
        }
    }

    /* Big Play Button */
    .sc-btn-play {
        background: linear-gradient(135deg, #fa8943 0%, #f56d4e 100%);
        border: none;
        color: white;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        font-size: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(245, 109, 78, 0.5);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        padding-left: 8px;
        /* Optical center for play icon */
    }

    /* Ajuste centro visual icono pausa */
    .sc-btn-play i.fa-pause {
        padding-left: 0;
        margin-left: -8px;
    }

    .sc-btn-play:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(245, 109, 78, 0.8);
        background: linear-gradient(135deg, #f56d4e 0%, #fa8943 100%);
    }

    .sc-btn-play:active {
        transform: scale(0.95);
    }

    /* Volume Controls */
    .sc-controls {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        padding: 10px 20px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sc-btn-mute {
        background: transparent;
        border: none;
        color: #b3b5b5;
        font-size: 20px;
        cursor: pointer;
        margin-right: 15px;
        transition: color 0.3s;
    }

    .sc-btn-mute:hover {
        color: #fa8943;
    }

    /* Volume Slider Styling */
    #sc-volume {
        -webkit-appearance: none;
        width: 100px;
        height: 6px;
        background: #b3b5b5;
        border-radius: 5px;
        outline: none;
    }

    #sc-volume::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #fa8943;
        cursor: pointer;
        transition: transform 0.2s;
    }

    #sc-volume::-webkit-slider-thumb:hover {
        transform: scale(1.3);
        background: #f56d4e;
    }

    /* Columna Derecha: Texto y Metadatos */
    .sc-player-right {
        position: relative;
        z-index: 2;
        margin-left: auto;
        text-align: right;
        color: #ffffff;
        max-width: 50%;
    }

    .sc-station-title {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 5px 0;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        letter-spacing: 1px;
    }

    .sc-station-desc {
        font-size: 16px;
        margin: 0 0 15px 0;
        color: #b3b5b5;
        font-weight: 300;
    }

    .sc-metadata {
        display: inline-flex;
        align-items: center;
        background: rgba(0, 0, 0, 0.5);
        padding: 8px 15px;
        border-radius: 20px;
        border-left: 3px solid #f56d4e;
        font-size: 15px;
        font-weight: 500;
    }

    .sc-metadata i {
        color: #fa8943;
        margin-right: 8px;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-3px);
        }
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .sc-player {
            flex-direction: column;
            justify-content: center;
            height: auto;
            padding: 30px 20px;
            text-align: center;
            gap: 20px;
        }

        .sc-player-overlay {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
        }

        .sc-player-left {
            flex-direction: column;
            gap: 15px;
        }

        .sc-player-right {
            margin-left: 0;
            text-align: center;
            max-width: 100%;
        }
    }

    /* ============================================================
   SECCIÓN PROGRAMAS — CARRUSEL DE TARJETAS  (template-match)
   ============================================================ */

    .rd-programas-section {
        background: #ffffff;
        padding: 60px 0 55px;
        position: relative;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Franja naranja superior decorativa */
    .rd-programas-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #f56d4e 0%, #fa8943 50%, #f56d4e 100%);
        background-size: 200% auto;
        animation: rdTopBarMove 4s linear infinite;
    }

    @keyframes rdTopBarMove {
        0% {
            background-position: 0% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    /* ---- Encabezado de sección — estilo template ---- */
    .rd-programas-header {
        text-align: center;
        margin-bottom: 45px;
        padding: 0 20px;
    }

    /* Badge "En el Aire" */
    .rd-programas-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: 2px solid #f56d4e;
        color: #f56d4e;
        font-family: Poppins, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        padding: 5px 16px;
        border-radius: 2px;
        margin-bottom: 16px;
        animation: rdBadgePulse 3s ease-in-out infinite;
    }

    @keyframes rdBadgePulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(245, 109, 78, 0.25);
        }

        50% {
            box-shadow: 0 0 0 6px rgba(245, 109, 78, 0);
        }
    }

    /* Título principal — igual al h3.title del template */
    .rd-programas-title {
        font-family: Poppins, sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #1e1e1e;
        margin: 0 0 12px 0;
        letter-spacing: 0;
        line-height: 1.2;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
    }

    /* Subrayado naranja centrado — idéntico al template */
    .rd-programas-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: #f56d4e;
        margin: 10px auto 0;
        border-radius: 2px;
        transition: width 0.4s ease;
    }

    .rd-programas-header:hover .rd-programas-title::after {
        width: 90px;
    }

    .rd-programas-subtitle {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        color: #999;
        margin: 8px 0 0 0;
        font-weight: 300;
        text-transform: none;
        letter-spacing: 0;
    }

    /* ---- Wrapper del carrusel ---- */
    .rd-carousel-wrapper {
        display: flex;
        align-items: center;
        padding: 0 30px;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    .rd-carousel-viewport {
        flex: 1;
        overflow: hidden;
        padding: 8px 4px 16px;
    }

    .rd-carousel-track {
        display: flex;
        gap: 22px;
        transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
    }

    /* ---- Tarjeta individual ---- */
    .rd-card {
        flex: 0 0 calc(25% - 17px);
        min-width: 200px;
        background: #ffffff;
        border-radius: 4px;
        overflow: hidden;
        border: 1px solid #ececec;
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.014);
        transition:
            transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            box-shadow 0.35s ease,
            border-color 0.35s ease;
        cursor: pointer;
        position: relative;
    }

    .rd-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 4px 4px rgba(245, 109, 78, 0.089), 0 4px 2px rgba(0, 0, 0, 0.08);
        border-color: #f56d4e;
    }

    /* Efecto shimmer en hover */
    .rd-card-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
        transform: skewX(-15deg);
        transition: left 0.6s ease;
        pointer-events: none;
        z-index: 5;
    }

    .rd-card:hover .rd-card-shine {
        left: 160%;
    }

    /* ---- Imagen ---- */
    .rd-card-image-wrap {
        position: relative;
        width: 100%;
        padding-top: 60%;
        overflow: hidden;
        background: #f5f5f5;
    }

    .rd-card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.55s ease;
    }

    .rd-card:hover .rd-card-image {
        transform: scale(1.07);
    }

    /* Fallback sin imagen */
    .rd-card-image-fallback {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
        font-size: 40px;
        color: rgba(245, 109, 78, 0.35);
    }

    /* Degradado inferior sobre imagen */
    .rd-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 55%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
        pointer-events: none;
    }

    /* Badge hora — esquina superior derecha */
    .rd-card-time-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.72);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(250, 137, 67, 0.5);
        color: #fa8943;
        font-family: Poppins, sans-serif;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 9px;
        border-radius: 2px;
        display: flex;
        align-items: center;
        gap: 4px;
        letter-spacing: 0.3px;
        z-index: 2;
    }

    /* Badge categoría — esquina superior izquierda */
    .rd-card-cat-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #f56d4e;
        color: #fff;
        font-family: Poppins, sans-serif;
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 3px 9px;
        border-radius: 2px;
        z-index: 2;
    }

    /* ---- Cuerpo de la tarjeta ---- */
    .rd-card-body {
        padding: 16px 16px 14px;
        background: #ffffff;
    }

    .rd-card-title {
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #1e1e1e;
        margin: 0 0 7px 0;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.25s ease;
    }

    .rd-card:hover .rd-card-title {
        color: #f56d4e;
    }

    .rd-card-lead {
        font-family: Poppins, sans-serif;
        font-size: 12px;
        color: #888;
        line-height: 1.55;
        margin: 0 0 12px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .rd-card-footer {
        display: flex;
        align-items: center;
        gap: 8px;
        padding-top: 10px;
        border-top: 1px solid #f0f0f0;
    }

    /* Punto live pulsante */
    .rd-card-live-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #f56d4e;
        flex-shrink: 0;
        animation: rdLivePulse 2s ease-out infinite;
    }

    @keyframes rdLivePulse {
        0% {
            box-shadow: 0 0 0 0 rgba(245, 109, 78, 0.6);
        }

        70% {
            box-shadow: 0 0 0 7px rgba(245, 109, 78, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(245, 109, 78, 0);
        }
    }

    .rd-card-live-text {
        font-family: Poppins, sans-serif;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #f56d4e;
    }

    /* ---- Botones de navegación ---- */
    .rd-carousel-btn {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 2px;
        background: #fff;
        border: 2px solid #ececec;
        color: #999;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
        z-index: 10;
        margin: 0 10px;
    }

    .rd-carousel-btn:hover {
        background: #f56d4e;
        border-color: #f56d4e;
        color: #fff;
        transform: scale(1.08);
        box-shadow: 0 4px 16px rgba(245, 109, 78, 0.4);
    }

    .rd-carousel-btn:active {
        transform: scale(0.95);
    }

    /* ---- Puntos indicadores ---- */
    .rd-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 30px;
    }

    .rd-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .rd-dot.active {
        width: 26px;
        border-radius: 4px;
        background: #f56d4e;
    }

    .rd-dot:hover:not(.active) {
        background: #fa8943;
        transform: scale(1.2);
    }

    /* ---- Responsive ---- */
    @media (max-width: 1100px) {
        .rd-card {
            flex: 0 0 calc(33.33% - 15px);
        }
    }

    @media (max-width: 768px) {
        .rd-card {
            flex: 0 0 calc(50% - 11px);
        }

        .rd-programas-title {
            font-size: 22px;
        }

        .rd-carousel-btn {
            width: 34px;
            height: 34px;
            font-size: 12px;
            margin: 0 6px;
        }
    }

    @media (max-width: 480px) {
        .rd-card {
            flex: 0 0 calc(100%);
        }

        .rd-carousel-btn {
            display: none;
        }

        .rd-programas-title {
            font-size: 20px;
        }

        .rd-carousel-wrapper {
            padding: 0 15px;
        }
    }


    /* Fondo decorativo animado */
    .rd-programas-section::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -80px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(245, 109, 78, 0.12) 0%, transparent 70%);
        animation: rdGlowMove 8s ease-in-out infinite;
        pointer-events: none;
    }

    .rd-programas-section::after {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(250, 137, 67, 0.08) 0%, transparent 70%);
        animation: rdGlowMove 8s ease-in-out infinite reverse;
        pointer-events: none;
    }

    @keyframes rdGlowMove {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        50% {
            transform: translate(30px, 20px) scale(1.1);
        }
    }

    /* ---- Encabezado de sección ---- */
    .rd-programas-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .rd-programas-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, rgba(245, 109, 78, 0.25), rgba(250, 137, 67, 0.15));
        border: 1px solid rgba(245, 109, 78, 0.4);
        color: #fa8943;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 20px;
        margin-bottom: 14px;
        animation: rdBadgePulse 3s ease-in-out infinite;
    }

    @keyframes rdBadgePulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(245, 109, 78, 0.3);
        }

        50% {
            box-shadow: 0 0 0 8px rgba(245, 109, 78, 0);
        }
    }

    .rd-programas-title {
        font-size: 36px;
        font-weight: 800;
        color: #181818;
        margin: 0 0 10px 0;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 20px rgba(245, 109, 78, 0.3);
    }

    .rd-programas-subtitle {
        font-size: 15px;
        color: #888;
        margin: 0;
        font-weight: 300;
    }

    /* ---- Carrusel ---- */
    .rd-carousel-wrapper {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0 20px;
        position: relative;
        z-index: 2;
        max-width: 1400px;
        margin: 0 auto;
    }

    .rd-carousel-viewport {
        flex: 1;
        overflow: hidden;
        border-radius: 0;
        padding:20px 0 16px;
    }

    .rd-carousel-track {
        display: flex;
        gap: 20px;
        transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
    }

    /* ---- Tarjeta individual ---- */
    .rd-card {
        flex: 0 0 calc(25% - 15px);
        min-width: 220px;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.192);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            box-shadow 0.4s ease,
            border-color 0.4s ease;
        cursor: pointer;
        position: relative;
    }

    .rd-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 50px rgba(245, 109, 78, 0.3), 0 8px 20px rgba(0, 0, 0, 0.5);
        border-color: rgba(245, 109, 78, 0.4);
    }

    /* Efecto brillo hover */
    .rd-card-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
        transform: skewX(-15deg);
        transition: left 0.7s ease;
        pointer-events: none;
    }

    .rd-card:hover .rd-card-shine {
        left: 160%;
    }

    /* ---- Imagen de la tarjeta ---- */
    .rd-card-image-wrap {
        position: relative;
        width: 100%;
        padding-top: 62%;
        /* aspect ratio 16:10 */
        overflow: hidden;
        background: #0d0d0d;
    }

    .rd-card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .rd-card:hover .rd-card-image {
        transform: scale(1.08);
    }

    /* Fallback sin imagen */
    .rd-card-image-fallback {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1e1e2e 0%, #2a1a2e 100%);
        font-size: 42px;
        color: rgba(245, 109, 78, 0.4);
    }

    /* Degradado inferior sobre imagen */
    .rd-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
        pointer-events: none;
    }

    /* Badge de hora */
    .rd-card-time-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(250, 137, 67, 0.4);
        color: #fa8943;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 5px;
        letter-spacing: 0.5px;
    }

    /* Badge de categoría */
    .rd-card-cat-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: linear-gradient(135deg, #fa8943, #f56d4e);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 4px 10px;
        border-radius: 20px;
    }

    /* ---- Cuerpo de la tarjeta ---- */
    .rd-card-body {
        padding: 18px 18px 16px;
    }

    .rd-card-title {
        font-size: 15px;
        font-weight: 700;
        color: #000000;
        margin: 0 0 8px 0;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.3s ease;
    }

    .rd-card:hover .rd-card-title {
        color: #fa8943;
    }

    .rd-card-lead {
        font-size: 12px;
        color: #777;
        line-height: 1.5;
        margin: 0 0 12px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .rd-card-footer {
        display: flex;
        align-items: center;
        gap: 8px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Punto live pulsante */
    .rd-card-live-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #f56d4e;
        box-shadow: 0 0 0 0 rgba(245, 109, 78, 0.6);
        animation: rdLivePulse 2s ease-out infinite;
        flex-shrink: 0;
    }

    @keyframes rdLivePulse {
        0% {
            box-shadow: 0 0 0 0 rgba(245, 109, 78, 0.7);
        }

        70% {
            box-shadow: 0 0 0 7px rgba(245, 109, 78, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(245, 109, 78, 0);
        }
    }

    .rd-card-live-text {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #f56d4e;
    }

    /* ---- Botones del carrusel ---- */
    .rd-carousel-btn {
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ccc;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
        margin: 0 8px;
    }

    .rd-carousel-btn:hover {
        background: linear-gradient(135deg, #fa8943, #f56d4e);
        border-color: transparent;
        color: #fff;
        transform: scale(1.12);
        box-shadow: 0 6px 20px rgba(245, 109, 78, 0.5);
    }

    .rd-carousel-btn:active {
        transform: scale(0.95);
    }

    /* ---- Puntos indicadores ---- */
    .rd-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 28px;
        position: relative;
        z-index: 2;
    }

    .rd-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .rd-dot.active {
        width: 28px;
        border-radius: 4px;
        background: linear-gradient(135deg, #fa8943, #f56d4e);
        box-shadow: 0 0 10px rgba(245, 109, 78, 0.5);
    }

    .rd-dot:hover:not(.active) {
        background: rgba(255, 255, 255, 0.4);
        transform: scale(1.2);
    }

    /* ---- Responsive ---- */
    @media (max-width: 1100px) {
        .rd-card {
            flex: 0 0 calc(33.33% - 14px);
        }
    }

    @media (max-width: 768px) {
        .rd-card {
            flex: 0 0 calc(50% - 10px);
        }

        .rd-programas-title {
            font-size: 26px;
        }

        .rd-carousel-btn {
            width: 38px;
            height: 38px;
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .rd-card {
            flex: 0 0 calc(100% - 0px);
        }

        .rd-carousel-btn {
            display: none;
        }

        .rd-programas-title {
            font-size: 22px;
        }
    }

/* ---- Logo GoStreaming en barra de audio ---- */
.ap-go-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: brightness(0) invert(1);  /* forzar blanco sobre naranja */
    transition: opacity 0.3s ease;
}

.ap-go-logo:hover {
    opacity: 1;
}