:root {
    --bg: #06060a;
    --bg-soft: #0b0a11;
    --surface: #100f18;
    --surface-2: #161421;
    --surface-3: #1b1827;
    --text: #f7f4ff;
    --muted: #9c97aa;
    --cyan: #25e7ff;
    --cyan-soft: rgba(37, 231, 255, .14);
    --pink: #ff3fae;
    --pink-soft: rgba(255, 63, 174, .14);
    --purple: #965cff;
    --green: #68ffb1;
    --border: rgba(255, 255, 255, .10);
    --border-bright: rgba(255, 255, 255, .17);
    --shadow: 0 28px 80px rgba(0, 0, 0, .42);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 85% 0%, rgba(150, 92, 255, .12), transparent 34rem),
        radial-gradient(circle at 0% 42%, rgba(37, 231, 255, .07), transparent 32rem),
        var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .035;
    background-image:
        linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
    background-size: 6px 6px;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(6, 6, 10, .84);
    backdrop-filter: blur(18px);
}

.nav {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 12px;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border: 1px solid rgba(37, 231, 255, .55);
    background: linear-gradient(135deg, rgba(37,231,255,.10), rgba(255,63,174,.12));
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -1px;
    box-shadow: 0 0 28px rgba(37, 231, 255, .10);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255,255,255,.08);
}

.brand-copy strong {
    display: block;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -1px;
}

.brand-copy strong span {
    color: var(--pink);
}

.brand-copy small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    position: relative;
    padding: 29px 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: color .2s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 1px;
    background: var(--cyan);
    transition: right .2s ease;
}

.menu a:hover,
.menu a.active {
    color: var(--text);
}

.menu a:hover::after,
.menu a.active::after {
    right: 0;
}

.header-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 63, 174, .30);
    color: #ff8bcf;
    background: rgba(255, 63, 174, .06);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* COMMON */

.live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #ff4668;
    box-shadow: 0 0 14px rgba(255, 70, 104, .85);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.6px;
}

.section {
    padding: 112px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    align-items: end;
    gap: 50px;
    margin-bottom: 42px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;
    letter-spacing: -3.5px;
}

.heading-description {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

/* HERO */

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 60% 40%, rgba(150,92,255,.08), transparent 28rem),
        linear-gradient(180deg, rgba(255,255,255,.015), transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .27;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,.2) 3px
    );
}

.hero-orb {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .10;
    pointer-events: none;
}

.orb-cyan {
    left: -260px;
    bottom: 30px;
    background: var(--cyan);
}

.orb-pink {
    right: -260px;
    top: 60px;
    background: var(--pink);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 90px;
    padding-bottom: 55px;
}

.hero-copy {
    max-width: 790px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.4px;
}

.kicker-line {
    width: 55px;
    height: 1px;
    margin-left: 3px;
    background: var(--cyan);
    opacity: .45;
}

.hero h1 {
    margin: 0;
    font-size: clamp(76px, 11vw, 154px);
    line-height: .80;
    letter-spacing: -9px;
    font-weight: 900;
}

.hero h1 span {
    color: var(--pink);
    text-shadow:
        0 0 30px rgba(255,63,174,.24),
        8px 8px 0 rgba(150,92,255,.10);
}

.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 12px;
    color: var(--text);
    font-size: 18px;
}

.hero-tagline strong {
    font-weight: 700;
}

.hero-tagline strong + strong::before {
    content: "/";
    margin-right: 14px;
    color: var(--pink);
}

.hero-text {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.primary-button,
.secondary-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
    transition: .2s ease;
}

.primary-button {
    border: 1px solid var(--cyan);
    background: var(--cyan);
    color: #05070a;
    box-shadow: 0 0 30px rgba(37,231,255,.12);
}

.primary-button:hover {
    background: transparent;
    color: var(--cyan);
    box-shadow: 0 0 35px rgba(37,231,255,.18);
}

.button-icon {
    font-size: 12px;
}

.secondary-button {
    border: 1px solid var(--border-bright);
    color: var(--muted);
}

.secondary-button:hover {
    border-color: var(--pink);
    color: var(--text);
}

.secondary-button span {
    color: var(--pink);
    font-size: 14px;
}

.hero-console {
    width: 100%;
    border: 1px solid var(--border-bright);
    background: rgba(13,12,20,.88);
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.console-top,
.console-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 14px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.console-top {
    border-bottom: 1px solid var(--border);
}

.console-status {
    color: var(--green);
}

.console-status i {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 9px var(--green);
}

.console-screen {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 25px;
    background:
        radial-gradient(circle at 60% 45%, rgba(255,63,174,.15), transparent 12rem),
        linear-gradient(135deg, rgba(37,231,255,.10), transparent 55%),
        #090a10;
}

.scanlines {
    position: absolute;
    inset: 0;
    opacity: .15;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 4px,
        rgba(255,255,255,.25) 5px
    );
}

