:root {
    --black: #050509;
    --ink: #11121a;
    --blue: #1428ff;
    --cyan: #00d8ff;
    --pink: #ff007a;
    --yellow: #ffe600;
    --green: #22e17d;
    --paper: #f3f0e8;
    --white: #ffffff;
    --muted: #657084;
    --line: rgba(17, 18, 26, .13);
}

* {
    box-sizing: border-box;
}

::selection {
    color: var(--white);
    background: var(--pink);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        linear-gradient(135deg, rgba(255, 0, 122, .08) 0 1px, transparent 1px 28px),
        linear-gradient(180deg, #f7f4ed 0%, #ece8dc 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 100;
    opacity: .08;
    pointer-events: none;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, .9) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 0, 0, .7) 25%, transparent 25%);
    background-size: 4px 4px;
    mix-blend-mode: overlay;
}

.social-rail {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 96;
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
}

.social-rail a {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--white);
    font-size: 2rem;
    font-weight: 1000;
    line-height: 1;
    text-decoration: none;
    background: var(--pink);
    box-shadow: 8px 0 0 rgba(255, 230, 0, .9);
    transition: transform .18s ease, box-shadow .18s ease;
}

.social-rail a:hover {
    transform: translateX(8px);
    box-shadow: 14px 0 0 var(--yellow);
}

.social-rail svg {
    display: block;
    width: 29px;
    height: 29px;
    fill: currentColor;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 90;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 92px;
    padding: 12px max(18px, calc((100vw - 1220px) / 2));
    color: var(--white);
    background: rgba(5, 5, 9, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .46);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 192px;
    padding: 6px 0;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
}

.main-nav,
.header-actions,
.hero-actions,
.cta-band div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav {
    justify-content: center;
}

.main-nav a {
    position: relative;
    padding: 12px 10px;
    color: rgba(255, 255, 255, .78);
    font-size: .86rem;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 7px;
    left: 10px;
    height: 5px;
    background: var(--pink);
    transform: skewX(-18deg) scaleX(0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: skewX(-18deg) scaleX(1);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 2px solid transparent;
    border-radius: 999px 999px 999px 18px;
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button::before {
    content: "";
    position: absolute;
    inset: -70% -30%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    transform: translateX(-115%) rotate(12deg);
}

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

.button:hover::before {
    animation: shine .75s ease;
}

.button > * {
    position: relative;
}

.button-ticket {
    color: var(--white);
    background: var(--pink);
    box-shadow: 8px 8px 0 var(--yellow), 0 18px 36px rgba(255, 0, 122, .24);
}

.button-live {
    color: var(--white);
    border-color: rgba(255, 255, 255, .62);
    background: rgba(5, 5, 9, .42);
    box-shadow: inset 0 -6px 0 rgba(255, 255, 255, .08);
}

.button.big {
    min-height: 66px;
    padding: 0 30px;
    font-size: 1.04rem;
}

.ticket-icon {
    position: relative;
    width: 23px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 3px;
    transform: rotate(-7deg);
    background:
        radial-gradient(circle at 0 50%, transparent 0 4px, currentColor 4.5px 5.5px, transparent 6px),
        radial-gradient(circle at 100% 50%, transparent 0 4px, currentColor 4.5px 5.5px, transparent 6px);
}

.ticket-icon::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 7px;
    border-left: 2px dashed currentColor;
    opacity: .8;
}

.player-symbol {
    display: inline-block;
    width: 17px;
    height: 19px;
    color: currentColor;
    background: currentColor;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

body.is-playing .player-symbol {
    width: 18px;
    clip-path: none;
    background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65%);
}

body.is-loading .player-symbol {
    width: 19px;
    height: 19px;
    border: 3px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    background: transparent;
    clip-path: none;
    animation: spin .75s linear infinite;
}

.ticker {
    position: relative;
    z-index: 50;
    margin-top: 92px;
    overflow: hidden;
    color: var(--black);
    background: var(--pink);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 18s linear infinite;
}

.ticker span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 42px;
    color: var(--white);
    font-size: .9rem;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker span::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 34px;
    border-radius: 50%;
    background: var(--yellow);
}

.hero,
.page-hero {
    position: relative;
    min-height: 790px;
    padding: 118px max(18px, calc((100vw - 1220px) / 2)) 155px;
    color: var(--white);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 5, 9, .94) 0%, rgba(5, 5, 9, .82) 43%, rgba(255, 0, 122, .28) 100%),
        url("../images/header.png") center / cover,
        linear-gradient(135deg, #050509, #1428ff);
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .76;
    background-image:
        linear-gradient(112deg, transparent 0 24%, rgba(255, 0, 122, .92) 24% 25.4%, transparent 25.4% 48%, rgba(255, 230, 0, .76) 48% 49.2%, transparent 49.2%),
        linear-gradient(45deg, rgba(255, 255, 255, .2) 0 2px, transparent 2px 32px),
        radial-gradient(circle, rgba(255, 255, 255, .52) 0 2px, transparent 3px);
    background-size: 100% 100%, 58px 58px, 42px 42px;
    mix-blend-mode: screen;
    animation: patternMove 16s linear infinite;
}

.hero::after {
    content: "";
    position: absolute;
    right: -7vw;
    bottom: -13vw;
    width: min(680px, 55vw);
    aspect-ratio: 1;
    border: 52px solid rgba(255, 230, 0, .92);
    border-radius: 48% 52% 46% 54%;
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, .25));
    animation: rotateSlow 18s linear infinite;
}

