/* Open Decks — club / festival screen aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Bebas+Neue&family=Outfit:wght@400;600;700&display=swap');

:root {
    color-scheme: dark;
    --void: #0c0614;
    --void2: #140a22;
    --ink: #fff8f2;
    --mute: #d4c4e8;
    --content-bg: rgba(12, 6, 22, 0.94);
    --content-blur: blur(14px);
    --cyan: #00f5ff;
    --magenta: #ff2bd6;
    --violet: #b026ff;
    --lime: #39ff14;
    --accent-live: #39ff14;
    --void-glow-a: rgba(176, 38, 255, 0.35);
    --void-glow-b: rgba(34, 211, 238, 0.28);
    --grid-a: rgba(0, 245, 255, 0.07);
    --grid-b: rgba(255, 43, 214, 0.06);
    --panel: rgba(12, 4, 28, 0.72);
    --line: rgba(255, 255, 255, 0.12);
    --glow-cyan: 0 0 24px rgba(0, 245, 255, 0.45), 0 0 60px rgba(0, 245, 255, 0.15);
    --glow-mag: 0 0 24px rgba(255, 43, 214, 0.45), 0 0 60px rgba(255, 43, 214, 0.15);
    --font-display: 'Bebas Neue', 'Audiowide', sans-serif;
    --font-head: 'Outfit', sans-serif;
    --font-mono: 'Outfit', sans-serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--ink);
    background: var(--void);
    position: relative;
    overflow-x: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
}

/* ---- animated backdrop layers ---- */
.laser-stage {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 120% 80% at 50% 100%, var(--void-glow-a), transparent 55%),
        radial-gradient(ellipse 80% 50% at 20% 0%, var(--void-glow-b), transparent 50%),
        radial-gradient(ellipse 70% 45% at 85% 5%, color-mix(in srgb, var(--magenta) 14%, transparent), transparent 48%),
        linear-gradient(180deg, #030008 0%, #0a0018 45%, #050010 100%);
}

#laser-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.42;
}

body.bigscreen #laser-canvas {
    opacity: 0.28;
}

.laser-grid {
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -8%;
    height: 58%;
    transform: perspective(280px) rotateX(68deg);
    transform-origin: center bottom;
    background:
        linear-gradient(90deg, var(--grid-a) 1px, transparent 1px),
        linear-gradient(0deg, var(--grid-b) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to top, black 0%, transparent 88%);
    animation: grid-drift 18s linear infinite;
    opacity: 0.55;
}

@keyframes grid-drift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 48px 96px, 0 96px; }
}

.laser-fog {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        );
    opacity: 0.35;
    mix-blend-mode: overlay;
}

.laser-fog::before,
.laser-fog::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 40%;
    left: -20%;
    filter: blur(40px);
    animation: fog-pan 14s ease-in-out infinite alternate;
}

.laser-fog::before {
    top: 10%;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--cyan) 8%, transparent), transparent);
}

.laser-fog::after {
    bottom: 15%;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--magenta) 10%, transparent), transparent);
    animation-delay: -7s;
}

@keyframes fog-pan {
    from { transform: translateX(-6%) skewX(-4deg); }
    to { transform: translateX(6%) skewX(4deg); }
}