.screen-label {
    position: relative;
    color: var(--cyan);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.screen-title {
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    color: var(--text);
    font-size: 42px;
    font-weight: 900;
    line-height: .82;
    letter-spacing: -3px;
}

.screen-title span {
    color: var(--pink);
}

.screen-wave {
    position: relative;
    height: 45px;
    display: flex;
    align-items: end;
    gap: 3px;
}

.screen-wave i {
    width: 6px;
    height: 30%;
    background: var(--cyan);
    animation: eq .8s ease-in-out infinite alternate;
}

.screen-wave i:nth-child(2),
.screen-wave i:nth-child(10) { animation-delay: .12s; }
.screen-wave i:nth-child(3),
.screen-wave i:nth-child(8) { animation-delay: .25s; }
.screen-wave i:nth-child(4),
.screen-wave i:nth-child(12) { animation-delay: .38s; }
.screen-wave i:nth-child(5),
.screen-wave i:nth-child(9) { animation-delay: .18s; }
.screen-wave i:nth-child(6),
.screen-wave i:nth-child(13) { animation-delay: .31s; }

.console-bottom {
    border-top: 1px solid var(--border);
}

.hero-ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background: rgba(8,7,12,.78);
}

.ticker-track {
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 11px 0;
    color: #6e697b;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.ticker-track b {
    color: var(--pink);
}

/* LIVE */

.live-section {
    background:
        linear-gradient(90deg, rgba(37,231,255,.025), transparent 35%, rgba(255,63,174,.025)),
        var(--bg);
}

.live-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, .65fr);
    gap: 20px;
}

.player-card,
.now-card,
.schedule-card {
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(22,20,33,.92), rgba(10,10,16,.96));
    box-shadow: var(--shadow);
}

.player-card {
    overflow: hidden;
}

.player-top {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 20px;
    border-bottom: 1px solid var(--border);
}

.live-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ff7cbf;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.station-name {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.caster-player {
    min-height: 350px;
    display: grid;
    place-items: center;
    padding: 30px;
    background:
        radial-gradient(circle at 50% 50%, rgba(37,231,255,.035), transparent 18rem),
        #0b0a11;
}

.cstrEmbed {
    width: 100%;
}

.player-footer {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-top: 1px solid var(--border);
    color: #777183;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.player-footer span:first-child {
    color: var(--green);
}

.status-pulse {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 9px var(--green);
}

.now-card {
    padding: 20px;
}

.now-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.card-label,
.now-label {
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.mini-live {
    padding: 4px 6px;
    border: 1px solid rgba(255,63,174,.3);
    color: #ff7cbf;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1px;
}

.album-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin: 16px 0 18px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 70% 30%, rgba(255,63,174,.30), transparent 35%),
        radial-gradient(circle at 20% 80%, rgba(37,231,255,.22), transparent 42%),
        #111522;
}

.album-grid {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
    background-size: 25px 25px;
}

.album-placeholder > span {
    position: relative;
    color: var(--cyan);
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -5px;
    text-shadow: 0 0 30px rgba(37,231,255,.25);
}

.album-placeholder small {
    position: absolute;
    right: 12px;
    bottom: 10px;
    color: #ff7cbf;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 2px;
}

.now-info h3 {
    margin: 7px 0 8px;
    font-size: 24px;
    line-height: 1.03;
    letter-spacing: -1px;
}

.now-info p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.equalizer {
    height: 32px;
    display: flex;
    align-items: end;
    gap: 4px;
    margin-top: 22px;
}

.equalizer i {
    display: block;
    width: 5px;
    height: 30%;
    background: var(--cyan);
    animation: eq .8s infinite alternate ease-in-out;
}

.equalizer i:nth-child(2) { animation-delay: .1s; }
.equalizer i:nth-child(3) { animation-delay: .25s; }
.equalizer i:nth-child(4) { animation-delay: .4s; }
.equalizer i:nth-child(5) { animation-delay: .15s; }
.equalizer i:nth-child(6) { animation-delay: .3s; }
.equalizer i:nth-child(7) { animation-delay: .05s; }
.equalizer i:nth-child(8) { animation-delay: .2s; }

@keyframes eq {
    from { height: 18%; }
    to { height: 100%; }
}

/* SCHEDULE */

.schedule-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255,255,255,.018), transparent),
        var(--bg-soft);
}

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

.schedule-card {
    position: relative;
    min-height: 265px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}

.schedule-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 2px;
    background: var(--purple);
}

.schedule-card.featured::before {
    background: var(--cyan);
}

.schedule-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-bright);
}

.schedule-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.schedule-meta .day {
    color: var(--pink);
}

.schedule-meta .time {
    color: var(--cyan);
}

