:root {
    --bg: #040818;
    --bg-soft: #0b132d;
    --card: rgba(12, 20, 46, 0.82);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f4f8ff;
    --muted: #b3c1e5;
    --primary: #ff4e00;
    --secondary: #ffd700;
    --success: #23d17d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at 15% 10%, rgba(255, 148, 0, 0.22), transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(255, 214, 0, 0.16), transparent 42%),
        linear-gradient(160deg, #030611 0%, #060b1b 45%, #03050d 100%);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    padding: 0 0 120px;
    overflow-x: hidden;
}

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 32%, transparent 85%);
    z-index: -1;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 14px max(18px, calc((100vw - 1200px) / 2));
    border: 1px solid var(--line);
    border-radius: 0;
    backdrop-filter: blur(14px);
    background: rgba(6, 10, 25, 0.8);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    flex: 0 0 auto;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 700;
    opacity: 0.88;
    transition: 0.25s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #fff;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 144, 0, 0.65);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    color: white;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-live,
.btn-play {
    background: linear-gradient(130deg, var(--primary), #ff7a10);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.35);
}

.btn-live {
    position: relative;
    overflow: hidden;
    padding-right: 20px;
}

.btn-live::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
    opacity: 0.95;
}

.btn-live::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 50%, transparent 100%);
    transform: translateX(-120%);
    opacity: 0;
}

.btn-live.is-playing {
    background: linear-gradient(130deg, #ff8a1a, #d71f00);
    box-shadow: 0 10px 28px rgba(255, 140, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12);
    animation: livePulse 1.4s ease-in-out infinite;
}

.btn-live.is-playing::before {
    background: #dffcff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.btn-live.is-playing::after {
    opacity: 1;
    animation: liveSweep 2s linear infinite;
}

@keyframes livePulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-1px) scale(1.03);
    }
}

@keyframes liveSweep {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

.btn-dark {
    background: #16203f;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 140, 0, 0.75);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 4px 0;
    background: #fff;
    border-radius: 3px;
}

main {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(20px, 4vw, 44px);
    align-items: center;
    min-height: calc(100vh - 76px);
    margin-inline: calc(50% - 50vw);
    padding: clamp(34px, 6vw, 78px) max(18px, calc((100vw - 1200px) / 2));
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(3, 6, 15, 0.92) 0%, rgba(3, 6, 15, 0.72) 39%, rgba(3, 6, 15, 0.42) 64%, rgba(3, 6, 15, 0.86) 100%),
        linear-gradient(180deg, rgba(3, 6, 15, 0.2) 0%, rgba(3, 6, 15, 0.94) 100%),
        url("https://images.unsplash.com/photo-1590602847861-f357a9332bbc?q=80&w=2200&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 -80px 110px rgba(3, 6, 15, 0.86);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 31% 48%, rgba(255, 140, 0, 0.24), transparent 24%),
        radial-gradient(circle at 68% 22%, rgba(255, 214, 0, 0.14), transparent 26%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 40%;
    bottom: 0;
    width: min(27vw, 320px);
    aspect-ratio: 0.52;
    transform: translateX(-50%);
    background:
        linear-gradient(90deg, transparent 47%, rgba(0, 0, 0, 0.85) 48%, rgba(0, 0, 0, 0.85) 52%, transparent 53%) bottom / 100% 43% no-repeat,
        radial-gradient(ellipse at center, rgba(20, 20, 25, 0.98) 0 30%, rgba(120, 60, 90, 0.45) 31% 37%, rgba(0, 0, 0, 0.88) 38% 46%, transparent 47%);
    opacity: 0.86;
    filter: drop-shadow(0 0 28px rgba(255, 140, 0, 0.25));
    pointer-events: none;
}

.hero-left,
.hero-player,
.panel,
.highlight-item {
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: 22px;
    backdrop-filter: blur(6px);
}

.hero-left {
    position: relative;
    z-index: 1;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

.eyebrow {
    color: var(--secondary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.74rem;
    margin-bottom: 8px;
}

.hero-left h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4.4rem, 10vw, 8rem);
    line-height: 0.82;
    letter-spacing: 0;
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.55);
}

.hero-title {
    display: grid;
}

.hero-title-line {
    display: block;
    width: fit-content;
    white-space: nowrap;
    background: linear-gradient(180deg, #ffffff 0%, #ffef7a 18%, #ff8d00 46%, #e81c1c 76%, #b10101 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title-line-top,
.hero-title-line-bottom {
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.35);
}

.hero-title-line-bottom {
    background: linear-gradient(180deg, #ffffff 0%, #ffef7a 18%, #ff8d00 46%, #e81c1c 76%, #b10101 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title-line::after {
    content: "";
    display: inline-block;
    width: 0.08em;
    height: 0.9em;
    margin-left: 0.08em;
    background: currentColor;
    vertical-align: -0.08em;
    opacity: 0;
}

.hero-title.is-typing .hero-title-line::after {
    opacity: 1;
    animation: cursorBlink 0.8s steps(1) infinite;
}

.hero-title.is-done .hero-title-line::after {
    opacity: 0;
    animation: none;
}

.hero-tagline {
    margin-top: 14px;
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.05rem, 2vw, 1.32rem);
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.7);
}

.hero-copy {
    max-width: 420px;
    margin-top: 22px;
    color: rgba(244, 248, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.6;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
}

.hero-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 480px;
}

.feature-card {
    position: relative;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: grid;
    gap: 6px;
    justify-items: center;
    text-align: center;
    text-transform: uppercase;
}

.feature-card + .feature-card::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.24);
}