.wave-ribbons {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.wave-ribbons span {
    position: absolute;
    left: -12vw;
    width: 124vw;
    height: 96px;
    border: 7px solid rgba(255, 255, 255, .78);
    border-color: rgba(255, 255, 255, .8) transparent transparent transparent;
    border-radius: 50%;
    transform: rotate(-8deg);
    animation: waveDrift 7s ease-in-out infinite;
}

.wave-ribbons span:nth-child(1) {
    top: 30%;
    border-top-color: rgba(255, 230, 0, .88);
}

.wave-ribbons span:nth-child(2) {
    top: 43%;
    border-top-color: rgba(255, 0, 122, .78);
    animation-delay: -1.6s;
    transform: rotate(-4deg);
}

.wave-ribbons span:nth-child(3) {
    top: 58%;
    border-top-color: rgba(0, 216, 255, .62);
    animation-delay: -3.2s;
    transform: rotate(-12deg);
}

.hero-wave {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 4;
    height: 118px;
    background:
        radial-gradient(80% 120% at 18% 100%, #f3f0e8 0 58%, transparent 59%),
        radial-gradient(70% 100% at 72% 100%, #f3f0e8 0 56%, transparent 57%),
        #f3f0e8;
    clip-path: ellipse(82% 62% at 50% 100%);
    animation: heroWave 5.5s ease-in-out infinite alternate;
}

.saw-divider {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 5;
    height: 74px;
    background: var(--paper);
    clip-path: polygon(
        0 32%, 6% 24%, 12% 32%, 18% 22%, 24% 31%, 30% 18%,
        36% 29%, 42% 21%, 48% 30%, 54% 19%, 60% 31%, 66% 23%,
        72% 33%, 78% 21%, 84% 31%, 90% 24%, 96% 32%, 100% 26%,
        100% 100%, 0 100%
    );
    animation: sawPulse 4.8s ease-in-out infinite alternate;
}

.speed-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.speed-lines::before,
.speed-lines::after {
    content: "";
    position: absolute;
    right: -12vw;
    width: 62vw;
    height: 12px;
    border-radius: 999px;
    background: var(--white);
    transform: skewX(-24deg);
    box-shadow:
        0 42px 0 var(--pink),
        0 84px 0 var(--yellow),
        0 126px 0 rgba(255, 255, 255, .72);
    animation: speedSlide 4.8s ease-in-out infinite;
}

.speed-lines::before {
    top: 22%;
}

.speed-lines::after {
    bottom: 22%;
    right: auto;
    left: -18vw;
    width: 42vw;
    opacity: .55;
    animation-delay: -1.2s;
}

.hero-content,
.page-hero > * {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    padding: 10px 14px;
    border: 2px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 950;
    text-transform: uppercase;
    background: rgba(5, 5, 9, .68);
    backdrop-filter: blur(12px);
}

.eyebrow.dark {
    color: var(--ink);
    border-color: rgba(16, 20, 38, .12);
    background: rgba(255, 255, 255, .72);
}

.eyebrow span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(31, 214, 120, .62);
    animation: pulse 1.45s infinite;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
    line-height: .92;
    text-transform: uppercase;
}

h1 {
    max-width: 1040px;
    font-size: clamp(3.7rem, 11.5vw, 10.5rem);
    font-weight: 1000;
    letter-spacing: 0;
    text-shadow: 0 20px 48px rgba(0, 0, 0, .38);
}

h2 {
    font-size: clamp(2.45rem, 6vw, 5.8rem);
}

h3 {
    font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.hero-text,
.page-hero p:not(.eyebrow) {
    max-width: 670px;
    margin: 20px 0 32px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.12rem, 2.1vw, 1.38rem);
    line-height: 1.55;
}

.notes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.notes i {
    position: absolute;
    bottom: -70px;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(2rem, 5vw, 5rem);
    font-style: normal;
    animation: floatNote 9s linear infinite;
}

.notes i:nth-child(1) { left: 12%; animation-delay: 0s; }
.notes i:nth-child(2) { left: 34%; animation-delay: 2s; color: rgba(255, 225, 77, .72); }
.notes i:nth-child(3) { left: 57%; animation-delay: 4s; color: rgba(255, 46, 138, .7); }
.notes i:nth-child(4) { left: 76%; animation-delay: 1s; }
.notes i:nth-child(5) { left: 88%; animation-delay: 5s; color: rgba(0, 213, 255, .72); }

.scroll-card {
    position: absolute;
    right: max(18px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    z-index: 3;
    width: min(340px, calc(100% - 36px));
    padding: 22px;
    border: 0;
    border-radius: 28px 28px 28px 6px;
    color: var(--white);
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--pink);
    box-shadow: 10px 10px 0 var(--yellow);
    backdrop-filter: blur(16px);
}

.hero-board {
    position: absolute;
    right: max(18px, calc((100vw - 1220px) / 2));
    top: 170px;
    z-index: 3;
    width: min(380px, 36vw);
    padding: 24px;
    color: var(--black);
    background: var(--white);
    border-radius: 34px 34px 34px 8px;
    clip-path: none;
    box-shadow: 12px 12px 0 var(--pink);
}

.hero-board span {
    display: block;
    color: var(--pink);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.hero-board strong {
    display: block;
    margin: 6px 0 18px;
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    font-weight: 1000;
    line-height: .9;
    text-transform: uppercase;
}

.hero-board dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.hero-board div {
    padding-top: 10px;
    border-top: 2px solid var(--line);
}

.hero-board dt {
    color: var(--blue);
    font-size: .72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.hero-board dd {
    margin: 2px 0 0;
    font-weight: 900;
}

.countdown-panel {
    position: absolute;
    right: max(18px, calc((100vw - 1220px) / 2));
    bottom: 185px;
    z-index: 4;
    width: min(620px, 48vw);
    color: var(--white);
}

.countdown-panel p {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 11px 18px;
    color: var(--black);
    font-weight: 1000;
    text-transform: uppercase;
    background: var(--white);
    box-shadow: 8px 8px 0 var(--pink);
}

.countdown-panel > strong {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 15px 22px;
    color: var(--pink);
    font-size: clamp(1.45rem, 3vw, 2.7rem);
    line-height: 1;
    text-transform: uppercase;
    background: var(--white);
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.countdown-grid div {
    display: grid;
    place-items: center;
    min-height: 112px;
    padding: 12px 8px;
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(70% 80% at 20% 10%, rgba(255, 255, 255, .22), transparent 55%),
        var(--pink);
    box-shadow: 8px 8px 0 rgba(255, 230, 0, .86);
    border-radius: 22px 22px 22px 5px;
    animation: countdownBob 3.2s ease-in-out infinite;
}

.countdown-grid div:nth-child(2) { animation-delay: -.4s; }
.countdown-grid div:nth-child(3) { animation-delay: -.8s; }
.countdown-grid div:nth-child(4) { animation-delay: -1.2s; }

.countdown-grid span {
    display: block;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 1000;
    line-height: .86;
}

.countdown-grid small {
    display: block;
    margin-top: 6px;
    font-size: clamp(.78rem, 1.5vw, 1.05rem);
    font-weight: 900;
}

.hero .hero-content {
    z-index: 6;
    max-width: 820px;
}

.hero-board {
    display: none;
}

.countdown-panel {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 6;
    display: grid;
    grid-template-columns: minmax(230px, .9fr) minmax(340px, 1.1fr);
    gap: 14px;
    align-items: stretch;
    width: min(780px, 100%);
    margin-top: 34px;
    color: var(--white);
}

.countdown-copy {
    min-width: 0;
    padding: 18px;
    border: 2px solid rgba(255, 255, 255, .24);
    border-radius: 28px 28px 28px 7px;
    background: rgba(5, 5, 9, .62);
    backdrop-filter: blur(14px);
}

.countdown-panel p {
    display: block;
    width: fit-content;
    margin: 0 0 10px;
    padding: 8px 12px;
    color: var(--white);
    font-size: .74rem;
    font-weight: 1000;
    text-transform: uppercase;
    background: var(--pink);
    box-shadow: none;
    border-radius: 999px;
}

.countdown-panel > strong {
    display: none;
}

.countdown-copy > strong {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(1.75rem, 3.5vw, 3.4rem);
    font-weight: 1000;
    line-height: .9;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
}

.countdown-copy > span {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-weight: 850;
    line-height: 1.4;
}

.countdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.countdown-grid div {
    min-height: 104px;
    border-radius: 24px 24px 24px 7px;
    box-shadow: 6px 6px 0 rgba(255, 230, 0, .86);
}

.countdown-grid span {
    font-size: clamp(1.75rem, 3.6vw, 3rem);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    align-items: center;
    gap: clamp(24px, 5vw, 70px);
    min-height: 660px;
    padding-top: 86px;
    padding-bottom: 126px;
}

.hero .hero-content {
    max-width: 700px;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(3.25rem, 7.8vw, 7.35rem);
}

.hero-text {
    max-width: 620px;
    margin-bottom: 26px;
}

.hero .countdown-panel {
    justify-self: end;
    align-self: center;
    width: min(470px, 100%);
    margin: 0;
    grid-template-columns: 1fr;
}

.hero .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero .countdown-grid div {
    min-height: 96px;
}

.hero .countdown-copy {
    padding: 20px;
}

.hero .countdown-copy > strong {
    font-size: clamp(1.9rem, 4vw, 3.35rem);
}

.scroll-card span,
.section-title p,
.event-card > p,
.info-bands span,
.radio-panel span,
.site-footer span {
    display: block;
    color: var(--pink);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.event-strip,
.lineup-section,
.split-section,
.boerenshot-section,
.chat-section,
.rules-list,
.parking-layout,
.cta-band,
.info-bands {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.boerenshot-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    gap: 28px;
    align-items: center;
    padding: 34px 0 74px;
}

.boerenshot-section p:not(.eyebrow) {
    max-width: 600px;
    color: #3c4658;
    line-height: 1.6;
}

.boerenshot-logo {
    display: grid;
    place-items: center;
    min-height: 220px;
    margin: 0;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 72% 20%, rgba(255, 0, 122, .28), transparent 28%),
        #050509;
    box-shadow: 0 18px 40px rgba(17, 18, 26, .12);
}

.boerenshot-logo img {
    display: block;
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.boerenshot-logo strong {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: .9;
    text-transform: uppercase;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 70px 0 86px;
}

.sponsor-card {
    display: grid;
    place-items: center;
    min-height: 160px;
    padding: 22px;
    border: 1px solid rgba(17, 18, 26, .12);
    border-radius: 24px;
    text-align: center;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(17, 18, 26, .08);
}

.sponsor-card img {
    display: block;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.sponsor-card strong {
    color: var(--pink);
    font-size: 1.25rem;
    text-transform: uppercase;
}

.sponsor-card span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.event-strip {
    position: relative;
    padding: 96px 0 70px;
}

.lineup-section {
    padding: 28px 0 44px;
}

.lineup-shell {
    position: relative;
}

.lineup-track {
    display: grid;
    grid-auto-columns: minmax(245px, 31%);
    grid-auto-flow: column;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 4px 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.lineup-card {
    position: relative;
    min-height: 390px;
    border-radius: 24px;
    overflow: hidden;
    background: #11121a;
    box-shadow: 0 18px 40px rgba(17, 18, 26, .12);
    scroll-snap-align: start;
}

.lineup-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02);
}

.lineup-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: var(--white);
    font-size: clamp(3rem, 8vw, 6.8rem);
    font-weight: 1000;
    line-height: .86;
    text-align: center;
    text-transform: uppercase;
    background:
        radial-gradient(circle, rgba(255, 255, 255, .24) 0 2px, transparent 2.8px) right top / 18px 18px,
        linear-gradient(135deg, var(--pink), #11121a 58%, var(--yellow));
}

.lineup-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(255, 255, 255, .32) 0 2px, transparent 2.8px) right 18px top 18px / 18px 18px no-repeat,
        linear-gradient(180deg, transparent 34%, rgba(5, 5, 9, .88));
    pointer-events: none;
}

.lineup-card::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    width: 132px;
    height: 132px;
    opacity: .45;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .75) 0 2px, transparent 2.8px);
    background-size: 18px 18px;
    pointer-events: none;
}

.lineup-card div {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    color: var(--white);
}

.lineup-card span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--white);
    font-size: .72rem;
    font-weight: 1000;
    text-transform: uppercase;
    background: var(--pink);
}

