/* ==========================================================================
   FRECUENCIA UNIVERSAL - ESTILO OFICIAL MORADO REAL & AMARILLO RADIO
   ========================================================================== */

:root {
    /* Paleta Oficial del Logo: Morado Profundo, Violeta Eléctrico y Amarillo Radio */
    --purple-bg: #350c6d;
    --purple-gradient: radial-gradient(circle at 50% 12%, #5519a4 0%, #350c6d 50%, #1f0545 100%);
    --purple-hero: rgba(33, 7, 68, 0.88);
    --purple-card: rgba(255, 255, 255, 0.12);
    --purple-border: rgba(255, 255, 255, 0.22);
    
    --yellow-radio: #ffd000;
    --yellow-hover: #ffb700;
    
    --red-live: #ff2a44;
    --green-wa: #25d366;
    
    --white: #ffffff;
    --text-muted: #cbd5e1;
    
    /* Bordes rectos sólidos */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-full: 0px;
    
    --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.55);
    --transition: all 0.2s ease-in-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--purple-bg);
    background-image: var(--purple-gradient);
    background-attachment: fixed;
    color: var(--white);
    font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Montserrat', sans-serif;
    min-height: 100vh;
    padding-bottom: 90px;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input {
    font: inherit;
}

/* ==========================================================================
   HEADER FIJO FLOTANTE
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(25, 5, 54, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(255, 208, 0, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo img {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.nav-pill-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 0;
}

.nav-pill-box a {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-pill-box a:hover,
.nav-pill-box a.active {
    background: #ffffff;
    color: #280a5e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.header-right-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-pill-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.icon-pill-btn:hover {
    background: var(--yellow-radio);
    color: #000000;
}

.icon-pill-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================================================
   HERO / FULL-WIDTH 100% PLAYER BANNER
   ========================================================================== */
.hero-fullwidth-section {
    width: 100%;
    background: var(--purple-hero);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 3px solid rgba(255, 208, 0, 0.4);
    box-shadow: 
        inset 0 10px 40px rgba(0, 0, 0, 0.6),
        0 14px 35px rgba(0, 0, 0, 0.45);
    padding: 40px 0 44px;
    position: relative;
    overflow: hidden;
}

.hero-fullwidth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8e24aa 0%, var(--yellow-radio) 50%, #8e24aa 100%);
}

.hero-fullwidth-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Cover Box */
.cover-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    flex-shrink: 0;
    width: 250px;
    z-index: 5;
    position: relative;
}

.cover-art-box {
    width: 250px;
    height: 250px;
    background: #180336;
    border: 3px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 30px rgba(0,0,0,0.7);
    overflow: hidden;
    display: grid;
    place-items: center;
    position: relative;
    border-radius: var(--radius-sm);
}

.cover-art-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cover-art-box:hover img {
    transform: scale(1.04);
}

.cover-social-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-mini-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.social-mini-btn:hover {
    background: var(--yellow-radio);
    color: #000000;
    transform: translateY(-2px);
}

.social-mini-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Right Info & Actions */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.live-now-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 6px 14px;
    background: #ffffff;
    color: #210744;
    font-size: 11.5px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.live-now-pill .live-dot {
    width: 8px;
    height: 8px;
    background: var(--red-live);
    box-shadow: 0 0 8px var(--red-live);
    animation: livePulse 1.4s infinite;
}

.info-column h1 {
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 3px 14px rgba(0,0,0,0.7);
    margin: 0;
    white-space: normal;
    overflow: visible;
}

/* Barra de Marquesina Animada Dedicada (LED Radio Player) */
.now-playing-marquee-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 208, 0, 0.35);
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    max-width: 100%;
    overflow: hidden;
}

.now-playing-badge {
    background: var(--yellow-radio);
    color: #000000;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 8px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.now-playing-text-box {
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
    position: relative;
}

.now-playing-text-box span {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    padding-right: 50px;
    animation: marqueePlay 16s linear infinite;
}

.now-playing-text-box:hover span {
    animation-play-state: paused;
}

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

.info-column .track-subtitle {
    font-size: 18px;
    color: var(--yellow-radio);
    font-weight: 800;
}

.info-column .station-desc {
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.55;
}

.hero-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.hero-btn.primary {
    background: var(--yellow-radio);
    border: 2px solid #ffffff;
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 208, 0, 0.45);
}

.hero-btn.primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================================
   BANNER PUBLICIDAD SÓLIDO
   ========================================================================== */
.ads-banner-wrap {
    max-width: 1180px;
    margin: 40px auto 44px;
    padding: 0 20px;
}

.ads-banner {
    background: linear-gradient(135deg, #1f0545 0%, #430d87 50%, #1f0545 100%);
    border: 2px solid var(--yellow-radio);
    padding: 26px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
}

.ads-text h3 {
    font-size: 26px;
    font-weight: 950;
    color: var(--yellow-radio);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ads-text p {
    font-size: 14px;
    color: #e2e8f0;
}

.ads-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--yellow-radio);
    color: #000000;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(255, 208, 0, 0.4);
    border-radius: var(--radius-sm);
}

.ads-btn:hover {
    background: #ffffff;
    transform: scale(1.04);
}

/* ==========================================================================
   SECCIONES GENERALES
   ========================================================================== */
.section-container {
    max-width: 1180px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.section-title-wrap {
    margin-bottom: 24px;
}

.section-title-wrap h2 {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-title-wrap h2::before {
    content: '';
    display: block;
    width: 6px;
    height: 28px;
    background: var(--yellow-radio);
}

/* ==========================================================================
   SECCIÓN LOCUTORES
   ========================================================================== */
.locutores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.locutor-card {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.22);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.locutor-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow-radio);
}