.feature-icon {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.38));
}

.feature-card strong,
.feature-card p {
    color: #fff;
    font-size: 0.68rem;
    line-height: 1.15;
    font-weight: 900;
    text-shadow: 0 5px 16px rgba(0, 0, 0, 0.75);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.86);
}

.hero-player {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(100%, 530px);
    padding: 16px;
    display: grid;
    gap: 10px;
    overflow: hidden;
    border-radius: 14px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(5, 9, 21, 0.7);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-player::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 140, 0, 0.18), transparent 38%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.hero-player.is-playing::after {
    opacity: 1;
}

.pill-live {
    position: absolute;
    top: 34px;
    left: 34px;
    z-index: 2;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 7px;
    background: #ff3446;
    box-shadow: 0 10px 24px rgba(255, 52, 70, 0.32);
}

.player-cover {
    position: relative;
    border-radius: 9px;
    overflow: hidden;
    height: clamp(180px, 25vw, 245px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #07101f;
}

.player-cover img,
.player-cover iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover iframe {
    border: 0;
    opacity: 0;
    visibility: hidden;
}

.hero-player.is-video .player-cover img {
    opacity: 0;
    visibility: hidden;
}

.hero-player.is-video .player-cover iframe {
    opacity: 1;
    visibility: visible;
}

.player-status {
    min-height: 1.3em;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    line-height: 1.35;
}

.range {
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--primary) 0 65%, rgba(255, 255, 255, 0.18) 65% 100%);
    outline: none;
}

.range::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(130deg, var(--primary), var(--secondary));
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.player-actions {
    display: grid;
    grid-template-columns: 46px minmax(160px, 1fr) 46px 46px;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin: 0;
}

.player-actions .btn-play {
    min-height: 46px;
    min-width: 190px;
    padding: 0 20px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(255, 140, 0, 0.3);
    text-transform: uppercase;
}

.player-actions .btn-play svg,
.btn-watch svg,
.player-volume-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 auto;
}

.btn-watch {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 3;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-transform: uppercase;
    font-size: 0.78rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.btn-watch.is-active {
    background: linear-gradient(130deg, var(--primary), #ff7a10);
    border-color: rgba(255, 255, 255, 0.18);
}

.player-actions .skip {
    width: 46px;
    height: 46px;
    align-self: center;
    font-size: 1rem;
    border-radius: 8px;
}

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

.player-actions #playBtn {
    box-shadow: 0 12px 24px rgba(255, 140, 0, 0.32);
}

.player-actions .skip:hover,
.player-actions .btn-play:hover,
.btn-watch:hover {
    transform: translateY(-1px);
}

.player-live-row {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.player-volume-icon {
    color: #fff;
    display: grid;
    place-items: center;
}

.player-onair {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.player-onair span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.5);
}

.highlights {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
}

.playlist-section {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 14, 31, 0.72);
    box-shadow: inset 0 -3px 0 rgba(255, 140, 0, 0.5), 0 18px 44px rgba(0, 0, 0, 0.22);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
}

.section-head h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.6px;
    line-height: 0.9;
}

/* Carrusel de DJs encima de las 10 mas escuchadas */
.dj-section {
    width: min(1200px, 92%);
    margin: 0 auto 12px;
}