.lineup-card strong {
    display: block;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: .92;
    text-transform: uppercase;
}

.slider-button {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    background: var(--pink);
    box-shadow: 0 12px 24px rgba(17, 18, 26, .18);
    cursor: pointer;
    transform: translateY(-50%);
}

.lineup-prev {
    left: -14px;
}

.lineup-next {
    right: -14px;
}

.section-wave {
    position: absolute;
    right: 0;
    left: 0;
    height: 42px;
    pointer-events: none;
    background:
        radial-gradient(48px 30px at 48px 0, transparent 47px, var(--pink) 49px 52px, transparent 54px) repeat-x;
    background-size: 96px 42px;
    opacity: .55;
    animation: waveTrack 8s linear infinite;
}

.section-wave.top {
    top: 36px;
}

.section-wave.bottom {
    bottom: 20px;
    opacity: .38;
    background:
        radial-gradient(48px 30px at 48px 100%, transparent 47px, var(--blue) 49px 52px, transparent 54px) repeat-x;
    background-size: 96px 42px;
    animation-direction: reverse;
}

.section-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 760px);
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
    padding-bottom: 22px;
    border-bottom: 6px solid var(--ink);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.event-card {
    position: relative;
    min-height: 500px;
    padding: 0;
    border: 0;
    border-radius: 26px 26px 26px 8px;
    color: var(--white);
    background: var(--black);
    box-shadow: 12px 14px 0 rgba(17, 18, 26, .14);
    overflow: hidden;
}

.event-card::after {
    content: "";
    position: absolute;
    right: -82px;
    bottom: -84px;
    width: 210px;
    height: 210px;
    border: 34px solid var(--yellow);
    opacity: .75;
}

.event-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 110px;
    background:
        linear-gradient(120deg, var(--pink) 0 55%, var(--yellow) 55% 72%, var(--white) 72%);
    border-radius: 0 0 52% 48%;
    transform: none;
    transform-origin: top left;
}

.event-card h3,
.event-date-ribbon,
.event-card dl,
.event-card > p:last-child {
    position: relative;
    z-index: 2;
}

.event-card > p:first-child {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin: 24px 24px 18px;
    padding: 9px 12px;
    color: var(--black);
    background: var(--yellow);
}

.event-card h3 {
    padding: 0 24px;
}

.event-date-ribbon {
    display: inline-flex;
    margin: 0 24px 18px;
    padding: 10px 16px;
    color: var(--pink);
    font-size: clamp(1.15rem, 2.5vw, 1.85rem);
    font-weight: 1000;
    line-height: 1;
    text-transform: uppercase;
    background: var(--white);
    border-radius: 999px 999px 999px 8px;
    box-shadow: 7px 7px 0 var(--yellow);
}

.event-card dl {
    display: grid;
    gap: 9px;
    margin: 28px 24px;
}

.event-card dl div {
    padding: 13px;
    border-left: 6px solid var(--pink);
    background: rgba(255, 255, 255, .09);
}

.event-card dt {
    color: var(--yellow);
    font-size: .76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.event-card dd {
    margin: 3px 0 0;
    font-weight: 900;
}

.event-card > p:last-child {
    margin: 0;
    padding: 0 24px 28px;
}

.event-card > p:last-child,
.split-section p,
.parking-copy p,
.parking-copy li,
.rules-list p {
    color: #3c4658;
    line-height: 1.58;
}

.split-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
    gap: 34px;
    align-items: center;
    padding: 70px 0 86px;
    border-top: 1px solid var(--line);
}