.laser-edge {
    position: absolute;
    inset: 0;
    box-shadow:
        inset 0 0 120px rgba(176, 38, 255, 0.15),
        inset 0 0 40px rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ---- content sits above stage ---- */
.shell,
.wall {
    position: relative;
    z-index: 1;
}

/* ---- typography ---- */
.hero .tag,
.head .tag-line {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.hero h1,
.head h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 8vw, 4.8rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(92deg, #fff 0%, var(--cyan) 35%, var(--magenta) 70%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: title-shine 6s linear infinite;
    filter: drop-shadow(0 0 28px rgba(255, 43, 214, 0.35));
}

@keyframes title-shine {
    to { background-position: 200% center; }
}

.hero .lede,
.head .lede {
    margin: 0.65rem 0 0;
    max-width: 52ch;
    color: var(--mute);
    font-size: 0.95rem;
    line-height: 1.55;
}

.scroll-hint {
    margin: 0.5rem 0 0;
    max-width: 52ch;
    color: var(--cyan);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* ---- lite mode: CSS lasers (desktop / projector — no canvas GPU load) ---- */
.laser-stage.laser-lite #laser-canvas {
    display: none;
}

.laser-stage.laser-lite::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8%;
    width: 180vmax;
    height: 120vmax;
    transform: translateX(-50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 43, 214, 0.14) 18deg,
        transparent 36deg,
        rgba(0, 245, 255, 0.12) 54deg,
        transparent 72deg,
        rgba(176, 38, 255, 0.1) 90deg,
        transparent 120deg,
        rgba(255, 43, 214, 0.12) 200deg,
        transparent 280deg
    );
    mask-image: radial-gradient(ellipse 55% 40% at 50% 100%, black 0%, transparent 72%);
    animation: laser-conic 28s linear infinite;
    pointer-events: none;
}

.laser-stage.laser-lite::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 42%,
        rgba(0, 245, 255, 0.04) 50%,
        rgba(255, 43, 214, 0.05) 52%,
        transparent 58%
    );
    animation: laser-sweep-css 9s ease-in-out infinite;
    pointer-events: none;
}

@keyframes laser-conic {
    to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes laser-sweep-css {
    0%, 100% { transform: translateY(-8%); opacity: 0.5; }
    50% { transform: translateY(8%); opacity: 1; }
}

/* ---- panels (booking page) ---- */
.shell {
    width: min(1100px, 94vw);
    margin: 0 auto;
    padding: 2.5rem 0 4rem;
}

.panel {
    margin-top: 1.5rem;
    background: var(--content-bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.35rem 1.4rem;
    backdrop-filter: var(--content-blur);
    box-shadow:
        0 0 0 1px rgba(0, 245, 255, 0.06) inset,
        0 20px 50px rgba(0, 0, 0, 0.45),
        var(--glow-cyan);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.panel h2 {
    margin: 0 0 1rem;
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--magenta);
    text-shadow: var(--glow-mag);
}

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

label, fieldset {
    display: grid;
    gap: 0.45rem;
    color: var(--mute);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

input, select, button {
    border-radius: 2px;
    border: 1px solid rgba(0, 245, 255, 0.25);
    background: rgba(0, 0, 0, 0.45);
    color: var(--ink);
    padding: 0.7rem 0.85rem;
    font: inherit;
    font-family: var(--font-mono);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--magenta);
    box-shadow: 0 0 0 2px rgba(255, 43, 214, 0.2), var(--glow-mag);
}

button {
    cursor: pointer;
}

button:hover {
    border-color: var(--cyan);
    transform: translateY(-1px);
    box-shadow: var(--glow-cyan);
}

form button[type="submit"] {
    margin-top: 1rem;
    border: 0;
    background: linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan));
    background-size: 200% 100%;
    color: #050008;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: btn-flow 4s ease infinite;
}

@keyframes btn-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.duration {
    border: 1px solid rgba(255, 43, 214, 0.2);
    border-radius: 2px;
    padding: 0.65rem;
}

.duration label {
    display: inline-flex;
    margin-right: 0.8rem;
    align-items: center;
    gap: 0.35rem;
}

.feedback { min-height: 1.2rem; margin-top: 0.9rem; }
.feedback[data-kind="error"] { color: #ff6b8a; text-shadow: 0 0 12px rgba(255, 107, 138, 0.5); }
.feedback[data-kind="success"] { color: var(--lime); text-shadow: 0 0 12px rgba(57, 255, 20, 0.4); }
.feedback[data-kind="info"] { color: var(--cyan); }

.note {
    margin: 0.85rem 0 0;
    color: var(--mute);
    font-size: 0.8rem;
}

.lineup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

#lineup .slot,
.lineup .slot {
    border: 1px solid rgba(0, 245, 255, 0.18);
    border-radius: 2px;
    padding: 0.95rem 1rem;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 43, 214, 0.04), rgba(0, 245, 255, 0.03));
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.lineup { margin-top: 1rem; display: grid; gap: 0.75rem; }