.schedule-number {
    margin: 25px 0 18px;
    color: rgba(255,255,255,.07);
    font-size: 52px;
    font-weight: 900;
    line-height: .8;
    letter-spacing: -4px;
}

.schedule-content {
    margin-top: auto;
    max-width: 300px;
}

.schedule-type {
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.schedule-content h3 {
    margin: 5px 0 5px;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -1px;
}

.schedule-content p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.schedule-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--cyan);
    font-size: 18px;
}

.schedule-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: #777183;
    font-size: 9px;
    letter-spacing: .4px;
}

.note-symbol {
    color: var(--pink);
    font-size: 15px;
}

/* ABOUT */

.about-section {
    background:
        radial-gradient(circle at 75% 50%, rgba(255,63,174,.07), transparent 25rem),
        var(--bg);
}

.about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 100px;
    align-items: start;
}

.about-title h2 {
    margin: 0;
    font-size: clamp(48px, 6vw, 80px);
    line-height: .88;
    letter-spacing: -5px;
}

.about-title h2 span {
    color: var(--pink);
}

.about-lead {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 45px;
}

.about-stats div {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.about-stats strong {
    display: block;
    color: var(--cyan);
    font-size: 28px;
    line-height: 1;
}

.about-stats span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid var(--border);
    background: #050509;
}

.footer-content {
    min-height: 105px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    gap: 20px;
    color: #6f6a79;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.small-mark {
    width: 34px;
    height: 34px;
    font-size: 10px;
}

.footer-brand strong {
    display: block;
    color: var(--text);
    font-size: 12px;
    letter-spacing: 0;
}

.footer-brand div > span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 7px;
}

.footer-center {
    text-align: center;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .nav {
        grid-template-columns: 1fr auto;
    }

    .menu {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 280px;
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(70px, 12vw, 120px);
    }

    .live-layout {
        grid-template-columns: 1fr;
    }

    .now-card {
        display: grid;
        grid-template-columns: 180px 1fr;
        grid-template-rows: auto 1fr auto;
        gap: 0 22px;
    }

    .now-card-header {
        grid-column: 1 / -1;
    }

    .album-placeholder {
        grid-row: 2 / 4;
        margin-bottom: 0;
    }

    .now-info {
        align-self: center;
    }

    .equalizer {
        align-self: end;
        margin-top: 10px;
    }

    .about {
        gap: 50px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 30px, var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .header-live {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: clamp(70px, 20vw, 120px);
        letter-spacing: -7px;
    }

    .hero-console {
        max-width: 420px;
        justify-self: center;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .schedule-card {
        min-height: 230px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 25px 0;
    }

    .footer-center {
        text-align: left;
    }

    .footer-right {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .brand-copy strong {
        font-size: 17px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 22vw;
        letter-spacing: -5px;
    }

    .hero-tagline {
        font-size: 15px;
        gap: 8px;
    }

    .hero-tagline strong + strong::before {
        margin-right: 8px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .console-screen {
        min-height: 240px;
    }

    .section-heading h2 {
        font-size: 43px;
    }

    .caster-player {
        min-height: 300px;
        padding: 18px;
    }

    .now-card {
        display: block;
    }

    .album-placeholder {
        width: 100%;
        margin: 16px 0;
    }

    .equalizer {
        margin-top: 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-title h2 {
        font-size: 54px;
    }
}

/* ============================================================
   PROGRAMACION DINAMICA
   ============================================================ */

.schedule-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 22px;
}


.schedule-current,
.schedule-next {
    padding: 24px;
    border: 1px solid var(--border);
    background: linear-gradient( 145deg, rgba(23, 21, 34, 0.95), rgba(12, 11, 19, 0.95) );
    box-shadow: var(--shadow);
}


.schedule-current {
    border-color: rgba(39, 230, 255, 0.28);
}


.schedule-next {
    border-color: rgba(255, 63, 187, 0.22);
}


.schedule-mini-label {
    display: block;
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}


.schedule-current strong,
.schedule-next strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 22px;
}


.schedule-current > span:last-child,
.schedule-next > span:last-child {
    color: var(--muted);
    font-size: 13px;
}


.schedule-card {
    position: relative;
    overflow: hidden;
}


    .schedule-card.is-live {
        border-color: rgba(97, 255, 177, 0.45);
        box-shadow: 0 0 30px rgba(97, 255, 177, 0.08), var(--shadow);
    }


        .schedule-card.is-live::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: #61ffb1;
        }


.schedule-live {
    display: inline-block;
    margin-top: 18px;
    padding: 5px 9px;
    border: 1px solid rgba(97, 255, 177, 0.35);
    color: #61ffb1;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}


.schedule-empty {
    grid-column: 1 / -1;
}


.schedule-status {
    margin-top: 18px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


@media (max-width: 700px) {

    .schedule-highlight {
        grid-template-columns: 1fr;
    }
}