.sound-wave {
    position: absolute;
    inset: 36px -7vw auto;
    height: 160px;
    overflow: hidden;
    pointer-events: none;
    opacity: .22;
}

.sound-wave span {
    position: absolute;
    left: -8vw;
    width: 116vw;
    height: 90px;
    border: 8px solid var(--pink);
    border-color: var(--pink) transparent transparent transparent;
    border-radius: 50%;
    animation: soundSwell 3.4s ease-in-out infinite;
}

.sound-wave span:nth-child(2) {
    top: 36px;
    border-top-color: var(--blue);
    animation-delay: -.9s;
}

.sound-wave span:nth-child(3) {
    top: 72px;
    border-top-color: var(--yellow);
    animation-delay: -1.8s;
}

.radio-panel {
    display: grid;
    gap: 14px;
    min-height: 340px;
    padding: 28px;
    border-radius: 38px 38px 38px 10px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 0, 122, .62), rgba(20, 40, 255, .34)),
        var(--black);
    box-shadow: 14px 16px 0 var(--yellow), 0 26px 54px rgba(0, 0, 0, .2);
    clip-path: none;
}

.radio-panel strong {
    align-self: end;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: .9;
    text-transform: uppercase;
}

.equalizer {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 96px;
}

.equalizer i {
    width: 18px;
    height: 34px;
    border-radius: 999px;
    background: var(--yellow);
    animation: equalize 1s ease-in-out infinite;
}

.equalizer i:nth-child(2) { animation-delay: .15s; background: var(--pink); }
.equalizer i:nth-child(3) { animation-delay: .3s; background: var(--cyan); }
.equalizer i:nth-child(4) { animation-delay: .45s; background: var(--green); }
.equalizer i:nth-child(5) { animation-delay: .6s; }

.info-bands {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 80px;
}

.chat-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 28px;
    align-items: start;
    padding: 26px 0 86px;
}

.chat-section::before {
    content: "";
    position: absolute;
    inset: 0 -8vw auto;
    height: 120px;
    opacity: .2;
    background:
        radial-gradient(80px 46px at 80px 0, transparent 78px, var(--pink) 80px 84px, transparent 86px) repeat-x;
    background-size: 160px 120px;
    animation: waveTrack 10s linear infinite;
    pointer-events: none;
}

.chat-copy,
.chat-box {
    position: relative;
    z-index: 2;
}

.chat-copy p:not(.eyebrow) {
    max-width: 620px;
    color: #3c4658;
    font-size: 1.08rem;
    line-height: 1.6;
}

.chat-box,
.portal-login,
.message-card {
    border-radius: 34px 34px 34px 8px;
    background: var(--white);
    box-shadow: 14px 16px 0 rgba(255, 0, 122, .16), 0 24px 50px rgba(17, 18, 26, .1);
}

.chat-box,
.portal-login {
    display: grid;
    gap: 16px;
    padding: 26px;
    border: 3px solid var(--ink);
}

.chat-box label,
.portal-login label {
    display: grid;
    gap: 7px;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.chat-box input,
.chat-box textarea,
.portal-login input {
    width: 100%;
    border: 2px solid rgba(17, 18, 26, .18);
    border-radius: 18px 18px 18px 5px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    font-weight: 760;
    background: #f8f6ef;
    outline: none;
}

.chat-box textarea {
    resize: vertical;
}

.chat-box input:focus,
.chat-box textarea:focus,
.portal-login input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 0, 122, .14);
}

.audio-recorder {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 999px 999px 999px 22px;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 0, 122, .28), transparent 34%),
        var(--black);
}

.mic-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--pink);
    box-shadow: 0 8px 0 var(--yellow), 0 0 0 0 rgba(255, 0, 122, .52);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

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

.mic-button.is-recording {
    animation: micPulse 1.1s ease-in-out infinite;
}

.mic-icon {
    position: relative;
    width: 18px;
    height: 27px;
    border: 3px solid currentColor;
    border-radius: 12px;
}

.mic-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 24px;
    height: 14px;
    border: 3px solid currentColor;
    border-top: 0;
    border-radius: 0 0 18px 18px;
    transform: translateX(-50%);
}

.mic-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -19px;
    width: 3px;
    height: 10px;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
}

.voice-status {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.voice-status strong {
    color: var(--white);
    font-size: .86rem;
    font-weight: 950;
    text-transform: uppercase;
}

.audio-recorder span,
.voice-status span {
    color: rgba(255, 255, 255, .76);
    font-weight: 850;
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 18px;
}

.voice-wave i {
    width: 4px;
    height: 7px;
    border-radius: 999px;
    background: var(--yellow);
    opacity: .46;
}

.mic-button.is-recording + .voice-status .voice-wave i {
    opacity: 1;
    animation: voiceWave .8s ease-in-out infinite;
}

.mic-button.is-recording + .voice-status .voice-wave i:nth-child(2) { animation-delay: -.1s; }
.mic-button.is-recording + .voice-status .voice-wave i:nth-child(3) { animation-delay: -.2s; }
.mic-button.is-recording + .voice-status .voice-wave i:nth-child(4) { animation-delay: -.3s; }
.mic-button.is-recording + .voice-status .voice-wave i:nth-child(5) { animation-delay: -.4s; }

.clear-audio {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    font-weight: 950;
    background: rgba(255, 255, 255, .14);
    cursor: pointer;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--green);
    font-weight: 900;
}

.form-status.error {
    color: var(--pink);
}

.info-bands a {
    min-height: 150px;
    padding: 24px;
    border-radius: 30px 30px 30px 8px;
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--ink), #111827);
    box-shadow: inset 0 -8px 0 rgba(255, 255, 255, .06);
    transition: transform .18s ease;
}

.info-bands a:nth-child(2) {
    background: linear-gradient(135deg, var(--pink), #9b0048);
}

.info-bands a:nth-child(3) {
    color: var(--black);
    background: var(--yellow);
}

.info-bands a:hover {
    transform: translateY(-4px) rotate(-1deg);
}

.page-hero.compact {
    min-height: 540px;
    padding-bottom: 80px;
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 70px 0;
}

.rules-list article {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-height: 130px;
    padding: 22px;
    border: 2px solid rgba(16, 20, 38, .12);
    border-radius: 26px 26px 26px 8px;
    background: var(--white);
    box-shadow: 0 18px 38px rgba(16, 20, 38, .08);
}

.rules-list span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white);
    font-weight: 950;
    background: var(--pink);
}

.rules-list p {
    margin: 0;
    font-weight: 760;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
    padding: 28px;
    border-radius: 30px 30px 30px 8px;
    color: var(--white);
    background: var(--black);
}

.parking-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    padding: 70px 0 86px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    gap: 26px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 70px 0 86px;
}

.contact-cards {
    display: grid;
    gap: 16px;
}

