
/* Studio K.U.B — desktop-first pirate radio theme */
:root {
    --black: #050508;
    --black-soft: #0c0c10;
    --gold: #ffb400;
    --gold-dim: #c98f00;
    --gold-glow: rgba(255, 180, 0, 0.45);
    --text: #f4f4f5;
    --text-muted: #a8a8b0;
    --border: rgba(255, 180, 0, 0.35);
    --header-h: 4.5rem;
    --font-display: "Bebas Neue", Impact, sans-serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --radius: 14px;
    --transition: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

html.is-modal-scroll-locked,
html.is-modal-scroll-locked body {
    overscroll-behavior: none;
}

body.is-modal-scroll-locked {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    touch-action: none;
}

/* Ankers niet achter de sticky header */
#home,
#boekelo,
#live,
#verzoekje {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

body {
    margin: 0;
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text);
    background: var(--black);
}

body.is-live .waveform span {
    animation-duration: 0.45s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

a:hover {
    color: #ffd054;
}

.container {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    min-height: var(--header-h);
    padding: 0.65rem clamp(1rem, 4vw, 2rem);
    background: rgba(5, 5, 8, 0.28);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid rgba(255, 180, 0, 0.22);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.site-header:has(.main-nav.is-open) {
    background: rgba(5, 5, 8, 0.88);
}

.brand img {
    width: clamp(72px, 12vw, 110px);
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.25rem;
}

.main-nav a {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    color: var(--text);
    text-transform: uppercase;
    padding: 0.35rem 0;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    width: 100%;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border: 2px solid var(--gold);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-header-cta:hover,
.btn-header-cta:focus-visible {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 28px var(--gold-glow);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gold);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius);
    font-size: 1.15rem;
    cursor: pointer;
}

.hero {
    position: relative;
    margin-top: calc(-1 * var(--header-h));
    padding-top: var(--header-h);
    min-height: min(88vh, 780px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black-soft) url("../assets/images/hero-pirate-studio.png") center 35% / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(5, 5, 8, 0.92) 0%,
        rgba(5, 5, 8, 0.72) 45%,
        rgba(5, 5, 8, 0.35) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr minmax(220px, 38%);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    padding: 1rem 0 3rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: 0.02em;
    margin: 0 0 0.85rem;
    color: var(--gold);
    text-shadow: 0 0 40px var(--gold-glow);
}

.hero-lead {
    margin: 0 0 1.75rem;
    max-width: 34rem;
    color: var(--text-muted);
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(180deg, #ffc93d 0%, var(--gold) 100%);
    color: var(--black);
    border-color: #ffd666;
    box-shadow: 0 4px 24px rgba(255, 180, 0, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(255, 180, 0, 0.12);
    box-shadow: 0 0 24px var(--gold-glow);
}

.btn-block {
    width: 100%;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 32px var(--gold-glow)) drop-shadow(0 0 64px rgba(255, 180, 0, 0.25));
}

.hero-logo {
    width: min(100%, 380px);
    animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.region-note {
    padding: 1rem 0;
    text-align: center;
    background: var(--black-soft);
    border-block: 1px solid var(--border);
}

.region-note p {
    margin: 0;
    color: var(--text-muted);
}

.cards-section {
    position: relative;
    isolation: isolate;
    padding: 3.5rem 0 4rem;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 180, 0, 0.08), transparent 55%), var(--black);
    overflow-x: hidden;
}

.cards-section > .container {
    position: relative;
    z-index: 1;
}

.card-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

/* Pulse alleen in linkerkolom: gecentreerd achter de platenspeler-foto */
.card-live-visual .cards-pulse-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(12, 12, 16, 0.88);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.card.card-live {
    background: transparent;
    box-shadow: none;
    overflow-x: hidden;
}

.card-grid > .card:not(.card-live) {
    position: relative;
    z-index: 1;
}

.card-live {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
}

.card-live-visual {
    position: relative;
    z-index: 2;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    overflow: hidden;
    /* Sectie-gradient doorlaten rondom de foto (niet door het beeld zelf als de PNG niet transparant is) */
    isolation: isolate;
}

.live-visual-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    max-width: calc(100% - 2.25rem);
}

