:root {
    color-scheme: dark;
    --bg: #07040c;
    --bg2: #13091f;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, .72);
    --soft: rgba(255, 255, 255, .085);
    --soft2: rgba(255, 255, 255, .14);
    --line: rgba(255, 255, 255, .16);
    --pink: #ff2bd6;
    --cyan: #27f5ff;
    --violet: #8f43ff;
    --yellow: #ffe86b;
    --green: #4cffb4;
    --red: #ff5d7a;
    --shadow: 0 28px 90px rgba(0, 0, 0, .55);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 43, 214, .30), transparent 28rem),
        radial-gradient(circle at 92% 14%, rgba(39, 245, 255, .24), transparent 28rem),
        radial-gradient(circle at 45% 100%, rgba(143, 67, 255, .30), transparent 34rem),
        linear-gradient(135deg, #07040c 0%, #180c29 45%, #070a13 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.noise,
.scanlines,
.laser,
.orb {
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

.noise {
    inset: 0;
    opacity: .13;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, .07) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, .04) 25%, transparent 25%);
    background-size: 8px 8px;
}

.scanlines {
    inset: 0;
    opacity: .08;
    background: repeating-linear-gradient(to bottom, transparent 0, transparent 4px, rgba(255, 255, 255, .08) 5px);
}

.laser {
    width: 120vw;
    height: 2px;
    left: -10vw;
    background: linear-gradient(90deg, transparent, rgba(255, 43, 214, .85), rgba(39, 245, 255, .85), transparent);
    filter: blur(.3px);
    transform-origin: center;
    animation: laserMove 7s linear infinite;
}

.laser-one {
    top: 20%;
    transform: rotate(-10deg);
}

.laser-two {
    top: 64%;
    transform: rotate(13deg);
    animation-delay: -3s;
}

.orb {
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    filter: blur(42px);
    opacity: .34;
    animation: floatOrb 10s ease-in-out infinite alternate;
}

.orb-one {
    left: -7rem;
    top: 20rem;
    background: var(--pink);
}

.orb-two {
    right: -8rem;
    top: 8rem;
    background: var(--cyan);
    animation-delay: -2s;
}

.orb-three {
    left: 42%;
    bottom: -10rem;
    background: var(--violet);
    animation-delay: -4s;
}

.site-header {
    width: min(1180px, calc(100% - 26px));
    margin: 14px auto 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(10, 6, 16, .72);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 12px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}

.brand-logo,
.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 0 32px rgba(255, 43, 214, .25);
}

.brand-logo {
    object-fit: contain;
    padding: 6px;
}

.brand-mark {
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 1000;
    letter-spacing: .04em;
    background: linear-gradient(135deg, var(--pink), var(--violet));
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-text strong {
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
}

.brand-text em {
    font-style: normal;
    color: var(--muted);
    font-size: .82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 99px;
    margin: 6px 0;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, .84);
    font-weight: 850;
    font-size: .9rem;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
}

.main-nav a:hover {
    color: #fff;
    border-color: var(--line);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 0 24px rgba(255, 43, 214, .18);
}

.section {
    width: min(1180px, calc(100% - 26px));
    margin: 0 auto;
    padding: clamp(46px, 8vw, 96px) 0;
}

.hero {
    padding-top: clamp(36px, 7vw, 82px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(24px, 5vw, 54px);
    align-items: center;
}

.kicker,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cyan);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: .8rem;
}

.kicker span {
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    border-radius: 99px;
}

h1 {
    font-size: clamp(2.7rem, 8.6vw, 7rem);
    line-height: .89;
    letter-spacing: -.075em;
    margin: 18px 0 18px;
}

h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, var(--pink), var(--cyan), var(--yellow));
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 38px rgba(255, 43, 214, .12);
}

h2 {
    font-size: clamp(2rem, 5.4vw, 4.3rem);
    line-height: .96;
    letter-spacing: -.055em;
    margin: 10px 0 14px;
}

h3 {
    margin: 0 0 8px;
    font-size: 1.24rem;
}

p {
    color: var(--muted);
    line-height: 1.68;
}

.hero-copy > p {
    font-size: clamp(1rem, 2vw, 1.22rem);
    max-width: 720px;
}

.hero-actions,
.inline-actions,
.game-actions,
.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 12px 18px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 950;
    cursor: pointer;
    font: inherit;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: -70%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transform: translateX(-70%) rotate(20deg);
    transition: transform .6s ease;
}

.btn:hover::before {
    transform: translateX(70%) rotate(20deg);
}