.contact-card {
    display: grid;
    gap: 8px;
    min-height: 130px;
    padding: 24px;
    border: 3px solid var(--ink);
    border-radius: 30px 30px 30px 8px;
    color: var(--ink);
    text-decoration: none;
    background: var(--white);
    box-shadow: 10px 12px 0 rgba(255, 0, 122, .16);
    transition: transform .18s ease, box-shadow .18s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 14px 16px 0 rgba(255, 0, 122, .22);
}

.contact-card span {
    color: var(--pink);
    font-size: .78rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.contact-card strong {
    font-size: clamp(1.2rem, 2.4vw, 1.9rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.contact-map {
    min-height: 520px;
    margin: 0;
    border: 3px solid var(--ink);
    border-radius: 34px 34px 34px 8px;
    overflow: hidden;
    box-shadow: 14px 16px 0 rgba(17, 18, 26, .12);
    background: var(--white);
}

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

.parking-copy,
.map-frame {
    margin: 0;
    border-radius: 30px 30px 30px 8px;
    background: var(--white);
    box-shadow: 0 24px 48px rgba(16, 20, 38, .1);
}

.parking-copy {
    padding: 28px;
}

.route-icon {
    position: relative;
    width: 86px;
    height: 86px;
    margin-bottom: 18px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 0, 122, .14), rgba(255, 230, 0, .22)),
        var(--white);
    box-shadow: inset 0 0 0 2px rgba(17, 18, 26, .12);
}

.route-icon::before {
    content: "";
    position: absolute;
    inset: 19px 23px 23px;
    border: 4px solid var(--pink);
    border-top-color: transparent;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.route-icon::after {
    content: "";
    position: absolute;
    left: 38px;
    top: 34px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--pink);
}

.route-icon span {
    position: absolute;
    right: 12px;
    bottom: 14px;
    left: 12px;
    height: 4px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, var(--ink) 0 10px, transparent 10px 16px);
    opacity: .35;
}

.parking-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.parking-copy ul {
    margin: 24px 0 0;
    padding-left: 20px;
}

.parking-copy li + li {
    margin-top: 9px;
}

.map-frame {
    display: grid;
    min-height: 520px;
    border: 3px solid var(--ink);
    overflow: hidden;
}

.map-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f4f6fb;
}

.map-placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    min-height: 520px;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(45deg, rgba(255, 255, 255, .14) 0 4px, transparent 4px 32px),
        linear-gradient(135deg, var(--blue), var(--pink));
}

.map-placeholder strong {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: .9;
    text-transform: uppercase;
}

.map-placeholder span {
    font-weight: 950;
}

.sticky-player {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 95;
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(930px, calc(100% - 36px));
    min-height: 76px;
    margin: 0 auto;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, .16);
    border-radius: 26px 26px 26px 8px;
    color: var(--white);
    background: rgba(5, 5, 9, .97);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
    backdrop-filter: blur(18px);
    transform: translateY(calc(100% + 32px));
    transition: transform .25s cubic-bezier(.2, .9, .2, 1);
}

body.player-open {
    padding-bottom: 112px;
}

body.player-open .sticky-player {
    transform: translateY(0);
}

.round-player,
.close-player {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.round-player {
    width: 48px;
    height: 48px;
    color: var(--white);
    background: var(--pink);
    box-shadow: 0 7px 0 var(--yellow);
}

.sticky-player strong,
.sticky-player span {
    display: block;
}

.sticky-player strong {
    font-size: 1.05rem;
    text-transform: uppercase;
}

.sticky-player span {
    color: rgba(255, 255, 255, .68);
    font-weight: 800;
}

.sticky-player a {
    margin-left: auto;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 950;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--pink);
}

.close-player {
    width: 34px;
    height: 34px;
    color: var(--white);
    font-weight: 950;
    background: rgba(255, 255, 255, .12);
}

.site-footer {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 24px 18px;
    color: rgba(255, 255, 255, .82);
    background: var(--black);
}

.portal-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 0, 122, .22), transparent 28rem),
        radial-gradient(circle at 90% 30%, rgba(0, 216, 255, .18), transparent 24rem),
        var(--paper);
}

.dj-portal {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 54px 0 80px;
}

.portal-login {
    width: min(520px, 100%);
    margin: 9vh auto 0;
}

.portal-login-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    color: var(--white);
    background: var(--ink);
    border-radius: 22px 22px 22px 6px;
    box-shadow: 7px 7px 0 var(--yellow);
}

.portal-login-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
}

.portal-login-brand strong {
    color: var(--white);
    font-size: clamp(1.05rem, 3.4vw, 1.45rem);
    font-weight: 1000;
    line-height: .95;
    text-transform: uppercase;
}

.portal-login h1,
.portal-head h1 {
    color: var(--ink);
    font-size: clamp(3rem, 8vw, 6.5rem);
}

.portal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 6px solid var(--ink);
}

.message-list {
    display: grid;
    gap: 16px;
}

.message-card {
    padding: 22px;
    border: 2px solid rgba(17, 18, 26, .12);
}

.message-card header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 12px;
}

.message-card strong {
    color: var(--pink);
    font-size: 1.25rem;
    text-transform: uppercase;
}

.message-card time {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
}

.message-card p {
    margin: 0 0 14px;
    color: #31394a;
    font-size: 1.08rem;
    line-height: 1.55;
}

.message-card audio {
    width: 100%;
    margin-top: 6px;
}

.message-card.empty {
    text-align: center;
}

.site-footer a {
    color: var(--yellow);
    font-weight: 950;
    text-decoration: none;
}

@keyframes shine {
    100% { transform: translateX(115%) rotate(12deg); }
}

@keyframes ticker {
    100% { transform: translateX(-50%); }
}

@keyframes patternMove {
    100% { background-position: 52px 52px, 64px 64px, -86px 86px; }
}

@keyframes rotateSlow {
    100% { transform: rotate(360deg); }
}

@keyframes speedSlide {
    0%, 100% { transform: translateX(0) skewX(-24deg); }
    50% { transform: translateX(-36px) skewX(-24deg); }
}

@keyframes waveDrift {
    0%, 100% { translate: 0 0; scale: 1 1; }
    50% { translate: 42px 12px; scale: 1.02 .86; }
}

@keyframes heroWave {
    100% { clip-path: ellipse(92% 72% at 48% 100%); }
}

@keyframes sawPulse {
    100% {
        clip-path: polygon(
            0 26%, 6% 34%, 12% 24%, 18% 33%, 24% 22%, 30% 34%,
            36% 24%, 42% 31%, 48% 20%, 54% 32%, 60% 24%, 66% 35%,
            72% 23%, 78% 33%, 84% 24%, 90% 34%, 96% 22%, 100% 31%,
            100% 100%, 0 100%
        );
    }
}

@keyframes sawSweep {
    100% {
        clip-path: polygon(
            0 50%, 9% 42%, 18% 33%, 26% 25%, 36% 31%,
            47% 34%, 58% 37%, 69% 41%, 80% 45%, 91% 48%,
            100% 53%, 100% 100%, 0 100%
        );
    }
}

@keyframes countdownBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes micPulse {
    70% { box-shadow: 0 8px 0 var(--yellow), 0 0 0 16px rgba(255, 0, 122, 0); }
    100% { box-shadow: 0 8px 0 var(--yellow), 0 0 0 0 rgba(255, 0, 122, 0); }
}