.on-air-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    background: rgba(255, 180, 0, 0.15);
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    animation: badge-pulse 2.2s ease-in-out infinite;
}

.on-air-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d4d;
    box-shadow: 0 0 10px #ff4d4d;
    animation: dot-blink 1.2s step-end infinite;
}

@keyframes badge-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 var(--gold-glow);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 180, 0, 0.12);
    }
}

.dj-panel-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    margin: 0;
    border: 1px solid rgba(255, 180, 0, 0.55);
    border-radius: 999px;
    background: rgba(255, 180, 0, 0.12);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.dj-panel-toggle:hover {
    background: rgba(255, 180, 0, 0.22);
    border-color: var(--gold);
    color: #ffe066;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.15);
}

.dj-panel-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.vinyl-disk {
    position: relative;
    z-index: 1;
    width: min(220px, 100%);
    aspect-ratio: 1;
    cursor: grab;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
.vinyl-disk:hover {
    transform: scale(1.04);
}
    cursor: grabbing;
}

.vinyl-drag-layer {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    transform-origin: center center;
    will-change: transform;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 180, 0, 0.28),
        inset 0 0 0 2px rgba(0, 0, 0, 0.35),
        inset 0 0 36px rgba(255, 170, 0, 0.12);
}

.vinyl-rotor {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.vinyl-img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 42% 50%;
    border-radius: 50%;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.vinyl-disk-fx {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    background:
        repeating-radial-gradient(
            circle at 50% 50%,
            transparent 0,
            transparent 3px,
            rgba(255, 200, 100, 0.045) 3px,
            rgba(255, 200, 100, 0.045) 4px
        ),
        radial-gradient(circle at 38% 32%, rgba(255, 220, 140, 0.22), transparent 48%),
        radial-gradient(circle at 70% 78%, rgba(255, 160, 0, 0.12), transparent 42%);
    mix-blend-mode: soft-light;
    opacity: 0.65;
}

.vinyl-disk-shine {
    position: absolute;
    inset: -25%;
    z-index: 2;
    border-radius: 50%;
    pointer-events: none;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 230, 160, 0.22) 28deg,
        transparent 70deg,
        rgba(255, 200, 80, 0.12) 140deg,
        transparent 220deg,
        rgba(255, 210, 120, 0.18) 300deg,
        transparent 360deg
    );
    mix-blend-mode: overlay;
    opacity: 0.5;
    animation: vinyl-shine-rotate 14s linear infinite;
}

.vinyl-disk.is-scratching .vinyl-disk-shine {
    animation-duration: 7s;
    opacity: 0.72;
}

@keyframes vinyl-shine-rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes vinyl-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

body.is-live .vinyl-rotor {
    animation: vinyl-spin 8s linear infinite;
}

.card-live-body {
    position: relative;
    z-index: 3;
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: linear-gradient(145deg, rgba(26, 29, 38, 0.92), rgba(8, 8, 14, 0.95));
    border-left: 1px solid var(--border);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: inset 0 0 0 1px rgba(255, 180, 0, 0.05), 0 24px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.card-eyebrow {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin: 0 0 0.35rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.03em;
    margin: 0;
    color: var(--text);
}

.card-sub {
    margin: 0.35rem 0 1rem;
    color: var(--text-muted);
}

.waveform {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
    margin-bottom: 0.75rem;
}

.waveform span {
    flex: 1;
    min-width: 3px;
    max-width: 10px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dim));
    border-radius: 2px;
    animation: bar-jump 0.7s ease-in-out infinite alternate;
    opacity: 0.85;
}

.waveform span:nth-child(2n) {
    animation-delay: 0.1s;
}

.waveform span:nth-child(3n) {
    animation-delay: 0.2s;
}

.waveform span:nth-child(4n) {
    animation-delay: 0.15s;
}

.waveform span:nth-child(5n) {
    animation-delay: 0.25s;
}

@keyframes bar-jump {
    0% {
        height: 18%;
    }
    100% {
        height: 100%;
    }
}

.stream-player {
    position: relative;
    margin-top: 0.75rem;
    min-width: 0;
}