.btn-primary {
    border-color: rgba(255, 43, 214, .7);
    background: linear-gradient(135deg, var(--pink), var(--violet));
    box-shadow: 0 18px 42px rgba(255, 43, 214, .28);
}

.btn-ghost {
    background: rgba(255, 255, 255, .085);
}

.btn-danger {
    border-color: rgba(255, 93, 122, .65);
    background: rgba(255, 93, 122, .16);
    color: #ffe0e6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.hero-stats div,
.sound-stack article,
.event-shell,
.quote-card,
.booking-form,
.contact-box,
.profile-photo,
.event-card,
.partner-card,
.legal-card,
.admin-panel,
.admin-login-card,
.admin-dashboard-grid a,
.admin-list-item,
.admin-alert,
.empty-state {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .085);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-stats div {
    padding: 14px;
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    font-size: 1.1rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: .86rem;
}

.hero-stage {
    min-height: 520px;
    display: grid;
    place-items: center;
}

.dj-card {
    width: min(430px, 100%);
    aspect-ratio: 1 / 1.16;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 44px;
    background:
        linear-gradient(135deg, rgba(255, 43, 214, .20), transparent 35%),
        linear-gradient(315deg, rgba(39, 245, 255, .18), transparent 38%),
        rgba(255, 255, 255, .085);
    box-shadow: 0 30px 110px rgba(255, 43, 214, .25), var(--shadow);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.dj-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 90deg, transparent, rgba(255, 43, 214, .24), transparent, rgba(39, 245, 255, .18), transparent);
    animation: spin 11s linear infinite;
    z-index: -1;
}

.vinyl {
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #111 0 8%, #ff2bd6 8% 13%, #17121e 13% 24%, #050509 24% 30%, #17121e 30% 38%, #050509 38% 44%, #17121e 44% 52%, #050509 52%);
    border: 1px solid rgba(255, 255, 255, .18);
    animation: spin 11s linear infinite;
    box-shadow: inset 0 0 50px rgba(255, 255, 255, .08), 0 0 80px rgba(39, 245, 255, .18);
}

.vinyl-core {
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    color: #fff;
    font-weight: 1000;
    display: grid;
    place-items: center;
    position: absolute;
    inset: 0;
    margin: auto;
    letter-spacing: .08em;
}

.card-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    background: rgba(8, 6, 13, .78);
    backdrop-filter: blur(16px);
}

.card-content span {
    color: var(--cyan);
    font-weight: 950;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .09em;
}

.card-content strong {
    display: block;
    font-size: 1.9rem;
    margin-top: 4px;
}

.card-content p {
    margin: 4px 0 0;
}

.equalizer {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 70px;
    display: flex;
    align-items: end;
    gap: 8px;
    opacity: .96;
}

.equalizer i {
    flex: 1;
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(to top, var(--pink), var(--cyan));
    animation: bars 1s ease-in-out infinite alternate;
}

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

.pulse-ring {
    position: absolute;
    width: 68%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(39, 245, 255, .35);
    animation: pulse 2.4s ease-in-out infinite;
}

.ring-b {
    animation-delay: 1.1s;
    border-color: rgba(255, 43, 214, .35);
}

.ticker {
    margin-top: clamp(36px, 8vw, 76px);
    overflow: hidden;
    border-block: 1px solid var(--line);
    padding: 13px 0;
    opacity: .92;
}

.ticker div {
    display: flex;
    gap: 34px;
    white-space: nowrap;
    animation: ticker 24s linear infinite;
}

.ticker span {
    font-weight: 1000;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .6);
    font-size: clamp(1.4rem, 4vw, 3rem);
    letter-spacing: .03em;
}

.section-head {
    max-width: 840px;
    margin-bottom: 24px;
}

.about-grid,
.booking-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 18px;
    align-items: start;
}

.about-copy,
.booking-copy {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .085);
    border-radius: 32px;
    padding: clamp(20px, 4vw, 34px);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.about-copy p {
    margin-bottom: 0;
}

.sound-stack {
    display: grid;
    gap: 14px;
}