@keyframes voiceWave {
    0%, 100% { height: 6px; }
    50% { height: 18px; }
}

@keyframes waveTrack {
    100% { background-position-x: 96px; }
}

@keyframes soundSwell {
    0%, 100% { transform: translateX(0) scaleY(.82); }
    50% { transform: translateX(28px) scaleY(1.18); }
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 13px rgba(31, 214, 120, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 214, 120, 0); }
}

@keyframes floatNote {
    0% { transform: translate3d(0, 0, 0) rotate(-12deg); opacity: 0; }
    12% { opacity: 1; }
    100% { transform: translate3d(34px, -850px, 0) rotate(24deg); opacity: 0; }
}

@keyframes equalize {
    0%, 100% { height: 24px; }
    50% { height: 94px; }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .main-nav {
        grid-column: 1 / -1;
        order: 3;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .ticker {
        margin-top: 132px;
    }

    .hero-board {
        position: relative;
        top: auto;
        right: auto;
        z-index: 4;
        width: min(560px, calc(100% - 36px));
        margin: 34px 18px 0;
    }

    .countdown-panel {
        position: relative;
        right: auto;
        bottom: auto;
        z-index: 4;
        grid-template-columns: 1fr;
        width: min(620px, calc(100% - 36px));
        margin: 28px 0 0;
    }

    .hero {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: 860px;
    }

    .hero .countdown-panel {
        justify-self: start;
        width: min(620px, 100%);
    }

    .event-grid,
    .info-bands {
        grid-template-columns: 1fr;
    }

    .section-title,
    .lineup-section,
    .split-section,
    .boerenshot-section,
    .chat-section,
    .contact-layout,
    .parking-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header {
        min-height: 138px;
        gap: 10px;
    }

    .brand {
        width: 142px;
    }

    .header-actions {
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .header-actions .button {
        min-height: 42px;
        padding: 0 12px;
        font-size: .74rem;
    }

    .ticker {
        margin-top: 144px;
    }

    .social-rail {
        top: auto;
        right: 10px;
        bottom: 108px;
        left: auto;
        grid-auto-flow: column;
        transform: none;
    }

    .social-rail a {
        width: 46px;
        height: 46px;
        font-size: 1.55rem;
        box-shadow: 0 7px 0 rgba(255, 230, 0, .9);
    }

    .social-rail a:hover {
        transform: translateY(-5px);
        box-shadow: 0 11px 0 var(--yellow);
    }

    .hero {
        min-height: 920px;
        padding-top: 90px;
    }

    h1 {
        font-size: clamp(3.15rem, 15vw, 5.5rem);
    }

    .hero-actions,
    .cta-band,
    .cta-band div {
        align-items: stretch;
        flex-direction: column;
    }

    .scroll-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 34px 18px 0;
    }

    .speed-lines::before,
    .speed-lines::after {
        width: 90vw;
        opacity: .45;
    }

    .wave-ribbons span {
        height: 66px;
        border-width: 5px;
    }

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

    .audio-recorder {
        grid-template-columns: 54px minmax(0, 1fr) auto;
        border-radius: 28px 28px 28px 8px;
    }

    .mic-button {
        width: 54px;
        height: 54px;
    }

    .rules-list {
        grid-template-columns: 1fr;
    }

    .sticky-player {
        flex-wrap: wrap;
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px);
    }

    .sticky-player a {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .portal-head,
    .message-card header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

/* Compact hero layout: title left, countdown right. */
.hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
    min-height: 610px;
    padding-top: 70px;
    padding-bottom: 112px;
}

.hero .hero-content {
    max-width: 660px;
}

.hero .eyebrow {
    margin-bottom: 14px;
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(3rem, 6.8vw, 5.8rem);
    line-height: .9;
}

.hero-text {
    max-width: 540px;
    margin: 16px 0 24px;
    font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.hero-actions {
    gap: 12px;
}

.hero .button.big {
    min-height: 54px;
    padding: 0 22px;
}

.hero .countdown-panel {
    justify-self: end;
    width: min(390px, 100%);
}

.hero .countdown-copy {
    padding: 16px;
    border-radius: 24px 24px 24px 7px;
}

.hero .countdown-copy > strong {
    font-size: clamp(1.7rem, 3.1vw, 2.6rem);
}

.hero .countdown-copy > span {
    font-size: .92rem;
}

.hero .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.hero .countdown-grid div {
    min-height: 78px;
    padding: 10px 7px;
    box-shadow: 5px 5px 0 rgba(255, 230, 0, .86);
}

.hero .countdown-grid span {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.hero .countdown-grid small {
    font-size: .78rem;
}

.hero .scroll-card {
    display: none;
}

.hero-wave {
    height: 82px;
    display: none;
}

.saw-divider {
    height: 112px;
    background: var(--paper);
    clip-path: polygon(
        0 44%, 9% 36%, 18% 28%, 26% 20%, 36% 28%,
        47% 31%, 58% 35%, 69% 38%, 80% 42%, 91% 47%,
        100% 50%, 100% 100%, 0 100%
    );
    animation: sawSweep 5.2s ease-in-out infinite alternate;
}

.quick-links {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    width: min(950px, calc(100% - 36px));
    margin: -36px auto 58px;
}

.quick-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 18px;
    border: 2px solid rgba(17, 18, 26, .62);
    color: var(--ink);
    font-weight: 1000;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--white);
    box-shadow: 0 10px 0 rgba(17, 18, 26, .08);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.quick-links a::after {
    content: "→";
    margin-left: 8px;
}

.quick-links a.active,
.quick-links a:hover {
    border-color: var(--pink);
    color: var(--white);
    background: var(--pink);
    transform: translateY(-3px);
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: 760px;
        padding-top: 58px;
        padding-bottom: 118px;
    }

    .hero .countdown-panel {
        justify-self: start;
        width: min(520px, 100%);
        margin-top: 8px;
    }

    .quick-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: -28px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 800px;
        padding-top: 48px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.4rem);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero .countdown-grid div {
        min-height: 72px;
    }

    .lineup-track {
        grid-auto-columns: minmax(230px, 82%);
    }

    .lineup-card,
    .lineup-card img {
        min-height: 320px;
    }

    .slider-button {
        display: none;
    }

    .quick-links {
        grid-template-columns: 1fr;
        margin-top: -18px;
        gap: 9px;
    }

    .quick-links a {
        min-height: 50px;
    }

    .chat-box,
    .portal-login {
        padding: 18px;
    }

    .contact-layout {
        padding-top: 46px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 360px;
    }

    .sponsor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .sponsor-card {
        min-height: 130px;
    }
}

/* Young professional event theme override. */
body {
    background: #f6f4ef;
}

.noise,
.speed-lines,
.wave-ribbons,
.notes,
.section-wave,
.sound-wave {
    display: none;
}

.site-header {
    min-height: 82px;
    background: rgba(5, 5, 9, .94);
}

.ticker {
    margin-top: 82px;
    background: #11121a;
}

.ticker span {
    min-height: 36px;
    color: rgba(255, 255, 255, .86);
    font-size: .78rem;
}