.stream-player audio {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.radio-player-stack {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.radio-status-line {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-left: 0.1rem;
}

.radio-status-line .radio-onair {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.92;
}

.radio-player-gold {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    padding: 0.45rem 0.85rem 0.45rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffc93d 0%, var(--gold) 100%);
    border: 2px solid #ffd666;
    box-shadow:
        0 4px 24px rgba(255, 180, 0, 0.35),
        0 0 40px rgba(255, 180, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    color: var(--black);
    overflow: hidden;
}

.radio-player-row {
    display: flex;
    align-items: center;
    gap: 0.5rem 0.65rem;
    width: 100%;
    min-width: 0;
    min-height: 2.25rem;
}

.radio-play-toggle {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.05rem;
    height: 2.05rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    color: var(--black);
    font-size: 0.8rem;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
}

.radio-play-toggle:hover,
.radio-play-toggle:focus-visible {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.radio-play-toggle:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.45);
}

.radio-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.radio-station {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.radio-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.22);
    box-shadow: none;
    flex-shrink: 0;
}

body.is-live .radio-live-dot {
    background: #c41e1e;
    box-shadow: 0 0 10px #ff4444;
    animation: radio-live-dot-pulse 1.4s ease-in-out infinite;
}

@keyframes radio-live-dot-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(0.92);
    }
}

.radio-wave-track {
    position: relative;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.radio-wave-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 32%;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0.85;
}

body.is-live .radio-wave-fill {
    animation: radio-signal-sweep 2s ease-in-out infinite;
}

@keyframes radio-signal-sweep {
    0% {
        transform: translateX(-30%);
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(220%);
        opacity: 0.5;
    }
}

.radio-elapsed {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8125rem;
    font-variant-numeric: tabular-nums;
    color: var(--black);
    min-width: 2.35rem;
    text-align: center;
    opacity: 0.92;
}

.radio-vol {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.radio-mute {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: var(--black);
    font-size: 0.78rem;
    cursor: pointer;
    transition: background var(--transition);
}

.radio-mute:hover,
.radio-mute:focus-visible {
    background: rgba(0, 0, 0, 0.18);
}

.radio-mute:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.45);
}

.radio-vol-range {
    -webkit-appearance: none;
    appearance: none;
    width: 3.75rem;
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.16);
    cursor: pointer;
}

.radio-vol-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.radio-vol-range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

@media (max-width: 1023px) {
    .radio-player-gold {
        padding: 0.45rem 0.65rem 0.48rem;
        border-radius: 20px;
    }

    .radio-player-row {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 0.45rem;
        row-gap: 0.35rem;
    }

    .radio-play-toggle {
        grid-column: 1;
        grid-row: 1;
    }

    .radio-meta {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    .radio-elapsed {
        grid-column: 3;
        grid-row: 1;
    }

    .radio-vol {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        width: 100%;
    }

    .radio-vol-range {
        flex: 1;
        max-width: 10rem;
        width: auto;
    }
}

@keyframes radio-vfx-breathe {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.06);
        opacity: 0.88;
    }
}

@keyframes radio-shock-out {
    0% {
        transform: scale(0.35);
        opacity: 0.85;
    }
    55% {
        opacity: 0.35;
    }
    100% {
        transform: scale(11);
        opacity: 0;
    }
}

@keyframes radio-shock-soft {
    0% {
        transform: scale(0.45);
        opacity: 0.25;
    }
    100% {
        transform: scale(4.5);
        opacity: 0;
    }
}

@keyframes radio-pulse-core {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.45);
        opacity: 1;
    }
}

/* Pulse in .card-live-visual: optisch centrum ≈ plaat (foto is links zwaarder) */
.cards-pulse-layer .radio-vfx-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 95% 88% at 42% 52%,
        rgba(255, 180, 0, 0.22) 0%,
        rgba(255, 150, 0, 0.09) 42%,
        transparent 70%
    );
    opacity: 0.65;
    transform-origin: 42% 52%;
    animation: radio-vfx-breathe 3.2s ease-in-out infinite;
}

body.is-live .cards-pulse-layer .radio-vfx-glow {
    animation-duration: 1.9s;
    opacity: 0.95;
}