.slot h3 { margin: 0 0 0.25rem; font-family: var(--font-head); letter-spacing: 0.06em; }
.slot p { margin: 0.15rem 0; color: var(--mute); }
.slot .meta { font-size: 0.84rem; }

.cancel-btn {
    margin-top: 0.6rem;
    max-width: 140px;
    border-color: rgba(255, 43, 214, 0.45);
    background: rgba(255, 43, 214, 0.08);
    color: var(--magenta);
}

.pill {
    display: inline-block;
    margin-left: 0.4rem;
    font-size: 0.68rem;
    border-radius: 0;
    padding: 0.12rem 0.45rem;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

dialog {
    border: 1px solid rgba(0, 245, 255, 0.35);
    border-radius: 2px;
    background: rgba(8, 2, 20, 0.96);
    color: var(--ink);
    width: min(660px, 92vw);
    box-shadow: var(--glow-cyan), var(--glow-mag);
}

dialog::backdrop {
    background: rgba(3, 0, 8, 0.82);
    backdrop-filter: blur(6px);
}

.suggestion-list { display: grid; gap: 0.55rem; }
.suggestion { text-align: left; }
.suggestion-box input[type="password"] { width: 100%; margin: 0.4rem 0 0.2rem; }
.suggestion-box menu {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    padding: 0;
    margin-top: 0.7rem;
}

.empty { color: var(--mute); }

/* ---- big screen layout ---- */
body.bigscreen {
    overflow: hidden;
}

.wall {
    height: 100vh;
    max-height: 100vh;
    padding: 2.2vh 2.4vw;
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
    gap: 1.4vh;
    background: linear-gradient(180deg, rgba(12, 6, 22, 0.72) 0%, rgba(12, 6, 22, 0.88) 35%, rgba(12, 6, 22, 0.94) 100%);
    backdrop-filter: var(--content-blur);
    border-radius: 12px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
}

/* Tighter chrome when many DJs need room on the projector */
.wall--busy {
    padding: 1.4vh 2vw;
    gap: 0.9vh;
}

.wall--busy .head h1 {
    font-size: clamp(1.6rem, 5vw, 3rem);
}

.wall--busy .head .lede,
.wall--busy .head .tag-line {
    display: none;
}

.wall--busy .book-cta {
    padding: 0.55vh 1vw;
}

.wall--busy .book-cta__label {
    font-size: clamp(0.7rem, 1.2vw, 1rem);
}

.wall--busy .book-cta__link {
    font-size: clamp(0.85rem, 1.6vw, 1.35rem);
}

.wall--busy .now {
    padding: 0.7vh 1vw;
}

.wall--busy .now strong {
    font-size: clamp(0.85rem, 1.6vw, 1.35rem);
}

.wall .dj,
.wall .now strong,
.wall .book-cta__label {
    text-shadow:
        0 0 12px rgba(0, 0, 0, 0.95),
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 0 1px rgba(0, 0, 0, 1);
}

.book-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem 1.2rem;
    padding: 1.1vh 1.4vw;
    border: 1px solid color-mix(in srgb, var(--cyan) 35%, transparent);
    background: linear-gradient(90deg, color-mix(in srgb, var(--magenta) 12%, transparent), color-mix(in srgb, var(--cyan) 8%, transparent));
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    box-shadow: var(--glow-cyan);
    animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: var(--glow-cyan); }
    50% { box-shadow: var(--glow-mag), var(--glow-cyan); }
}

.book-cta__label {
    font-family: var(--font-head);
    font-size: clamp(0.85rem, 1.6vw, 1.35rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
}

.book-cta__link {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.2vw, 1.85rem);
    letter-spacing: 0.08em;
    color: var(--cyan);
    text-decoration: none;
    text-shadow: var(--glow-cyan);
    border-bottom: 2px solid var(--magenta);
    padding-bottom: 0.1em;
    transition: color 0.15s, text-shadow 0.15s;
}