.locutor-photo {
    width: 100%;
    height: 210px;
    background: #180336;
    position: relative;
    overflow: hidden;
}

.locutor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.locutor-card:hover .locutor-photo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.locutor-onair-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--red-live);
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 900;
    padding: 4px 8px;
    letter-spacing: 0.1em;
}

.locutor-info {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.locutor-badge {
    font-size: 10.5px;
    font-weight: 900;
    color: var(--yellow-radio);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 2px;
}

.locutor-info h4 {
    font-size: 17px;
    font-weight: 900;
    color: #ffffff;
}

.locutor-info p {
    font-size: 12.5px;
    color: #cbd5e1;
    margin-top: 4px;
}

/* ==========================================================================
   PROGRAMACIÓN: PURO FLYER / AFICHE IMAGEN DE PROGRAMAS
   ========================================================================== */
.program-pure-flyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.program-pure-flyer-card {
    position: relative;
    height: 340px;
    background: #180336;
    border: 3px solid rgba(255, 255, 255, 0.28);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.program-pure-flyer-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow-radio);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
}

.program-pure-flyer-card .flyer-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-pure-flyer-card:hover .flyer-img {
    transform: scale(1.08);
}

.program-pure-flyer-card .flyer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 3, 54, 0.1) 0%, rgba(24, 3, 54, 0.55) 40%, rgba(15, 2, 34, 0.96) 100%);
    z-index: 1;
}

.flyer-time-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--yellow-radio);
    color: #000000;
    font-size: 11px;
    font-weight: 950;
    padding: 5px 12px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.flyer-bottom-info {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flyer-bottom-info .genre-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--yellow-radio);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.flyer-bottom-info h3 {
    font-size: 22px;
    font-weight: 950;
    color: #ffffff;
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.flyer-bottom-info .host-name {
    font-size: 12.5px;
    color: #cbd5e1;
    font-weight: 600;
}

/* ==========================================================================
   SECCIÓN NOTICIAS Y CULTURA
   ========================================================================== */
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.news-card-item {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.22);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.news-card-item:hover {
    transform: translateY(-5px);
    border-color: var(--yellow-radio);
}

.news-card-media {
    position: relative;
    width: 100%;
    height: 190px;
    background: #180336;
    overflow: hidden;
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #7b1fa2;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.news-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.news-card-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--yellow-radio);
    text-transform: uppercase;
}

.news-card-body h4 {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
}

.news-card-body p {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
}

/* ==========================================================================
   REDES SOCIALES
   ========================================================================== */
.socials-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.social-full-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.social-full-card:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.social-full-card svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #14022b;
    border-top: 2px solid rgba(255, 208, 0, 0.3);
    padding: 36px 20px 24px;
    color: #cbd5e1;
    font-size: 13px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-inner strong {
    color: #ffffff;
    font-size: 15px;
}

/* ==========================================================================
   BOTTOM STICKY PLAYER BAR (DOCK EXACTO RADIO CASMA)
   ========================================================================== */
.bottom-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: #14022b;
    border-top: 3px solid var(--yellow-radio);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 4vw, 40px);
}

/* Left controls */
.bar-left-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 200px;
}

.bar-play-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--yellow-radio);
    color: #000000;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 0 14px rgba(255, 208, 0, 0.5);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.bar-play-btn:hover {
    transform: scale(1.06);
    background: #ffffff;
}

.bar-play-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.bar-station-title {
    display: flex;
    flex-direction: column;
}

.bar-station-title strong {
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.bar-station-title span {
    font-size: 11px;
    color: var(--yellow-radio);
    font-weight: 700;
}

/* Center track badge */
.bar-center-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 450px;
}

.bar-ahora-badge {
    background: #7b1fa2;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.bar-track-name {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bar-track-name .label {
    font-size: 11px;
    color: #94a3b8;
}

.bar-track-name .title {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

.bar-track-name .title.marquee-running {
    text-overflow: clip;
    display: inline-block;
    animation: marqueePlay 14s linear infinite;
}

/* Right volume */
.bar-right-volume {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: flex-end;
}

.bar-vol-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 4px;
}

.bar-vol-btn:hover {
    color: var(--yellow-radio);
}

.bar-vol-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.bar-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 5px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.25);
    outline: none;
    cursor: pointer;
    accent-color: var(--yellow-radio);
}

/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--green-wa);
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 9998;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    animation: waBounce 2.5s infinite;
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.7);
}

.floating-wa-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes waBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-7px); }
    60% { transform: translateY(-3px); }
}

@media (max-width: 920px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }
    .hero-fullwidth-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .live-now-pill {
        align-self: center;
    }
    .hero-action-buttons {
        justify-content: center;
    }
    .cover-art-box {
        width: 220px;
        height: 220px;
    }
    .bottom-player-bar {
        height: 76px;
        padding: 0 14px;
    }
    .bar-center-meta {
        display: none;
    }
}

@media (max-width: 580px) {
    .nav-pill-box {
        flex-wrap: wrap;
        justify-content: center;
    }
    .ads-banner {
        text-align: center;
        justify-content: center;
    }
    .bar-station-title strong {
        font-size: 12px;
    }
    .bar-vol-slider {
        width: 60px;
    }
    .floating-wa-btn {
        bottom: 84px;
        right: 14px;
        width: 48px;
        height: 48px;
    }
    .floating-wa-btn svg {
        width: 26px;
        height: 26px;
    }
}