.cards-pulse-layer .radio-shock-stage {
    position: absolute;
    left: 42%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: min(100%, 26rem);
    height: 6rem;
    pointer-events: none;
}

.cards-pulse-layer .radio-shock {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.75rem;
    height: 2.75rem;
    margin-left: -1.375rem;
    margin-top: -1.375rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 200, 90, 0.65);
    box-shadow:
        0 0 14px rgba(255, 180, 0, 0.35),
        inset 0 0 12px rgba(255, 220, 140, 0.15);
    opacity: 0;
    animation: radio-shock-out 2.8s ease-out infinite;
}

body.is-live .cards-pulse-layer .radio-shock {
    animation-duration: 2.1s;
    border-color: rgba(255, 215, 120, 0.85);
    box-shadow:
        0 0 22px rgba(255, 180, 0, 0.45),
        inset 0 0 14px rgba(255, 230, 160, 0.2);
}

body:not(.is-live) .cards-pulse-layer .radio-shock {
    animation: radio-shock-soft 4.5s ease-out infinite;
}

.cards-pulse-layer .radio-shock:nth-child(1) {
    animation-delay: 0s;
}
.cards-pulse-layer .radio-shock:nth-child(2) {
    animation-delay: 0.7s;
}
.cards-pulse-layer .radio-shock:nth-child(3) {
    animation-delay: 1.4s;
}
.cards-pulse-layer .radio-shock:nth-child(4) {
    animation-delay: 2.1s;
}

.cards-pulse-layer .radio-pulse-core {
    position: absolute;
    left: 42%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffe8a0, var(--gold) 55%, #c98f00);
    box-shadow:
        0 0 12px rgba(255, 200, 80, 0.9),
        0 0 28px rgba(255, 180, 0, 0.55);
    animation: radio-pulse-core 2s ease-in-out infinite;
}

body.is-live .cards-pulse-layer .radio-pulse-core {
    animation-duration: 1.15s;
    box-shadow:
        0 0 16px rgba(255, 210, 100, 1),
        0 0 40px rgba(255, 180, 0, 0.65);
}

.stream-player-stage {
    position: relative;
    isolation: isolate;
    min-width: 0;
    margin-top: 0.85rem;
}

body.is-live .stream-player-stage {
    filter: drop-shadow(0 6px 18px rgba(255, 180, 0, 0.14));
}

.stream-player-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.radio-spectrum {
    position: relative;
    padding: 0 0.15rem 0.15rem;
}

.radio-spectrum-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 42px;
    padding: 0 0.25rem;
}

.radio-spectrum-bars span {
    flex: 1;
    max-width: 10px;
    min-width: 3px;
    height: 28%;
    border-radius: 3px;
    background: linear-gradient(180deg, rgba(255, 210, 100, 0.95) 0%, rgba(255, 180, 0, 0.35) 100%);
    box-shadow: 0 0 10px rgba(255, 180, 0, 0.15);
    transform-origin: bottom center;
    opacity: 0.45;
    animation: radio-spectrum-idle 2.4s ease-in-out infinite;
}

body.is-live .radio-spectrum-bars span {
    opacity: 0.92;
    animation: radio-spectrum-beat 0.5s ease-in-out infinite alternate;
    box-shadow: 0 0 12px rgba(255, 180, 0, 0.35);
}

.radio-spectrum-bars span:nth-child(1) {
    animation-delay: 0s;
}
.radio-spectrum-bars span:nth-child(2) {
    animation-delay: 0.04s;
}
.radio-spectrum-bars span:nth-child(3) {
    animation-delay: 0.08s;
}
.radio-spectrum-bars span:nth-child(4) {
    animation-delay: 0.12s;
}
.radio-spectrum-bars span:nth-child(5) {
    animation-delay: 0.06s;
}
.radio-spectrum-bars span:nth-child(6) {
    animation-delay: 0.14s;
}
.radio-spectrum-bars span:nth-child(7) {
    animation-delay: 0.02s;
}
.radio-spectrum-bars span:nth-child(8) {
    animation-delay: 0.1s;
}
.radio-spectrum-bars span:nth-child(9) {
    animation-delay: 0.16s;
}
.radio-spectrum-bars span:nth-child(10) {
    animation-delay: 0.05s;
}
.radio-spectrum-bars span:nth-child(11) {
    animation-delay: 0.11s;
}
.radio-spectrum-bars span:nth-child(12) {
    animation-delay: 0.03s;
}
.radio-spectrum-bars span:nth-child(13) {
    animation-delay: 0.13s;
}
.radio-spectrum-bars span:nth-child(14) {
    animation-delay: 0.07s;
}
.radio-spectrum-bars span:nth-child(15) {
    animation-delay: 0.09s;
}
.radio-spectrum-bars span:nth-child(16) {
    animation-delay: 0.15s;
}