.book-cta__link:hover {
    color: var(--magenta);
    text-shadow: var(--glow-mag);
}

.now {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid color-mix(in srgb, var(--accent-live) 35%, transparent);
    border-radius: 2px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--accent-live) 10%, transparent), color-mix(in srgb, var(--cyan) 6%, transparent));
    padding: 1.2vh 1.3vw;
    box-shadow: 0 0 30px color-mix(in srgb, var(--accent-live) 12%, transparent);
}

.now strong {
    font-family: var(--font-head);
    font-size: clamp(1rem, 2.2vw, 2rem);
    letter-spacing: 0.06em;
    color: var(--accent-live);
    text-shadow: 0 0 20px color-mix(in srgb, var(--accent-live) 45%, transparent);
}

.now span,
.foot {
    color: var(--mute);
    font-family: var(--font-mono);
}

#clock {
    font-size: clamp(1rem, 2vw, 1.8rem);
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.lineup-grid {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--cyan) 40%, transparent) transparent;
    -webkit-overflow-scrolling: touch;
}

.lineup-grid .slot {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: var(--content-bg);
    padding: 1.2vh 1.1vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.35vh;
    flex: 0 0 auto;
    min-height: auto;
    width: 100%;
    overflow: visible;
}

/* 4+ DJs (or 3+ on portrait): tighter rows — never squash below text height */
.lineup-grid--compact {
    gap: 0.55vh;
}

.lineup-grid--compact .slot {
    padding: 0.65vh 1vw;
}

.lineup-grid--compact .slot-label {
    margin-bottom: 0;
    font-size: clamp(0.55rem, 0.85vw, 0.75rem);
}

.lineup-grid--compact .time {
    font-size: clamp(0.8rem, 1.2vw, 1.2rem);
}

.lineup-grid--compact .dj {
    font-size: clamp(0.95rem, 1.8vw, 1.65rem);
}

.lineup-grid--compact .meta {
    font-size: clamp(0.65rem, 1vw, 0.85rem);
    margin-top: 0.15rem;
}

/* 7+ DJs: two columns so everyone fits on one screen */
.lineup-grid--dense {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5vh 0.8vw;
    align-content: start;
}

.lineup-grid--dense .slot {
    padding: 0.5vh 0.85vw;
}

.lineup-grid--dense .dj {
    font-size: clamp(0.85rem, 1.5vw, 1.35rem);
    line-height: 1.25;
}

.lineup-grid--dense .meta {
    display: none;
}

.lineup-grid .slot.completed {
    opacity: 0.55;
    order: 2;
}

.lineup-grid .slot.upcoming {
    order: 0;
}

.lineup-grid .slot.live {
    order: -1;
    border-color: var(--accent-live);
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--accent-live) 50%, transparent) inset,
        0 0 28px color-mix(in srgb, var(--accent-live) 25%, transparent);
    animation: live-slot 1.4s ease-in-out infinite;
}

@keyframes live-slot {
    0%, 100% { border-color: color-mix(in srgb, var(--accent-live) 55%, transparent); }
    50% { border-color: color-mix(in srgb, var(--cyan) 65%, transparent); }
}

.lineup-grid .slot-label {
    font-family: var(--font-head);
    font-size: clamp(0.65rem, 1vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 0.25rem;
}

.lineup-grid .slot.live .slot-label {
    color: var(--accent-live);
}

.lineup-grid .slot.completed .slot-label {
    color: var(--mute);
}

.lineup-grid .time {
    font-family: var(--font-head);
    font-size: clamp(0.95rem, 1.55vw, 1.65rem);
    font-weight: 700;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    white-space: nowrap;
    line-height: 1.15;
    letter-spacing: 0.03em;
    font-variant-numeric: tabular-nums;
    width: 100%;
}

.lineup-grid .time .time-ampm {
    font-size: 0.82em;
    opacity: 0.92;
}

.lineup-grid .time .time-sep {
    margin: 0 0.2em;
    opacity: 0.75;
}

.lineup-grid .dj {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.6vw, 2.5rem);
    margin: 0;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: var(--ink);
    overflow: visible;
    word-break: break-word;
}