.hero {
    min-height: 590px;
    background:
        linear-gradient(90deg, rgba(5, 5, 9, .88), rgba(5, 5, 9, .58)),
        url("../images/header.png") center / cover,
        #11121a;
}

.hero::before {
    opacity: .18;
    background-image:
        linear-gradient(120deg, transparent 0 62%, rgba(255, 0, 122, .62) 62% 64%, transparent 64%),
        linear-gradient(45deg, rgba(255, 255, 255, .16) 0 1px, transparent 1px 32px);
    animation: none;
}

.hero::after {
    opacity: .26;
    border-width: 34px;
}

.hero .eyebrow,
.eyebrow.dark {
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
}

.eyebrow.dark {
    color: var(--ink);
    border-color: rgba(17, 18, 26, .12);
    background: rgba(255, 255, 255, .8);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.3rem);
}

.button {
    border-radius: 999px;
}

.button-ticket {
    box-shadow: 0 12px 26px rgba(255, 0, 122, .22);
}

.button-live {
    background: rgba(255, 255, 255, .12);
}

.countdown-copy,
.countdown-grid div {
    border-radius: 18px;
}

.hero .countdown-copy {
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(5, 5, 9, .68);
}

.hero .countdown-grid div {
    background: var(--pink);
    box-shadow: none;
    animation: none;
}

.saw-divider {
    height: 86px;
    animation: none;
}

.quick-links {
    margin-top: -28px;
    gap: 10px;
}

.quick-links a {
    min-height: 52px;
    border: 1px solid rgba(17, 18, 26, .16);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(17, 18, 26, .08);
    font-size: .86rem;
}

.event-strip {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 18px 0 76px;
    padding: 82px max(18px, calc((100vw - 1180px) / 2)) 88px;
    background: var(--yellow);
    overflow: hidden;
    clip-path: polygon(
        0 5%, 7% 0, 14% 5%, 21% 0, 28% 5%, 35% 0, 42% 5%,
        49% 0, 56% 5%, 63% 0, 70% 5%, 77% 0, 84% 5%, 91% 0,
        100% 5%, 100% 100%, 0 100%
    );
}

.event-strip::before {
    content: "";
    position: absolute;
    inset: 20px max(18px, calc((100vw - 1180px) / 2)) 44px auto;
    width: min(380px, 34vw);
    background:
        linear-gradient(90deg, rgba(255, 230, 0, .08), rgba(255, 230, 0, .78)),
        url("../images/archief-background.png") center 24% / cover no-repeat;
    border-radius: 32px;
    opacity: .28;
    filter: saturate(.9) contrast(1.05);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.event-strip::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44px;
    background: #f6f4ef;
    clip-path: polygon(
        0 100%, 7% 68%, 14% 100%, 21% 68%, 28% 100%, 35% 68%, 42% 100%,
        49% 68%, 56% 100%, 63% 68%, 70% 100%, 77% 68%, 84% 100%, 91% 68%,
        100% 100%
    );
    pointer-events: none;
}

.lineup-section {
    padding-top: 18px;
}

.section-title {
    border-bottom: 1px solid rgba(17, 18, 26, .14);
}

.event-strip .section-title {
    position: relative;
    z-index: 2;
    border-bottom-color: rgba(17, 18, 26, .2);
}

.event-strip .event-grid {
    position: relative;
    z-index: 2;
}

.event-card {
    min-height: 420px;
    border-radius: 24px;
    color: var(--ink);
    background: var(--yellow);
    border: 3px solid var(--ink);
    box-shadow: 12px 14px 0 var(--pink), 0 20px 42px rgba(17, 18, 26, .16);
    transform: rotate(-1deg);
}

.event-card:nth-child(even) {
    transform: rotate(1deg);
}

.event-card::before {
    height: 76px;
    background: var(--pink);
    clip-path: polygon(
        0 0, 100% 0, 100% 70%, 92% 100%, 84% 72%, 76% 100%, 68% 72%,
        60% 100%, 52% 72%, 44% 100%, 36% 72%, 28% 100%, 20% 72%,
        12% 100%, 4% 72%, 0 92%
    );
}

.event-card::after {
    opacity: .16;
    mix-blend-mode: multiply;
}

.event-date-ribbon {
    border-radius: 999px;
    box-shadow: 6px 6px 0 var(--pink);
}

.event-strip .section-title p,
.event-strip .event-card > p:first-child {
    color: var(--ink);
    background: var(--pink);
}

.event-strip .section-title h2 {
    color: var(--ink);
}

.event-strip .event-card h3 {
    color: var(--ink);
}

.event-strip .event-card::before {
    background: var(--pink);
}

.event-strip .event-date-ribbon {
    color: var(--pink);
    background: var(--white);
}

.event-strip .event-card dl div {
    border-left-color: var(--pink);
    color: var(--ink);
    background: rgba(255, 255, 255, .52);
}

.event-strip .event-card dt {
    color: var(--pink);
}

.event-strip .event-card dd,
.event-strip .event-card > p:last-child {
    color: var(--ink);
}

.radio-panel,
.chat-box,
.portal-login,
.message-card,
.contact-card,
.contact-map,
.parking-copy,
.map-frame,
.rules-list article {
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(17, 18, 26, .1);
}

.radio-panel {
    box-shadow: 0 22px 44px rgba(17, 18, 26, .18);
}

.radio-live-card {
    position: relative;
    z-index: 4;
    display: grid;
    gap: 14px;
    justify-self: end;
    width: min(390px, 100%);
    padding: 26px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 0, 122, .7), rgba(20, 40, 255, .36)),
        rgba(5, 5, 9, .88);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 24px;
    box-shadow: 0 22px 44px rgba(5, 5, 9, .28);
    backdrop-filter: blur(14px);
}

.radio-live-card p {
    width: fit-content;
    margin: 0;
    padding: 8px 12px;
    color: var(--white);
    font-size: .74rem;
    font-weight: 1000;
    text-transform: uppercase;
    background: var(--pink);
    border-radius: 999px;
}

.radio-live-card strong {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 1000;
    line-height: .9;
    text-transform: uppercase;
}

.radio-live-card span {
    color: rgba(255, 255, 255, .82);
    font-weight: 850;
    line-height: 1.45;
}

.radio-live-card .button {
    width: fit-content;
}

.portal-link {
    margin-top: 8px;
}

.advertise-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 28px;
    align-items: center;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 78px;
    padding: 34px 0 20px;
    border-top: 1px solid var(--line);
}

.sponsor-advertise {
    padding-top: 70px;
}

.advertise-section p:not(.eyebrow) {
    max-width: 640px;
    color: #3c4658;
    font-size: 1.08rem;
    line-height: 1.6;
}

.advertise-card {
    display: grid;
    gap: 12px;
    min-height: 310px;
    padding: 26px;
    color: var(--white);
    background:
        radial-gradient(circle at 86% 16%, rgba(255, 230, 0, .28), transparent 30%),
        var(--black);
    border-radius: 24px;
    box-shadow: 12px 14px 0 var(--yellow), 0 20px 42px rgba(17, 18, 26, .16);
}

