/* ── Reproductor: Base ──────────────────────────────────────────────────── */
.sr-radio-player {
    background:
        linear-gradient(90deg, rgba(14, 16, 24, 0.98) 0%, rgba(27, 22, 28, 0.96) 44%, rgba(20, 22, 29, 0.98) 100%),
        radial-gradient(circle at 50% 100%, rgba(216, 49, 49, 0.14), transparent 44%);
    border-top-color: rgba(216, 49, 49, 0.18) !important;
    box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
}

.sr-radio-player::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 49, 49, 0.95), rgba(29, 185, 84, 0.48), rgba(216, 49, 49, 0.9));
    opacity: 0.9;
}

.sr-radio-player-panel {
    position: relative;
}

.sr-radio-player-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%);
}

.sr-radio-player-panel--track {
    background:
        linear-gradient(135deg, rgba(18, 20, 27, 0.98), rgba(25, 18, 20, 0.94)),
        radial-gradient(circle at 0 0, rgba(216, 49, 49, 0.12), transparent 35%) !important;
}

.sr-radio-player-panel--controls,
.sr-radio-player-panel--actions {
    background:
        linear-gradient(180deg, rgba(24, 26, 32, 0.94), rgba(19, 21, 27, 0.98)),
        radial-gradient(circle at top right, rgba(216, 49, 49, 0.08), transparent 36%) !important;
}

.sr-radio-track-copy {
    gap: 2px;
}

.sr-radio-visualizer {
    padding: 2px 0;
}

.sr-radio-visualizer canvas {
    filter: drop-shadow(0 0 8px rgba(216, 49, 49, 0.24));
}

.sr-radio-volume-track {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(216, 49, 49, 0.12);
}

.sr-radio-volume-fill {
    background: linear-gradient(90deg, rgba(216, 49, 49, 0.95), rgba(255, 108, 99, 0.92), rgba(29, 185, 84, 0.72)) !important;
}

/* ── Marquesina móvil del reproductor ──────────────────────────────────── */
/*
 * Marquesina controlada 100% por JS (rAF). El CSS solo estructura.
 * JS añade/quita .is-active y mueve .sr-mobile-marquee-track con transform.
 */

.sr-mobile-marquee {
    display: block;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.sr-mobile-marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}

.sr-mobile-marquee-text {
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 3rem; /* gap visual entre texto y su copia */
}

/* La copia está siempre en el DOM, JS la hace visible al activar */
.sr-mobile-marquee-track [aria-hidden="true"] {
    display: none;
}

.sr-mobile-marquee.is-active .sr-mobile-marquee-track [aria-hidden="true"] {
    display: inline-block;
}

/* Reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    .sr-mobile-marquee.is-active .sr-mobile-marquee-track {
        transform: none !important;
    }
}

/* ── Letras pulsante cuando hay letra disponible ─────────────────────── */
@keyframes sr-letras-pulse-anim {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

.sr-letras-pulse {
    animation: sr-letras-pulse-anim 2.2s ease-in-out infinite;
}

/* ── Dot pulsante EN VIVO ────────────────────────────────────────────── */
@keyframes sr-dot-pulse-anim {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(0.82); }
}

.sr-dot-pulse {
    animation: sr-dot-pulse-anim 1.8s ease-in-out infinite;
}

/* ── EN VIVO label pulsante ─────────────────────────────────────────── */
@keyframes sr-envivo-pulse-anim {
    0%, 100% { color: rgba(216, 49, 49, 0.95); }
    50%       { color: rgba(216, 49, 49, 0.45); }
}

.sr-envivo-pulse {
    animation: sr-envivo-pulse-anim 2s ease-in-out infinite;
}

/* ── Skeleton / Anti-CLS (Alpine) ─────────────────────────────────────── */
@keyframes sr-skeleton-shimmer {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

.sr-skeleton-frame {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sr-skeleton-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.00),
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.00)
    );
    animation: sr-skeleton-shimmer 1.25s ease-in-out infinite;
    transform: translateX(-120%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.sr-skeleton-frame > img {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .sr-skeleton-frame::after {
        animation: none;
        display: none;
    }
}

/* ── HOME: Forzar correcciones visibles (tickets, boton album, news) ───── */
/* Tickets: respetar "Tickets" y quitar uppercase/contorno */
#lc_swp_content .sr-home-page .sr-home-shows .event_buy {
    text-transform: none !important;
}
#lc_swp_content .sr-home-page .sr-home-shows .event_buy a {
    text-transform: lowercase !important;
    font-variant: normal !important;
    letter-spacing: 0.06em !important;
    border-radius: 0 !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    background: transparent !important;
    color: #e7e9f2 !important;
    box-shadow: none !important;
}
#lc_swp_content .sr-home-page .sr-home-shows .event_buy a::first-letter {
    text-transform: uppercase !important;
}

/* Columna fechas: Forzar centrado absoluto y eliminar empuje del tema */
#lc_swp_content .sr-home-page .sr-home-shows .single_event_list {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

#lc_swp_content .sr-home-page .sr-home-shows .event_list_entry {
    padding: 15px 10px !important;
    text-align: center !important;
}

#lc_swp_content .sr-home-page .sr-home-shows .event_list_entry.event_date {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex: 1.2 !important; /* Un poco más de espacio para la fecha completa */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    font-weight: 600 !important;
}