@keyframes radio-spectrum-idle {
    0%,
    100% {
        height: 22%;
        opacity: 0.35;
    }
    50% {
        height: 38%;
        opacity: 0.5;
    }
}

@keyframes radio-spectrum-beat {
    0% {
        height: 18%;
        transform: scaleY(0.85);
    }
    100% {
        height: 100%;
        transform: scaleY(1);
    }
}

.radio-spectrum-line-wrap {
    margin-top: 0.45rem;
    padding: 0 0.5rem;
}

.radio-spectrum-line {
    display: block;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 180, 0, 0.15) 20%,
        rgba(255, 200, 80, 0.85) 50%,
        rgba(255, 180, 0, 0.15) 80%,
        transparent 100%
    );
    background-size: 180% 100%;
    animation: radio-spectrum-shimmer 3.2s ease-in-out infinite;
    opacity: 0.55;
}

body.is-live .radio-spectrum-line {
    animation-duration: 1.6s;
    opacity: 0.9;
    box-shadow: 0 0 16px rgba(255, 180, 0, 0.35);
}

@keyframes radio-spectrum-shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.radio-listeners {
    margin-top: 0.65rem;
    padding: 0.35rem 0.4rem 0.1rem;
}

.radio-listeners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.radio-listeners-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 180, 0, 0.38);
    background: rgba(255, 180, 0, 0.09);
    color: var(--gold);
    font-size: 0.88rem;
}

.radio-listeners-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.06rem;
    min-width: 0;
    text-align: left;
}

.radio-listeners-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(255, 210, 140, 0.75);
}

.radio-listeners-count {
    font-family: var(--font-body);
    font-size: 1.28rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--gold);
    line-height: 1.15;
}

body.is-live .radio-listeners-count {
    text-shadow: 0 0 16px rgba(255, 180, 0, 0.4);
}

.card-form {
    padding: 1.75rem 1.75rem 1.5rem;
}

.card-form-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    letter-spacing: 0.04em;
    color: var(--gold);
    margin: 0 0 0.5rem;
}

.card-form-lead {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.field {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold-glow);
}

.field-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    align-self: stretch;
    background: rgba(255, 180, 0, 0.06);
    border-right: 1px solid rgba(255, 180, 0, 0.22);
    color: var(--gold);
    flex-shrink: 0;
}

.field input,
.field textarea {
    flex: 1;
    align-self: stretch;
    border: none;
    background: transparent;
    color: var(--text);
    font: inherit;
    padding: 0.8rem 1rem;
    min-width: 0;
}

.field textarea {
    resize: none;
    min-height: 5.5rem;
    line-height: 1.45;
    vertical-align: top;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #6a6a72;
}

.field-area {
    align-items: stretch;
}

.form-toast {
    margin: 1rem 0 0;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: rgba(255, 180, 0, 0.12);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.95rem;
}

.support-banner {
    background: linear-gradient(90deg, rgba(255, 180, 0, 0.08), transparent 45%, rgba(255, 180, 0, 0.08));
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
}

.support-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    min-width: 0;
}

.support-inner > * {
    min-width: 0;
}

.support-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.support-block i {
    font-size: 1.75rem;
    color: var(--gold);
    margin-top: 0.15rem;
}

.support-block p {
    margin: 0;
    color: var(--text-muted);
    overflow-wrap: anywhere;
}

.support-block strong {
    color: var(--text);
}

.iban {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
}

.site-footer {
    padding: 3rem 0 2.5rem;
    background: #030305;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) repeat(2, minmax(140px, 1fr)) minmax(200px, 1.2fr);
    gap: 2rem;
}