.sound-stack article {
    padding: 22px;
    display: grid;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.sound-stack article::after {
    content: "";
    position: absolute;
    inset: auto -20% -60% -20%;
    height: 130px;
    background: linear-gradient(90deg, rgba(255, 43, 214, .22), rgba(39, 245, 255, .16));
    filter: blur(22px);
}

.sound-stack span {
    color: var(--cyan);
    font-weight: 1000;
}

.sound-stack strong {
    font-size: 1.5rem;
}

.profile-gallery {
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr;
    grid-template-rows: repeat(2, minmax(190px, 1fr));
    gap: 14px;
}

.profile-photo {
    margin: 0;
    overflow: hidden;
    position: relative;
    min-height: 220px;
}

.profile-photo:first-child {
    grid-row: span 2;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform .6s ease, filter .6s ease;
}

.profile-photo:first-child img {
    aspect-ratio: 4 / 5;
}

.profile-photo:hover img {
    transform: scale(1.06);
    filter: saturate(1.2) contrast(1.08);
}

.profile-photo figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(0, 0, 0, .54);
    border: 1px solid var(--line);
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
    font-weight: 850;
}

.event-shell {
    padding: clamp(22px, 4vw, 36px);
}

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

.event-card {
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 43, 214, .13), transparent 45%, rgba(39, 245, 255, .10));
    opacity: .9;
}

.event-card > * {
    position: relative;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 950;
    margin-bottom: 10px;
}

.event-card strong {
    display: block;
    font-size: 1.18rem;
    margin-bottom: 6px;
}

.event-card span {
    color: var(--muted);
    display: block;
    font-size: .94rem;
}

.quote-card {
    padding: clamp(26px, 6vw, 58px);
    text-align: center;
}

.quote-card span {
    color: var(--cyan);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: .8rem;
}

.quote-card blockquote {
    margin: 16px auto 0;
    max-width: 880px;
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: .96;
    letter-spacing: -.065em;
    font-weight: 1000;
}

.game-shell {
    width: min(760px, 100%);
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: clamp(18px, 3vw, 26px);
    background:
        linear-gradient(135deg, rgba(255, 43, 214, .17), rgba(39, 245, 255, .10)),
        rgba(255, 255, 255, .085);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}
.game-top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.game-top div {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(0, 0, 0, .22);
    padding: 14px;
    text-align: center;
}

.game-top span {
    display: block;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 850;
}

.game-top strong {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
}

.pad-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(76px, 150px));
    justify-content: center;
    gap: clamp(10px, 1.4vw, 14px);
    touch-action: manipulation;
}

.beat-pad {
    width: 100%;
    max-width: 150px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: clamp(18px, 3vw, 28px);
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .20), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    box-shadow: inset 0 0 30px rgba(255, 255, 255, .04), 0 18px 40px rgba(0, 0, 0, .22);
    cursor: pointer;
}

.beat-pad.active {
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .45), transparent 26%),
        linear-gradient(135deg, var(--pink), var(--cyan));
    box-shadow: 0 0 34px rgba(255, 43, 214, .55), 0 0 70px rgba(39, 245, 255, .32);
    animation: padPulse .7s ease-in-out infinite alternate;
}

.beat-pad.hit {
    transform: scale(.94);
}

.game-actions {
    margin-top: 16px;
}

.game-note {
    margin-bottom: 0;
}

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

.partner-card {
    padding: 20px;
    text-decoration: none;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: "";
    position: absolute;
    inset: auto -30% -60% -30%;
    height: 140px;
    background: linear-gradient(90deg, rgba(255, 43, 214, .18), rgba(39, 245, 255, .14));
    filter: blur(20px);
}

.partner-card > * {
    position: relative;
}

.partner-card img {
    max-height: 74px;
    object-fit: contain;
    object-position: left center;
}

.partner-card strong {
    font-size: 1.16rem;
}

.booking-form {
    padding: clamp(20px, 4vw, 30px);
}

.contact-box {
    padding: 18px;
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.contact-box a,
.contact-box span {
    text-decoration: none;
    color: #fff;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.form-row,
.admin-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}

.form-row label,
.admin-field label {
    font-weight: 900;
    font-size: .92rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .22);
    color: #fff;
    border-radius: 17px;
    padding: 14px 15px;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 125px;
}

.big-textarea {
    min-height: 340px;
}

input:focus,
textarea:focus {
    border-color: rgba(255, 43, 214, .75);
    box-shadow: 0 0 0 4px rgba(255, 43, 214, .14);
}

.form-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-alert,
.admin-alert {
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-weight: 850;
}

.form-alert.success,
.admin-alert.success {
    color: #dfffee;
    border: 1px solid rgba(76, 255, 180, .4);
    background: rgba(76, 255, 180, .12);
}

.form-alert.error,
.admin-alert.error {
    color: #ffe2e8;
    border: 1px solid rgba(255, 93, 122, .42);
    background: rgba(255, 93, 122, .13);
}

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

.legal-card {
    padding: 22px;
}

.legal-card p {
    margin-bottom: 0;
}

