/* Schedule-only (shell from site-theme.css) */
:root { --now: #f0b429; }
.tabs { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; }
        .tab {
            border: 1px solid var(--line);
            border-radius: 3px;
            background: rgba(255,255,255,.05);
            color: var(--ink-soft);
            font: inherit;
            font-weight: 900;
            font-size: .86rem;
            min-height: 38px;
            padding: 0 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .tab.on, .tab:hover {
            background: rgba(61, 95, 154,.22);
            color: #fff;
            border-color: rgba(143, 164, 200,.55);
        }
        .tab small { opacity: .75; font-weight: 800; }

        /* Live timeline */
        .timeline {
            margin: 0 0 16px;
            padding: 12px 14px 14px;
            border: 1px solid var(--line);
            border-radius: 4px;
            background: rgba(6,26,35,.65);
        }
        .timeline-top {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 8px;
        }
        .timeline-top strong {
            font-size: .78rem;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--purple-2);
        }
        .timeline-clock {
            font-weight: 950;
            font-size: .95rem;
            color: #fff;
        }
        .timeline-clock .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ef4444;
            margin-right: 6px;
            box-shadow: 0 0 0 0 rgba(239,68,68,.55);
            animation: pulse 1.6s ease infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(239,68,68,.45); }
            70% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
            100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
        }
        .timeline-track-wrap { position: relative; padding: 18px 0 4px; }
        .timeline-rail {
            position: relative;
            height: 10px;
            border-radius: 999px;
            background: rgba(229,248,252,.14);
            overflow: hidden;
        }
        .timeline-fill {
            position: absolute;
            inset: 0 auto 0 0;
            width: 0%;
            background: linear-gradient(90deg, rgba(61, 95, 154,.55), var(--purple-2));
            border-radius: inherit;
            pointer-events: none;
        }
        .timeline-slider {
            -webkit-appearance: none;
            appearance: none;
            position: absolute;
            left: 0;
            right: 0;
            top: 12px;
            width: 100%;
            height: 22px;
            margin: 0;
            background: transparent;
            cursor: pointer;
            z-index: 2;
        }
        .timeline-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--now);
            border: 2px solid #1a1200;
            box-shadow: 0 0 0 3px rgba(240,180,41,.35);
            cursor: grab;
        }
        .timeline-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--now);
            border: 2px solid #1a1200;
            box-shadow: 0 0 0 3px rgba(240,180,41,.35);
            cursor: grab;
        }
        .timeline-slider::-webkit-slider-runnable-track { height: 10px; background: transparent; }
        .timeline-slider::-moz-range-track { height: 10px; background: transparent; }
        .timeline-labels {
            display: flex;
            justify-content: space-between;
            gap: 8px;
            margin-top: 6px;
            color: var(--ink-soft);
            font-size: .72rem;
            font-weight: 800;
        }
        .timeline-now-label {
            margin-top: 8px;
            color: var(--ink-soft);
            font-size: .82rem;
            font-weight: 750;
        }
        .timeline-now-label b { color: var(--now); font-weight: 950; }
        .btn-now {
            border: 1px solid rgba(240,180,41,.45);
            background: rgba(240,180,41,.12);
            color: var(--now);
            font: inherit;
            font-weight: 900;
            font-size: .78rem;
            min-height: 30px;
            padding: 0 10px;
            border-radius: 3px;
            cursor: pointer;
        }

        /* 2-column layout - fill content width */
        .cols {
            display: grid;
            grid-template-columns: minmax(260px, 1fr) minmax(0, 1.75fr);
            gap: 14px;
            align-items: start;
            width: 100%;
        }
        .col {
            border: 1px solid var(--line);
            border-radius: 4px;
            background: rgba(21, 29, 46,.78);
            min-width: 0;
            overflow: hidden;
        }
        .col-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 10px 12px;
            background: var(--chrome);
            color: #fff;
            border-bottom: 1px solid var(--line);
        }
        .col-head strong { font-size: .98rem; }
        .col-head span {
            font-size: .72rem;
            font-weight: 900;
            letter-spacing: .05em;
            text-transform: uppercase;
            color: rgba(255,255,255,.75);
        }
        .col-body {
            max-height: min(70vh, 720px);
            overflow: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--purple) rgba(143, 164, 200,.14);
        }
        .col-body::-webkit-scrollbar { width: 8px; }
        .col-body::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 99px; }
        .timeline { width: 100%; }

        .row {
            display: grid;
            grid-template-columns: minmax(84px, 100px) minmax(0, 1fr);
            gap: 8px 10px;
            padding: 10px 12px;
            border-bottom: 1px solid rgba(143, 164, 200,.1);
            border-left: 3px solid transparent;
            transition: background .15s ease, border-color .15s ease, opacity .15s ease;
            align-items: center;
        }
        .row.is-dj-col {
            grid-template-columns: minmax(84px, 100px) 48px minmax(0, 1fr);
        }
        .row:last-child { border-bottom: 0; }
        .row time {
            color: var(--purple);
            font-size: .8rem;
            font-weight: 950;
            line-height: 1.25;
        }
        .row .dj-logo {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            object-fit: contain;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(143, 164, 200,.2);
            padding: 3px;
        }
        .row .dj-logo-fallback {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: grid;
            place-items: center;
            background: rgba(61, 95, 154,.12);
            border: 1px solid rgba(143, 164, 200,.22);
            color: var(--purple-2);
            font-size: .78rem;
            font-weight: 950;
        }
        .row .title {
            margin: 0;
            font-size: .94rem;
            font-weight: 900;
            line-height: 1.25;
        }
        .row .meta {
            margin: 3px 0 0;
            color: var(--ink-soft);
            font-size: .78rem;
            font-weight: 700;
        }
        .row.is-past { opacity: .48; }
        .row.is-now {
            background: rgba(240,180,41,.12);
            border-left-color: var(--now);
            opacity: 1;
        }
        .row.is-next {
            background: rgba(61, 95, 154,.1);
            border-left-color: var(--purple-2);
            opacity: 1;
        }
        .row.is-dj-col .title { color: var(--purple-2); }
        .tag {
            display: inline-block;
            margin-left: 5px;
            padding: 1px 6px;
            border-radius: 99px;
            border: 1px solid rgba(143, 164, 200,.35);
            font-size: .66rem;
            font-weight: 900;
            letter-spacing: .04em;
            text-transform: uppercase;
            vertical-align: middle;
            color: var(--purple-2);
        }
        .tag.now {
            border-color: rgba(240,180,41,.55);
            color: var(--now);
            background: rgba(240,180,41,.12);
        }
        .tag.nsfw { border-color: rgba(255,120,140,.4); color: #ffb7c5; }
        .empty {
            padding: 16px;
            color: var(--ink-soft);
            font-weight: 700;
            margin: 0;
        }
        .foot {
            margin: 14px 0 0;
            color: var(--ink-soft);
            font-size: .8rem;
            font-weight: 700;
        }

        @media (max-width: 860px) {
            body { background-attachment: scroll; overflow-x: hidden; }
            .cols { grid-template-columns: 1fr; }
            .col-body { max-height: 420px; }
            
            .item { grid-template-columns: 1fr; gap: 4px; }
            .timeline { padding: 10px; }
            .timeline-slider { height: 28px; }
            .tabs { gap: 6px; }
            .tab { min-height: 40px; padding: 0 12px; font-size: .82rem; }
            
            .row { grid-template-columns: minmax(72px, 88px) minmax(0, 1fr); }
        }
        @media (prefers-reduced-motion: reduce) {
            .timeline-clock .live-dot { animation: none; }
            .row { transition: none; }
        }
.tab {
  border: 2px solid rgba(143, 164, 200,.22) !important;
  border-radius: 4px !important;
  background: rgba(61, 95, 154,.1) !important;
}
.tab.on, .tab:hover {
  background: rgba(61, 95, 154,.28) !important;
  border-color: rgba(143, 164, 200,.5) !important;
  color: #fff !important;
}
.timeline, .col {
  border: 2px solid rgba(143, 164, 200,.26) !important;
  background: rgba(21, 29, 46,.88) !important;
  border-radius: 0 !important;
}
.col-head {
  background: var(--chrome) !important;
  color: #fff !important;
}
.btn-now {
  border: 1px solid rgba(240,180,41,.45);
  background: rgba(240,180,41,.12);
  color: var(--now);
  font: inherit;
  font-weight: 900;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 4px;
  cursor: pointer;
}