.footer-logo {
    width: 100px;
    opacity: 0.95;
}

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.85rem;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.45rem;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: right;
}

.footer-slogan {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin: 0 0 0.5rem;
}

.footer-copy {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: #6c6c75;
}

.footer-maker-wrap {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.footer-maker-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 180, 0, 0.55);
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255, 180, 0, 0.2), rgba(255, 150, 0, 0.06));
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    line-height: 1.25;
    white-space: nowrap;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 8px 28px rgba(255, 180, 0, 0.12),
        0 2px 12px rgba(0, 0, 0, 0.35);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform 0.2s ease,
        color var(--transition);
}

.footer-maker-btn:hover {
    border-color: var(--gold);
    color: #ffe066;
    box-shadow:
        0 0 0 1px rgba(255, 220, 160, 0.12) inset,
        0 0 32px rgba(255, 180, 0, 0.22),
        0 10px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.footer-maker-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.footer-maker-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 210, 80, 0.2), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
    animation: footer-maker-shimmer 4s ease-in-out infinite;
}

.footer-maker-text {
    position: relative;
    z-index: 1;
}

.footer-maker-text strong {
    color: #ffe8a8;
    font-weight: 700;
}

@keyframes footer-maker-shimmer {
    0%,
    100% {
        opacity: 0.55;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(6%);
    }
}

.boekelo-dialog,
.webmerken-dialog,
.dj-panel-dialog {
    padding: 0;
    border: none;
    max-width: min(32rem, calc(100vw - 2rem));
    width: 100%;
    background: transparent;
    color: inherit;
}

.webmerken-dialog {
    max-width: min(36rem, calc(100vw - 2rem));
}

.dj-panel-dialog {
    max-width: min(52rem, calc(100vw - 1.25rem));
    width: 100%;
}

.boekelo-dialog::backdrop,
.webmerken-dialog::backdrop,
.dj-panel-dialog::backdrop {
    background: rgba(5, 5, 10, 0.78);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.boekelo-dialog-panel,
.webmerken-dialog-panel,
.dj-panel-dialog-panel {
    position: relative;
    padding: 1.75rem 1.75rem 1.65rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background:
        radial-gradient(ellipse 80% 70% at 50% 0%, rgba(255, 180, 0, 0.14), transparent 55%),
        linear-gradient(165deg, rgba(18, 16, 22, 0.98), rgba(6, 6, 10, 0.99));
    box-shadow:
        0 0 0 1px rgba(255, 180, 0, 0.06) inset,
        0 28px 70px rgba(0, 0, 0, 0.55);
}

.dj-panel-dialog-panel {
    max-height: min(92svh, 56rem);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 190, 60, 0.85) rgba(8, 8, 12, 0.65);
    scrollbar-gutter: stable;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

@supports not (height: 1svh) {
    .dj-panel-dialog-panel {
        max-height: min(92vh, 56rem);
    }
}

.dj-panel-dialog-panel::-webkit-scrollbar {
    width: 9px;
}

.dj-panel-dialog-panel::-webkit-scrollbar-track {
    margin: 6px 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 999px;
    border: 1px solid rgba(255, 180, 0, 0.08);
}

.dj-panel-dialog-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 210, 100, 0.95), rgba(200, 130, 0, 0.75));
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 10px rgba(255, 180, 0, 0.25);
}

.dj-panel-dialog-panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffe18a, var(--gold));
}

.boekelo-dialog-close,
.webmerken-dialog-close,
.dj-panel-dialog-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: 1px solid rgba(255, 180, 0, 0.35);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.boekelo-dialog-close:hover,
.webmerken-dialog-close:hover,
.dj-panel-dialog-close:hover {
    background: rgba(255, 180, 0, 0.12);
    border-color: var(--gold);
    color: #ffd054;
}

.boekelo-dialog-eyebrow,
.webmerken-dialog-eyebrow,
.dj-panel-dialog-eyebrow {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.35rem;
}

.boekelo-dialog-title,
.webmerken-dialog-title,
.dj-panel-dialog-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 2.25rem 1rem 0;
}