#lc_swp_content .sr-home-page .sr-home-shows .event_list_entry.event_location,
#lc_swp_content .sr-home-page .sr-home-shows .event_list_entry.event_venue {
    flex: 2 !important; /* Más espacio para textos largos de lugar/festival */
}

#lc_swp_content .sr-home-page .sr-home-shows .event_list_entry.event_buy {
    flex: 0.8 !important; /* Ajuste para el botón Entradas */
    text-align: right !important; /* El botón suele ir a la derecha al final */
}

/* Lanzamiento en rotación: Botón Estilo Lucille Premium */
#lc_swp_content .sr-home-page .sr-home-album .album_buy_from,
#lc_swp_content .sr-home-page .sr-home-album .lc_button {
    margin-top: 30px !important;
    text-align: left !important;
}

#lc_swp_content .sr-home-page .sr-home-album .lc_button a {
    display: inline-block !important;
    padding: 12px 32px !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
    font-family: var(--sr-menu-font), sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border-radius: 0px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

#lc_swp_content .sr-home-page .sr-home-album .lc_button a:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Ultimas noticias: Diseño de tarjetas limpias (Grid) con bordes y fondo */
#lc_swp_content .sr-home-page .sr-home-news .sr-blog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 32px !important;
    padding: 20px 0 !important;
}

#lc_swp_content .sr-home-page .sr-home-news .post_item.sr-grid-card {
    position: relative !important;
    background: #0d1218 !important; 
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;   /* Forzar ancho total de la columna */
    max-width: 100% !important;
    height: 100% !important;
    min-height: auto !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    margin-bottom: 0 !important;
    transition: transform 0.3s ease, border-color 0.3s ease !important;
}

#lc_swp_content .sr-home-page .sr-home-news .post_item.sr-grid-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Imagen en la parte superior */
#lc_swp_content .sr-home-page .sr-home-news .post_item.sr-grid-card > a {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
}

#lc_swp_content .sr-home-page .sr-home-news .post_item .lc_masonry_thumbnail_image {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #0a0e14 !important;
    display: block !important;
}

/* Contenido debajo de la imagen */
#lc_swp_content .sr-home-page .sr-home-news .post_item_details {
    position: relative !important;
    padding: 24px !important;
    background: transparent !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

/* Títulos controlados */
#lc_swp_content .sr-home-page .sr-home-news .lc_post_title {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    color: #fff !important;
    font-family: var(--sr-heading-font) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* Meta información */
#lc_swp_content .sr-home-page .sr-home-news .lc_post_meta {
    font-size: 11px !important;
    color: #888 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Extracto */
#lc_swp_content .sr-home-page .sr-home-news .lc_post_excerpt {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #ccc !important;
    margin-bottom: 20px !important;
}

#lc_swp_content .sr-home-page .sr-home-news .lc_button a {
    font-size: 12px !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 8px 16px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

#lc_swp_content .sr-home-page .sr-home-news .lc_button a:hover {
    background: #fff !important;
    color: #000 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    #lc_swp_content .sr-home-page .sr-home-news .sr-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    #lc_swp_content .sr-home-page .sr-home-news .sr-blog-grid {
        grid-template-columns: 1fr !important;
    }
}

/* WALL HERO EXACT FIXES */
.sr-wall-hero-kicker {
    font-family: var(--sr-menu-font), sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 0.30em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

/* Rectangular buttons and select menus */
.sr-wall-page .sr-wall-filters-bar a,
.sr-wall-page .sr-wall-search-button,
.sr-wall-page .sr-wall-filter-field,
.sr-wall-page .sr-wall-search-input-wrap,
.sr-wall-page .sr-wall-chip {
    border-radius: 0 !important;
}

.sr-wall-page .sr-wall-search-input {
    border-radius: 0 !important;
}

/* WALL HERO TITLE FORCE OVERRIDE */
html body .sr-wall-page .sr-wall-hero-rocknet h1.sr-wall-hero-title .sr-wall-title-line,
html body .sr-wall-page .sr-wall-hero-rocknet h1.sr-wall-hero-title .sr-wall-title-rock {
    display: block;
    transition: none;
}

html body .sr-wall-page .sr-wall-hero-rocknet h1.sr-wall-hero-title .sr-wall-title-line {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.32em;
}

html body .sr-wall-page .sr-wall-hero-rocknet h1.sr-wall-hero-title .sr-wall-title-rock {
    font-size: 72px;
    line-height: 0.9;
    letter-spacing: 0.1em;
}

/* Stable wall hero replacement styles */
.el-muro-del-estable {
    width: auto;
    max-width: 100%;
    min-width: 100%;
}

.el-muro-del-estable .sr-wall-hero-title {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 220px;
    max-height: 220px;
    transition: none;
    animation: none;
    transform: scale(1);
}

.el-muro-del-estable .sr-wall-title-line {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.32em;
    transition: none;
    animation: none;
    transform: scale(1);
}

.el-muro-del-estable .sr-wall-title-rock {
    font-size: 72px;
    line-height: 0.9;
    letter-spacing: 0.10em;
    transition: none;
    animation: none;
    transform: scale(1);
}

/* FORCE RECTANGULAR FILTER BUTTONS AND SELECTS */
.sr-wall-page .sr-wall-filters-bar a,