.dj-carousel {
    position: relative;
    width: 100%;
    height: clamp(260px, 34vw, 480px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(6,10,20,0.6), rgba(6,10,20,0.8));
    box-shadow: 0 16px 32px rgba(0,0,0,0.32);
}


.dj-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 900ms cubic-bezier(0.22, 0.82, 0.13, 1);
    will-change: transform;
}

.dj-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.dj-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
    object-position: center;
}

/* indicadores (dots) */
.dj-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
    z-index: 6;
}

.dj-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.dj-dots button.active {
    background: var(--primary);
    transform: scale(1.14);
    box-shadow: 0 6px 18px rgba(0,0,0,0.32);
}

/* Pausar autoplay al hacer hover */
.dj-carousel:hover .dj-slide {
    transition-duration: 200ms;
}

@media (max-width: 720px) {
    .dj-carousel {
        height: 140px;
        border-radius: 10px;
    }
}

.playlist-carousel {
    position: relative;
}

.playlist-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 28px;
}

.playlist-viewport::-webkit-scrollbar {
    display: none;
}

.playlist-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(145px, calc((100% - 70px) / 6), 178px);
    gap: 14px;
}

.playlist-card {
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
    padding: 8px 8px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(18, 30, 58, 0.82), rgba(10, 17, 36, 0.88));
    display: grid;
    gap: 10px;
    min-height: 244px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.playlist-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 140, 0, 0.42);
}

.playlist-card img {
    width: 100%;
    aspect-ratio: 1.18;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    filter: saturate(1.08) contrast(1.04);
}

.playlist-card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.28rem;
    letter-spacing: 0.5px;
    line-height: 0.92;
    margin-bottom: 4px;
}

.playlist-card p {
    color: var(--muted);
    line-height: 1.42;
    font-size: 0.74rem;
    margin-bottom: 4px;
}

.playlist-card small {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.72rem;
}

.playlist-rank {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    width: 38px;
    height: 30px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: rgba(255, 140, 0, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.22);
}

.playlist-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.playlist-play-btn {
    border: 0;
    border-radius: 10px;
    min-height: 38px;
    padding: 0 14px;
    width: 100%;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(130deg, var(--primary), #ff7a10);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.playlist-play-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.playlist-play-btn.is-playing {
    background: linear-gradient(130deg, #ff8a1a, #d71f00);
    box-shadow: 0 10px 24px rgba(255, 140, 0, 0.28);
}

.playlist-card.is-playing {
    border-color: rgba(255, 214, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 214, 0, 0.12), 0 18px 30px rgba(0, 0, 0, 0.16);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(35, 54, 91, 0.92);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.carousel-btn:hover {
    background: rgba(255, 140, 0, 0.92);
    transform: translateY(-50%) scale(1.04);
}

.carousel-btn:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

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

.carousel-btn-prev {
    left: 8px;
}

.carousel-btn-next {
    right: 8px;
}

.highlight-item {
    padding: 20px;
}

.highlight-item h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.4px;
    margin-bottom: 7px;
}

.highlight-item p {
    color: var(--muted);
    line-height: 1.5;
}

.content-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
}

.panel {
    padding: 20px;
}

.panel h2 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.5px;
    font-size: 1.9rem;
}

.panel p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.68;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.schedule-list {
    list-style: none;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-list li {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 14px;
    padding: 10px 12px;
    min-height: 54px;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    align-items: center;
}

.schedule-list li:last-child {
    border-bottom: 0;
}

.schedule-list span {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.88rem;
}

.schedule-list small {
    display: block;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.25;
}

.schedule-list strong {
    line-height: 1.15;
}

.follow-panel {
    align-self: stretch;
}

.follow-list {
    display: grid;
    gap: 9px;
}

.follow-link {
    display: grid;
    grid-template-columns: 46px 1fr 22px;
    gap: 12px;
    align-items: center;
    min-height: 55px;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.follow-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 140, 0, 0.36);
    background: rgba(255, 255, 255, 0.07);
}

.follow-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.follow-link strong,
.follow-link small {
    display: block;
}

.follow-link small {
    color: var(--muted);
    margin-top: 2px;
}

.follow-arrow {
    color: rgba(255, 255, 255, 0.76);
    font-size: 2rem;
    line-height: 1;
}

.follow-link.facebook .follow-icon {
    background: #1266f1;
}