.boekelo-dialog-body,
.webmerken-dialog-body,
.dj-panel-dialog-body {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.62;
}

.boekelo-dialog-body p,
.webmerken-dialog-body p,
.dj-panel-dialog-body p {
    margin: 0 0 0.9rem;
}

.boekelo-dialog-body p:last-child,
.webmerken-dialog-body p:last-child,
.dj-panel-dialog-body p:last-child {
    margin-bottom: 0;
}

.boekelo-dialog-body strong,
.webmerken-dialog-body strong,
.dj-panel-dialog-body strong {
    color: var(--text);
}

.boekelo-dialog-body em,
.webmerken-dialog-body em,
.dj-panel-dialog-body em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.webmerken-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 180, 0, 0.22);
}

.webmerken-dialog-actions .btn {
    flex: 1 1 10rem;
    justify-content: center;
}

.dj-panel-hint {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    min-height: 1.25em;
}

.dj-panel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem 1.75rem;
    align-items: stretch;
}

@media (max-width: 1023px) {
    .dj-panel-layout {
        grid-template-columns: 1fr;
    }

    .dj-panel-dialog {
        box-sizing: border-box;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .dj-panel-dialog-panel {
        max-height: calc(88vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
        scrollbar-gutter: auto;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
    }

    .dj-panel-dialog::backdrop {
        background: rgba(5, 5, 10, 0.92);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@supports (height: 1svh) {
    @media (max-width: 1023px) {
        .dj-panel-dialog-panel {
            max-height: calc(88svh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
        }
    }
}

@media (max-width: 1023px) and (prefers-reduced-motion: no-preference) {
    .dj-panel-dialog-panel,
    .dj-panel-dialog::backdrop {
        animation: none !important;
    }
}

.dj-panel-col {
    min-width: 0;
}

.dj-panel-col--mix {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.dj-panel-mix-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 180, 0, 0.2);
}

.dj-panel-mix-footer .dj-presets {
    margin-bottom: 0.65rem;
}

.dj-panel-mix-footer .dj-fx-row {
    margin-top: 0;
    padding-top: 0;
}

.dj-panel-col--fx {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0.85rem 1rem 0.25rem;
    border: 1px solid rgba(255, 180, 0, 0.22);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}

.dj-control {
    margin-bottom: 1rem;
}

.dj-control > label,
.dj-presets-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.dj-control-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dj-control-row input[type="range"] {
    flex: 1;
    min-width: 0;
    accent-color: var(--gold);
    height: 6px;
}

.dj-control-value {
    flex: 0 0 3.25rem;
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
    text-align: right;
}

.dj-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    cursor: pointer;
}

.dj-checkbox-label input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--gold);
}

.dj-eq {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem 0.25rem;
    border: 1px solid rgba(255, 180, 0, 0.25);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
}

.dj-eq legend {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0 0.35rem;
}

.dj-eq:disabled {
    opacity: 0.55;
}

.dj-presets-label {
    margin-bottom: 0.5rem;
}

.dj-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dj-preset-btn {
    flex: 1 1 6rem;
    padding: 0.55rem 0.85rem !important;
    font-size: 0.95rem !important;
}

.dj-fx-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.35rem;
}

.dj-fx-row .btn {
    flex: 1 1 8rem;
    justify-content: center;
}

.dj-pads-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.55rem;
}

.dj-pads-note {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    color: #7a7a86;
    line-height: 1.45;
}

.dj-pads-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(4.35rem, 1fr);
    gap: 0.55rem;
    margin-bottom: 0.85rem;
    flex: 1 1 auto;
    min-height: 11rem;
    align-items: stretch;
}

.dj-pad {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 0.5rem 0.75rem;
    border: 1px solid rgba(255, 180, 0, 0.45);
    border-radius: 12px;
    background: linear-gradient(165deg, rgba(35, 32, 28, 0.95), rgba(10, 9, 12, 0.98));
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow:
        0 3px 0 rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 220, 140, 0.06) inset;
    transition:
        transform 0.08s ease,
        box-shadow var(--transition),
        border-color var(--transition),
        filter 0.12s ease;
}

.dj-pad:hover {
    border-color: var(--gold);
    filter: brightness(1.08);
}