.site-footer {
    width: min(1180px, calc(100% - 26px));
    margin: 0 auto 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.site-footer div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer span {
    color: var(--muted);
}

.site-footer a {
    color: #fff;
    font-weight: 950;
    text-decoration: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-body {
    min-height: 100vh;
}

.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 22px;
}

.admin-login-card,
.admin-panel {
    width: min(1180px, calc(100% - 26px));
    margin: 0 auto 18px;
    padding: clamp(20px, 4vw, 34px);
}

.admin-login-card {
    width: min(540px, 100%);
}

.admin-login-logo {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-weight: 1000;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    box-shadow: 0 0 42px rgba(255, 43, 214, .35);
    margin-bottom: 16px;
}

.admin-header {
    width: min(1180px, calc(100% - 26px));
    margin: 14px auto 22px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .085);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: sticky;
    top: 12px;
    z-index: 30;
}

.admin-brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.admin-brand span {
    color: var(--muted);
    font-size: .9rem;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.admin-nav a,
.admin-nav button {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .08);
    color: var(--text);
    border-radius: 999px;
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 850;
    cursor: pointer;
    font: inherit;
}

.admin-nav a.active {
    border-color: rgba(255, 43, 214, .7);
    background: linear-gradient(135deg, var(--pink), var(--violet));
}

.admin-nav form,
.admin-actions form {
    margin: 0;
}

.admin-grid {
    display: grid;
    gap: 14px;
}

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

.admin-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    padding-top: 28px;
}

.admin-check input {
    width: auto;
}

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

.admin-dashboard-grid a {
    padding: 22px;
    text-decoration: none;
    display: grid;
    gap: 8px;
}

.admin-dashboard-grid strong {
    font-size: 1.3rem;
}

.admin-dashboard-grid span {
    color: var(--muted);
}

.admin-list {
    display: grid;
    gap: 12px;
}

.admin-list-item {
    padding: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-list-item strong {
    display: block;
    font-size: 1.12rem;
}

.admin-list-item span {
    color: var(--muted);
}

.admin-list-item p {
    margin-bottom: 0;
}

.admin-actions.small .btn {
    min-height: 42px;
    padding: 9px 13px;
}

.empty-state {
    padding: 18px;
    color: var(--muted);
    font-weight: 850;
}

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

@keyframes bars {
    from {
        height: 18px;
    }
    to {
        height: 68px;
    }
}

@keyframes pulse {
    from {
        transform: scale(.82);
        opacity: .7;
    }
    to {
        transform: scale(1.18);
        opacity: 0;
    }
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes floatOrb {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(22px, -26px, 0) scale(1.08);
    }
}

@keyframes laserMove {
    from {
        opacity: .15;
        translate: -16vw 0;
    }
    50% {
        opacity: .8;
    }
    to {
        opacity: .15;
        translate: 16vw 0;
    }
}

@keyframes padPulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.035);
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: auto;
    }

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

    .profile-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .profile-photo:first-child {
        grid-column: span 2;
        grid-row: auto;
    }

    .profile-photo img,
    .profile-photo:first-child img {
        aspect-ratio: 4 / 3;
    }

    .admin-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-nav {
        justify-content: flex-start;
    }

    .admin-dashboard-grid,
    .admin-grid.three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header {
        align-items: center;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        width: 100%;
        justify-content: flex-start;
        padding-top: 8px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        font-size: .84rem;
        padding: 9px 10px;
    }

    .site-header {
        flex-wrap: wrap;
    }

    h1 {
        font-size: clamp(2.45rem, 15vw, 4.6rem);
    }

    .hero-stats,
    .event-grid,
    .partner-grid,
    .legal-grid,
    .form-split,
    .game-top,
    .admin-grid.two,
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .profile-gallery {
        grid-template-columns: 1fr;
    }

    .profile-photo:first-child {
        grid-column: auto;
    }

    .btn {
        width: 100%;
    }

.pad-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
}

.beat-pad {
    max-width: none;
}

    .site-footer,
    .admin-list-item {
        flex-direction: column;
    }

    .admin-actions {
        width: 100%;
    }

    .admin-actions .btn,
    .admin-actions form,
    .admin-actions button {
        width: 100%;
    }

    .admin-nav a,
    .admin-nav button {
        font-size: .84rem;
        padding: 9px 11px;
    }
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.footer-links a {
    color: #fff;
    font-weight: 950;
    text-decoration: none;
}

.footer-links a:last-child {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 850;
}

.footer-links a:hover {
    color: var(--cyan);
}

@media (max-width: 760px) {
    .footer-links {
        align-items: flex-start;
    }
}