.lineup-grid .slot-body {
    min-width: 0;
    flex: 0 0 auto;
    overflow: visible;
}

/* Portrait / low-res projectors (768×1024 etc.) — scale by height, never clip names */
.wall--portrait {
    padding: 1vh 1.5vw;
    gap: 0.65vh;
}

.wall--portrait .head h1 {
    font-size: clamp(1.35rem, 4.5vh, 2.4rem);
    letter-spacing: 0.08em;
}

.wall--portrait .head .lede,
.wall--portrait .head .tag-line {
    display: none;
}

.wall--portrait .book-cta {
    padding: 0.45vh 0.8vw;
    gap: 0.35rem 0.6rem;
}

.wall--portrait .book-cta__label:last-of-type {
    display: none;
}

.wall--portrait .book-cta__label,
.wall--portrait .book-cta__link {
    font-size: clamp(0.7rem, 1.6vh, 1rem);
}

.wall--portrait .now {
    padding: 0.55vh 0.9vw;
}

.wall--portrait .now strong {
    font-size: clamp(0.75rem, 2vh, 1.15rem);
    line-height: 1.3;
}

.wall--portrait #clock {
    font-size: clamp(0.75rem, 1.8vh, 1.1rem);
}

.wall--portrait .foot {
    font-size: clamp(0.65rem, 1.4vh, 0.85rem);
}

.wall--portrait .lineup-grid .slot-label {
    font-size: clamp(0.5rem, 1.2vh, 0.7rem);
    margin-bottom: 0;
}

.wall--portrait .lineup-grid .time {
    font-size: clamp(0.75rem, 1.8vh, 1.1rem);
    line-height: 1.25;
}

.wall--portrait .lineup-grid .dj {
    font-size: clamp(0.95rem, 2.8vh, 1.45rem);
    line-height: 1.3;
    white-space: normal;
}

.wall--portrait .lineup-grid .meta {
    display: none;
}

.wall--portrait .lineup-grid--dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wall--portrait .lineup-grid--dense .dj {
    font-size: clamp(0.8rem, 2.2vh, 1.2rem);
}

@media (max-aspect-ratio: 4/5), (max-height: 900px) {
    body.bigscreen .wall .head .lede,
    body.bigscreen .wall .head .tag-line {
        display: none;
    }

    body.bigscreen .lineup-grid .meta {
        display: none;
    }

    body.bigscreen .lineup-grid .dj {
        line-height: 1.3;
        white-space: normal;
        overflow: visible;
    }

    body.bigscreen .lineup-grid .slot {
        flex: 0 0 auto;
        min-height: auto;
    }
}

.lineup-grid .meta {
    margin: 0.35rem 0 0;
    color: var(--mute);
    font-size: clamp(0.78rem, 1.25vw, 1.15rem);
}

.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.75rem, 1.05vw, 0.95rem);
}

.pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-live);
}

.dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--accent-live);
    box-shadow: 0 0 12px var(--accent-live);
    animation: dot-beat 1s infinite ease-in-out;
}

@keyframes dot-beat {
    0%, 100% { transform: scale(0.85); opacity: 0.75; }
    50% { transform: scale(1.25); opacity: 1; }
}

.lineup-grid .empty {
    grid-column: 1 / -1;
    border: 1px dashed color-mix(in srgb, var(--magenta) 40%, transparent);
    padding: 1.5rem;
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    line-height: 1.5;
}

.lineup-grid .empty .countdown {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.theme-tag {
    font-size: 0.78rem;
    color: var(--cyan);
    opacity: 0.9;
}

@media (max-width: 800px) {
    .grid { grid-template-columns: 1fr; }
    .lineup .slot { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .laser-grid,
    .laser-fog::before,
    .laser-fog::after,
    .laser-stage.laser-lite::before,
    .laser-stage.laser-lite::after,
    .hero h1,
    .head h1,
    form button[type="submit"],
    .book-cta {
        animation: none;
    }
}