.advertise-card span {
    color: var(--yellow);
    font-size: .82rem;
    font-weight: 1000;
    text-transform: uppercase;
}

.advertise-card strong {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 1000;
    line-height: .86;
    text-transform: uppercase;
}

.advertise-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-weight: 900;
    text-transform: uppercase;
}

.advertise-card .button {
    align-self: end;
    width: fit-content;
}

.radio-style-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 12px 0 82px;
    padding: 68px max(18px, calc((100vw - 1180px) / 2)) 76px;
    color: var(--white);
    background: var(--pink);
    overflow: hidden;
    clip-path: polygon(
        0 7%, 8% 0, 16% 7%, 24% 0, 32% 7%, 40% 0, 48% 7%,
        56% 0, 64% 7%, 72% 0, 80% 7%, 88% 0, 96% 7%, 100% 2%,
        100% 100%, 0 100%
    );
}

.radio-style-section::before {
    content: "";
    position: absolute;
    right: max(18px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    width: min(320px, 34vw);
    height: min(320px, 34vw);
    border: 42px solid var(--yellow);
    border-radius: 50%;
    opacity: .42;
    pointer-events: none;
}

.radio-style-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48px;
    background: #f6f4ef;
    clip-path: polygon(
        0 70%, 8% 100%, 16% 70%, 24% 100%, 32% 70%, 40% 100%, 48% 70%,
        56% 100%, 64% 70%, 72% 100%, 80% 70%, 88% 100%, 96% 70%, 100% 100%,
        100% 100%, 0 100%
    );
    pointer-events: none;
}

.radio-style-section > * {
    position: relative;
    z-index: 1;
}

.radio-style-section .eyebrow.dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, .28);
    background: rgba(5, 5, 9, .22);
}

.radio-style-section h2 {
    max-width: 760px;
}

.radio-style-section p:not(.eyebrow) {
    max-width: 650px;
    color: rgba(255, 255, 255, .88);
    font-size: 1.12rem;
    line-height: 1.6;
}

.radio-style-section .button-ticket {
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 0 8px 0 var(--ink);
    white-space: nowrap;
}

.spotify-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(260px, 1.05fr);
    gap: 22px;
    align-items: center;
    max-width: 920px;
    margin: 22px auto 84px;
    padding: 28px;
    color: var(--white);
    background: var(--pink);
    overflow: hidden;
    border-radius: 24px 24px 24px 8px;
    box-shadow: 12px 14px 0 var(--yellow), 0 22px 44px rgba(17, 18, 26, .16);
    clip-path: polygon(
        0 0, 8% 5%, 16% 0, 24% 5%, 32% 0, 40% 5%, 48% 0,
        56% 5%, 64% 0, 72% 5%, 80% 0, 88% 5%, 96% 0, 100% 3%,
        100% 100%, 0 100%
    );
}

.spotify-section::before {
    content: "";
    position: absolute;
    inset: 14px 0 auto;
    height: 82px;
    background-image: radial-gradient(rgba(255, 255, 255, .28) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: .48;
    pointer-events: none;
}

.spotify-section::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -66px;
    width: 150px;
    height: 150px;
    border: 24px solid var(--yellow);
    border-radius: 50%;
    opacity: .38;
    pointer-events: none;
}

.spotify-copy,
.spotify-section iframe {
    position: relative;
    z-index: 1;
}

.spotify-section .eyebrow.dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, .3);
    background: rgba(5, 5, 9, .22);
}

.spotify-section h2 {
    margin: 8px 0;
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.spotify-section p:not(.eyebrow) {
    max-width: 520px;
    color: rgba(255, 255, 255, .88);
    font-size: .98rem;
}

.spotify-button {
    margin-top: 14px;
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 0 6px 0 var(--ink);
}

.spotify-section iframe {
    width: 100%;
    border: 0;
    min-height: 152px;
    border-radius: 14px;
    box-shadow: 7px 8px 0 var(--ink), 0 16px 28px rgba(5, 5, 9, .2);
}

.info-bands a {
    border-radius: 24px;
    min-height: 130px;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 126px;
    }

    .ticker {
        margin-top: 126px;
    }

    .hero {
        min-height: 760px;
    }

    .radio-live-card,
    .advertise-section {
        justify-self: start;
        grid-template-columns: 1fr;
        width: min(560px, 100%);
    }

    .advertise-section {
        width: min(1180px, calc(100% - 36px));
    }

    .radio-style-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header {
        min-height: 132px;
    }

    .ticker {
        margin-top: 132px;
    }

    .hero {
        min-height: 760px;
    }

    .social-rail {
        display: none;
    }

    .radio-live-card {
        padding: 22px;
    }

    .advertise-card {
        min-height: 260px;
    }

    .radio-style-section {
        padding-top: 56px;
    }

    .radio-style-section::before {
        width: 190px;
        height: 190px;
        border-width: 28px;
    }
}

/* BoerenShot feature block. */
.boerenshot-section {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 18px 0 82px;
    padding: 68px max(18px, calc((100vw - 1180px) / 2)) 76px;
    color: var(--white);
    background: var(--pink);
    overflow: hidden;
    clip-path: polygon(
        0 7%, 8% 0, 16% 7%, 24% 0, 32% 7%, 40% 0, 48% 7%,
        56% 0, 64% 7%, 72% 0, 80% 7%, 88% 0, 96% 7%, 100% 2%,
        100% 100%, 0 100%
    );
}

.boerenshot-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48px;
    background: #f6f4ef;
    clip-path: polygon(
        0 70%, 8% 100%, 16% 70%, 24% 100%, 32% 70%, 40% 100%, 48% 70%,
        56% 100%, 64% 70%, 72% 100%, 80% 70%, 88% 100%, 96% 70%, 100% 100%,
        100% 100%, 0 100%
    );
}

.boerenshot-section .eyebrow.dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, .28);
    background: rgba(5, 5, 9, .22);
}

.boerenshot-section p:not(.eyebrow) {
    color: rgba(255, 255, 255, .88);
    font-size: 1.12rem;
}

.boerenshot-logo {
    min-height: 320px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.boerenshot-logo img {
    max-height: 320px;
    filter: drop-shadow(0 28px 36px rgba(5, 5, 9, .38));
    animation: bottleSwing 3.8s ease-in-out infinite;
    transform-origin: 50% 20%;
}

@keyframes bottleSwing {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-8px); }
}

@media (max-width: 760px) {
    .event-strip::before {
        inset: 28px 18px auto auto;
        width: 210px;
        height: 300px;
        opacity: .2;
    }

    .spotify-section {
        grid-template-columns: 1fr;
        margin: 18px 18px 72px;
        padding: 24px;
    }

    .spotify-section iframe {
        height: 152px;
        box-shadow: 6px 7px 0 var(--ink), 0 14px 26px rgba(5, 5, 9, .2);
    }

    .boerenshot-section {
        grid-template-columns: 1fr;
        padding-top: 62px;
        text-align: left;
    }

    .boerenshot-logo {
        min-height: 240px;
    }

    .boerenshot-logo img {
        max-height: 250px;
    }
}