.follow-link.instagram .follow-icon {
    background: linear-gradient(135deg, #6938d3, #f72585, #ff9f1c);
}

.follow-link.whatsapp .follow-icon {
    background: #18b957;
}

.follow-link.youtube .follow-icon {
    background: #ef1d1d;
}

.follow-link.tiktok .follow-icon {
    background: #05070d;
}

.about-panel {
    grid-column: 1 / -1;
}

.about-more[hidden] {
    display: none;
}

.about-panel .btn {
    margin-top: 16px;
}

.hosts-grid {
    margin-top: 14px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.host-card {
    border: 0;
    background: transparent;
    padding: 4px 6px 0;
    text-align: center;
    transition: 0.25s;
}

.host-card:hover {
    transform: translateY(-3px);
}

.host-card img {
    width: 122px;
    height: 122px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 3px solid rgba(255, 140, 0, 0.55);
    box-shadow: 0 0 22px rgba(255, 140, 0, 0.18);
}

.host-card strong,
.host-card small {
    display: block;
    padding: 0;
}

.host-card strong {
    margin: 12px auto 0;
    max-width: 130px;
    font-size: 1rem;
    line-height: 1.2;
}

.host-card small {
    color: var(--primary);
    font-weight: 700;
    margin: 4px 0 0;
}

.panel-news {
    display: grid;
    gap: 10px;
}

.panel-news a {
    text-decoration: none;
    color: var(--text);
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-news a:hover {
    border-color: rgba(255, 140, 0, 0.45);
}

.bottom-player {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 92%);
    z-index: 18;
    min-height: 76px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(100deg, rgba(255, 100, 0, 0.96), rgba(230, 40, 20, 0.96), rgba(255, 80, 0, 0.96));
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    gap: 18px;
    align-items: center;
    padding: 10px 22px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.bottom-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.bottom-brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.72);
    padding: 5px;
    flex: 0 0 auto;
}

.bottom-copy {
    min-width: 0;
}

.bottom-copy strong,
.bottom-copy small {
    display: block;
}

.bottom-copy strong {
    font-size: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.bottom-copy small {
    opacity: 0.9;
    font-size: 0.82rem;
    margin-top: 4px;
}

.bottom-player.is-playing {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 16px 34px rgba(0, 0, 0, 0.32), 0 0 28px rgba(255, 214, 0, 0.18);
}

.bottom-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.skip,
.circle-play {
    border: 0;
    cursor: pointer;
    color: #fff;
}

.skip {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    font-weight: 700;
    font-size: 1.28rem;
    box-shadow: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.skip:hover {
    transform: translateY(-1px) scale(1.03);
    background: rgba(255, 255, 255, 0.14);
}

.circle-play {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-play.is-playing,
.circle-play.is-playing {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 0 20px rgba(255, 255, 255, 0.18), 0 12px 24px rgba(0, 0, 0, 0.2);
}

.circle-play.is-playing {
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 0 20px rgba(255, 255, 255, 0.18), 0 12px 24px rgba(0, 0, 0, 0.2);
    animation: pulsePlay 1.3s ease-in-out infinite;
}

.bottom-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 42px;
}

.bottom-wave span {
    width: 3px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.bottom-wave span:nth-child(2n) {
    height: 22px;
}

.bottom-wave span:nth-child(3n) {
    height: 34px;
}

@keyframes pulsePlay {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

footer {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 26px 0 16px;
}

.footer-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.footer-grid h3 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.5px;
    font-size: 1.7rem;
    margin-bottom: 6px;
}

/* Estilos para QR de comunidad en footer */
.footer-qr {
    display: block;
    width: 86px; /* reducido para que no domine el footer */
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    margin-top: 6px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}
.comunidad-caption {
    margin-top: 8px;
    font-size: 0.92rem;
    font-weight: 600;
}

@media (max-width: 720px) {
    .footer-qr {
        width: 64px; /* más pequeño en móviles */
    }
}

/* Logo pequeño en el footer */
.footer-logo-small {
    width: 48px;
    height: auto;
    display: block;
    margin-bottom: 8px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-grid p,
.footer-grid a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 7px;
    transition: color 0.2s ease;
}

.footer-grid > div:nth-child(3) a {
    color: var(--secondary);
    font-weight: 500;
    cursor: pointer;
}

.footer-grid > div:nth-child(3) a:hover {
    color: #00ffff;
    text-decoration: underline;
}

.social-links {
    display: inline-flex;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 140, 0, 0.14);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.footer-map {
    display: grid;
    gap: 8px;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    min-height: 180px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border: 0;
    display: block;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 118px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #28d146, #14b85d);
    box-shadow: 0 16px 28px rgba(20, 184, 93, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 32px rgba(20, 184, 93, 0.42);
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
}

.whatsapp-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.whatsapp-label {
    display: none;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    z-index: 35;
    border-left: 1px solid var(--line);
    background: rgba(5, 9, 23, 0.98);
    padding: 20px 16px;
    transition: right 0.3s ease;
}

.sidebar.active {
    right: 0;
}

.sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-top h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
}

.sidebar-top button {
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
}

.sidebar-nav {
    margin-top: 14px;
    display: grid;
    gap: 7px;
}

.sidebar-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.02rem;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.sidebar-nav a:hover {
    border-color: rgba(255, 140, 0, 0.55);
    background: rgba(255, 140, 0, 0.08);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

audio {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    animation: revealUp 0.7s ease forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 54px;
        padding-bottom: 44px;
        background-position: 42% center;
    }

    .hero::after {
        left: 78%;
        opacity: 0.5;
    }

    .hero-player {
        max-width: 720px;
        justify-self: start;
    }

    .playlist-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .hosts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .header .btn-live {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-left,
    .panel,
    .highlight-item,
    .hero-player {
        padding: 14px;
    }

    .hero-left {
        padding: 0;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .playlist-section {
        padding: 18px 14px;
    }

    .playlist-track {
        grid-auto-columns: calc((100% - 28px) / 3);
        gap: 14px;
    }

    .carousel-btn-prev {
        left: 4px;
    }

    .carousel-btn-next {
        right: 4px;
    }

    .player-actions {
        width: 100%;
    }

    .bottom-player {
        bottom: 8px;
        min-height: 58px;
        grid-template-columns: auto 1fr;
        gap: 10px;
        padding: 7px 10px;
    }

    .bottom-controls {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .bottom-copy,
    .bottom-wave {
        display: none;
    }

    .bottom-brand img {
        width: 42px;
        height: 42px;
    }

    .circle-play {
        width: 46px;
        height: 46px;
    }

    .bottom-controls .skip {
        width: 34px;
        height: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 104px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-label {
        display: none;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 150px;
    }
}

@media (max-width: 580px) {
    .hero {
        padding-top: 34px;
        background-position: center;
    }

    .hero::after {
        display: none;
    }

    .hero-left h1 {
        font-size: clamp(3.4rem, 18vw, 5rem);
    }

    .hero-features {
        gap: 12px;
    }

    .feature-card strong,
    .feature-card p {
        font-size: 0.6rem;
    }

    .player-cover {
        height: 185px;
    }

    .pill-live {
        top: 28px;
        left: 28px;
    }

    .player-live-row {
        grid-template-columns: 22px 1fr;
    }

    .player-onair {
        grid-column: 2;
    }

    .player-actions {
        grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
        gap: 8px;
    }

    .player-actions .btn-play {
        min-width: 0;
        padding-inline: 12px;
        font-size: 0.78rem;
    }

    .player-actions .skip {
        width: 44px;
        height: 44px;
    }

    .btn-watch {
        right: 10px;
        top: 10px;
        min-height: 38px;
        padding-inline: 12px;
        font-size: 0.72rem;
    }

    .logo-text strong {
        font-size: 1.65rem;
    }

    .logo-text small {
        font-size: 0.68rem;
    }

    .hosts-grid {
        grid-template-columns: 1fr;
    }

    .schedule-list li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .playlist-track {
        grid-auto-columns: calc((100% - 10px) / 2);
        gap: 10px;
    }

    .playlist-card {
        min-height: 214px;
        padding: 7px 7px 10px;
        gap: 7px;
    }

    .playlist-card h3 {
        font-size: 1rem;
    }

    .playlist-card p {
        font-size: 0.64rem;
        line-height: 1.28;
    }

    .playlist-card small {
        font-size: 0.62rem;
    }

    .playlist-rank {
        top: 11px;
        left: 11px;
        width: 32px;
        height: 26px;
        font-size: 0.76rem;
    }

    .playlist-play-btn {
        min-height: 34px;
        padding-inline: 8px;
        font-size: 0.78rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 420px) {
    .playlist-viewport {
        padding-inline: 24px;
    }

    .playlist-track {
        grid-auto-columns: calc((100% - 8px) / 2);
        gap: 8px;
    }

    .playlist-card {
        min-height: 198px;
    }

    .playlist-card img {
        aspect-ratio: 1.08;
    }

    .playlist-card p {
        display: none;
    }
}