.dj-pad:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.dj-pad:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.dj-pad small {
    display: block;
    margin-top: 0.2rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--text-muted);
}

.dj-pad-vol {
    margin-top: 0.25rem;
}

.dj-pad-vol label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.dj-pad-vol input[type="range"] {
    width: 100%;
    accent-color: var(--gold);
    height: 6px;
}

.dj-auto-block {
    margin: 1rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 180, 0, 0.2);
}

.dj-auto-toggle {
    margin-bottom: 0.35rem;
}

.dj-auto-help {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    color: #6e6e78;
    line-height: 1.4;
}

.dj-auto-controls {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.dj-auto-bpm-wrap {
    margin-bottom: 0;
}

.dj-auto-pattern-label {
    font-family: var(--font-display);
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
}

.dj-auto-select {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 180, 0, 0.4);
    background: rgba(0, 0, 0, 0.45);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    cursor: pointer;
}

.dj-auto-select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.dj-pad.dj-pad--flash {
    border-color: #ffe18a;
    box-shadow: 0 0 22px rgba(255, 180, 0, 0.45);
    filter: brightness(1.15);
}

@media (prefers-reduced-motion: no-preference) {
    .boekelo-dialog::backdrop,
    .webmerken-dialog::backdrop,
    .dj-panel-dialog::backdrop {
        animation: boekelo-backdrop-in 0.28s ease-out;
    }

    .boekelo-dialog-panel,
    .webmerken-dialog-panel,
    .dj-panel-dialog-panel {
        animation: boekelo-panel-in 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }
}

@keyframes boekelo-backdrop-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes boekelo-panel-in {
    from {
        opacity: 0;
        transform: translateY(0.75rem) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1023px) {
    .site-header {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 0.5rem;
        row-gap: 0.5rem;
    }

    .brand img {
        width: clamp(64px, 16vw, 100px);
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 3;
        grid-row: 1;
    }

    .btn-header-cta {
        grid-column: 2;
        grid-row: 1;
        justify-self: stretch;
        justify-content: center;
        margin-top: 0;
        min-width: 0;
        padding: 0.45rem 0.5rem;
        font-size: clamp(0.68rem, 3.2vw, 1rem);
        letter-spacing: 0.03em;
        gap: 0.35rem;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0 0.25rem;
    }

    .main-nav.is-open {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        order: 1;
    }

    .hero-logo-wrap {
        order: 0;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-live {
        grid-template-columns: 1fr;
    }

    .card-live-visual {
        min-height: 220px;
    }

    .support-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: stretch;
    }

    .footer-brand {
        justify-self: start;
    }

    .footer-tagline {
        grid-column: 1;
        text-align: left;
    }

    .footer-maker-wrap {
        justify-content: flex-start;
    }

    .footer-maker-btn {
        white-space: normal;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .boekelo-dialog::backdrop,
    .boekelo-dialog-panel,
    .webmerken-dialog::backdrop,
    .webmerken-dialog-panel,
    .dj-panel-dialog::backdrop,
    .dj-panel-dialog-panel {
        animation: none !important;
    }

    .footer-maker-glow {
        animation: none !important;
    }

    body.is-live .radio-live-dot,
    body.is-live .radio-wave-fill {
        animation: none !important;
    }

    .radio-spectrum-bars span {
        animation: none !important;
        height: 32% !important;
        opacity: 0.5;
    }

    body.is-live .radio-spectrum-bars span {
        height: 55% !important;
        opacity: 0.75;
    }

    .radio-spectrum-line {
        animation: none !important;
    }

    .radio-vfx-glow,
    .radio-shock,
    .radio-pulse-core {
        animation: none !important;
    }

    .radio-vfx-glow {
        opacity: 0.35 !important;
        transform: none !important;
    }

    .radio-shock {
        opacity: 0 !important;
        visibility: hidden;
    }

    .radio-pulse-core {
        transform: translate(-50%, -50%) scale(1) !important;
    }

    body.is-live .stream-player-stage {
        filter: none;
    }

    .vinyl-disk-shine {
        animation: none !important;
    }

    body.is-live .vinyl-rotor {
        animation: none !important;
    }
}
