*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body.home-body {
    margin: 0;
    min-height: 100vh;
    background: #050505;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Instrument Sans", Arial, sans-serif;
}

body.home-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input {
    font: inherit;
}

.home-root {
    min-height: 100vh;
    overflow: hidden;
}

.home-main {
    position: relative;
    z-index: 1;
}

.home-page {
    background:
        radial-gradient(1200px 760px at 65% 18%, rgba(255, 0, 70, 0.14), transparent 62%),
        radial-gradient(900px 420px at 85% 8%, rgba(255, 255, 255, 0.05), transparent 62%),
        linear-gradient(180deg, #030303 0%, #070707 58%, #040404 100%);
}

.home-shell {
    width: min(100%, 1360px);
    margin: 0 auto;
    padding: 0 18px;
}

.home-topbar {
    position: sticky;
    top: 0;
    z-index: 80;
    height: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.86);
    overflow: visible;
}

.home-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 24px;
    gap: 14px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.54);
    overflow: visible;
}

.home-topbar-left,
.home-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-topbar a {
    color: rgba(255, 255, 255, 0.74);
}

.home-topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-topbar-social:hover {
    border-color: rgba(255, 0, 70, 0.4);
    color: rgba(255, 255, 255, 0.96);
    background: rgba(255, 0, 70, 0.08);
}

.home-topbar-auth {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.home-topbar-auth-register {
    color: rgba(255, 0, 70, 0.96);
}

.home-user-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.home-user-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
}

.home-user-toggle:hover {
    color: rgba(255, 255, 255, 1);
}

.home-user-menu.is-open .home-user-dropdown {
    display: block;
}

.home-user-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 0, 70, 0.95);
    box-shadow: 0 0 8px rgba(255, 0, 70, 0.34);
}

.home-user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 180px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 8, 0.98);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.34);
    z-index: 20;
    white-space: nowrap;
}

.home-user-dropdown a,
.home-user-dropdown button {
    display: block;
    width: 100%;
    padding: 9px 10px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    white-space: nowrap;
}

.home-user-dropdown a:hover,
.home-user-dropdown button:hover {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 1);
}

.home-header {
    position: sticky;
    top: 24px;
    z-index: 70;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.home-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 68px;
}

.home-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.home-brand-mark {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
}

.home-brand-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.home-brand-text span {
    color: rgba(255, 0, 70, 0.98);
}

.home-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.home-nav-group {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.home-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.home-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 1px;
    background: rgba(255, 0, 70, 0.96);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.home-nav-link:hover,
.home-nav-link.is-active {
    color: rgba(255, 0, 70, 0.96);
}

.home-nav-link:hover::after,
.home-nav-link.is-active::after {
    transform: scaleX(1);
}

.home-nav-caret {
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.home-nav-trigger {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.home-nav-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 240px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 8, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 30;
}

.home-nav-panel--mega {
    width: min(780px, 86vw);
}

.home-nav-group:hover .home-nav-panel,
.home-nav-group:focus-within .home-nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.home-nav-mega-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-nav-column-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.home-nav-column-copy,
.home-nav-subcopy {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.46);
}

.home-nav-submenu-links {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.home-nav-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.home-nav-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 8px;
    border: 1px solid rgba(255, 0, 70, 0.24);
    border-radius: 999px;
    background: rgba(255, 0, 70, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-solid-btn,
.home-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-solid-btn {
    border-color: rgba(255, 0, 70, 0.86);
    background: linear-gradient(180deg, rgba(255, 42, 88, 0.96), rgba(190, 0, 42, 0.96));
    color: white;
}

.home-outline-btn {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.90);
}

.home-solid-btn::after,
.home-outline-btn::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 10px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    opacity: 0.9;
}

.home-solid-btn:hover,
.home-outline-btn:hover {
    transform: translateY(-1px);
}

.home-btn-full {
    width: 100%;
}

.home-booking-btn {
    display: none;
}

.home-mobile-toggle,
.home-mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.home-mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(10px);
}

.home-mobile-panel[hidden] {
    display: none !important;
}

.home-mobile-sheet {
    width: min(420px, calc(100vw - 28px));
    margin: 20px auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(8, 8, 8, 0.96);
}

.home-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-mobile-links {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.home-mobile-links a,
.home-mobile-heading {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

.home-mobile-group {
    display: grid;
    gap: 10px;
}

.home-mobile-heading {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.92);
}

.home-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.home-mobile-link--child {
    margin-left: 14px;
}

.home-hero {
    padding-top: 0;
}

.home-hero-stage {
    position: relative;
    min-height: 760px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.home-hero-shell {
    width: min(100%, 1360px);
    margin: 0 auto;
    padding: 0 18px;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.62) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58)),
        var(--hero-image, none),
        radial-gradient(1000px 540px at 68% 48%, rgba(255, 0, 70, 0.16), transparent 56%),
        linear-gradient(180deg, rgb(5, 5, 5), rgb(2, 2, 2));
    background-size: cover;
    background-position: center;
}

.home-hero--text .home-hero-slide,
.home-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-hero-slide-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 34%, rgba(255, 0, 70, 0.2) 0 2px, transparent 3px),
        radial-gradient(circle at 79% 46%, rgba(255, 255, 255, 0.07) 0 2px, transparent 3px),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22));
    pointer-events: none;
}

.home-hero-frame {
    position: relative;
    display: grid;
    align-items: center;
    gap: 24px;
    min-height: 760px;
    padding: 78px 34px 66px;
    background: transparent;
    overflow: hidden;
}

.home-hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.34)),
        radial-gradient(circle at 83% 34%, rgba(255,255,255,0.06) 0 2px, transparent 3px),
        radial-gradient(circle at 76% 42%, rgba(255,0,70,0.18) 0 2px, transparent 3px),
        radial-gradient(circle at 64% 26%, rgba(255,255,255,0.08) 0 1px, transparent 2px);
    pointer-events: none;
}

.home-hero-frame::after {
    content: "";
    position: absolute;
    right: 6%;
    bottom: 130px;
    width: 42%;
    height: 45%;
    background:
        linear-gradient(180deg, transparent 0 34%, rgba(255,255,255,0.06) 34% 36%, transparent 36%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, transparent, rgba(255,0,70,0.08));
    opacity: 0.28;
    mask-image: linear-gradient(180deg, transparent, black 18%, black 80%, transparent);
    pointer-events: none;
}

.home-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 500px;
    align-self: start;
    padding-top: 48px;
}

.home-hero-label,
.home-kicker,
.home-release-artist {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.54);
}

.home-hero-dj {
    position: relative;
    display: inline-block;
    margin-top: 28px;
    padding: 0 18px 0 54px;
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    color: rgba(255, 0, 70, 0.98);
}

.home-hero-dj::before,
.home-hero-dj::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: rgba(255, 0, 70, 0.9);
}

.home-hero-dj::before {
    left: 0;
}

.home-hero-dj::after {
    right: -34px;
}

.home-hero-title {
    margin-top: 6px;
    font-size: clamp(5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(255,255,255,0.08);
}

.home-hero-script {
    margin-top: -24px;
    margin-left: 34px;
    font-size: clamp(3.6rem, 5vw, 5rem);
    font-style: italic;
    line-height: 1;
    color: rgba(255, 0, 70, 0.98);
    text-shadow: 0 0 18px rgba(255, 0, 70, 0.2);
}

.home-hero-tagline {
    margin-top: 34px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.home-hero-visual {
    position: relative;
    min-height: 610px;
    isolation: isolate;
}

.home-hero-glow {
    position: absolute;
    inset: 44px 0 128px;
    z-index: 0;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.10) 0 14%, transparent 38%),
        radial-gradient(circle at center, rgba(255, 0, 70, 0.24) 0 42%, transparent 70%);
    filter: blur(1px);
}

.home-hero-poster {
    position: absolute;
    right: 6%;
    top: 52px;
    bottom: 148px;
    z-index: 1;
    width: min(42vw, 520px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-position: center;
    background-size: cover;
    opacity: 0.18;
    mix-blend-mode: screen;
    filter: saturate(0.9) contrast(1.05);
    mask-image: linear-gradient(180deg, transparent 0, black 18%, black 82%, transparent 100%);
}

.home-hero-release-stage {
    position: absolute;
    right: 2%;
    bottom: 88px;
    z-index: 4;
    width: min(540px, 98%);
    height: 352px;
    pointer-events: none;
}

.home-hero-release-stage::before,
.home-hero-release-stage::after {
    content: "";
    position: absolute;
    inset: 0;
}

.home-hero-release-stage::before {
    inset: 6px -38px 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 42px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
        radial-gradient(circle at 50% 74%, rgba(255, 0, 70, 0.18), transparent 58%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.88), rgba(5, 5, 5, 0.72)),
        rgba(6, 6, 6, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        inset 0 -28px 60px rgba(255, 0, 70, 0.06),
        0 34px 64px rgba(0, 0, 0, 0.34);
    transform: perspective(1200px) rotateX(16deg);
    transform-origin: bottom center;
}

.home-hero-release-stage::after {
    inset: auto 4% -28px;
    height: 96px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 0, 70, 0.22), transparent 56%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 74%);
    filter: blur(22px);
    opacity: 0.85;
}

.home-hero-release-stage-beam {
    position: absolute;
    top: 26px;
    bottom: 92px;
    width: 110px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 0, 70, 0.22), rgba(255, 0, 70, 0));
    filter: blur(18px);
    opacity: 0.64;
}

.home-hero-release-stage-beam--one {
    left: 56px;
}

.home-hero-release-stage-beam--two {
    right: 68px;
    left: auto;
    width: 82px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    opacity: 0.42;
}

.home-hero-release-stage-grid {
    position: absolute;
    inset: 36px 34px 78px;
    border-radius: 26px 26px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.035);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), black 18%, black 72%, transparent 100%);
    opacity: 0.38;
}

.home-hero-release-box {
    position: absolute;
    right: 4%;
    bottom: 110px;
    z-index: 5;
    width: min(388px, 92%);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 0, 70, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(20, 20, 20, 0.92), rgba(6, 6, 6, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 28px 56px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
}

.home-hero-release-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-hero-release-kicker,
.home-hero-release-link {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-hero-release-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.home-hero-release-link {
    color: rgba(255, 0, 70, 0.96);
}

.home-hero-release-featured {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.03);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-hero-release-featured:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 70, 0.24);
    background:
        linear-gradient(180deg, rgba(255, 0, 70, 0.12), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.04);
}

.home-hero-release-featured-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 0, 70, 0.2), transparent 56%),
        linear-gradient(180deg, rgb(18, 18, 18), rgb(6, 6, 6));
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.34);
}

.home-hero-release-featured-cover img,
.home-hero-release-featured-cover .home-hero-release-cover-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-release-featured-cover img {
    object-fit: cover;
}

.home-hero-release-featured-copy {
    min-width: 0;
}

.home-hero-release-featured-label,
.home-hero-release-featured-title,
.home-hero-release-featured-meta {
    display: block;
}

.home-hero-release-featured-label {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 0, 70, 0.92);
}

.home-hero-release-featured-title {
    margin-top: 8px;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    overflow-wrap: anywhere;
}

.home-hero-release-featured-meta {
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.home-hero-release-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.home-hero-release-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.home-hero-release-item:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 0, 70, 0.28);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}

.home-hero-release-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 0, 70, 0.18), transparent 50%),
        linear-gradient(180deg, rgb(18, 18, 18), rgb(6, 6, 6));
}

.home-hero-release-cover img,
.home-hero-release-cover-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-release-cover img {
    object-fit: cover;
}

.home-hero-release-cover-fallback {
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: rgba(255, 255, 255, 0.9);
}

.home-hero-release-copy {
    min-width: 0;
}

.home-hero-release-title,
.home-hero-release-meta {
    display: block;
}

.home-hero-release-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    overflow-wrap: anywhere;
}

.home-hero-release-meta {
    margin-top: 5px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.56);
}

.home-hero-logo {
    position: absolute;
    inset: 28px 0 148px;
    z-index: 1;
    display: grid;
    place-items: center;
}

.home-hero-logo-left,
.home-hero-logo-right,
.home-about-logo-left,
.home-about-logo-right {
    position: absolute;
    display: block;
    background: linear-gradient(180deg, #f7f7f7, #d8d8da);
    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.12),
        0 0 40px rgba(255,255,255,0.05);
}

.home-hero-logo-left {
    width: 420px;
    height: 154px;
    clip-path: polygon(8% 0, 100% 0, 83% 34%, 28% 34%, 18% 66%, 77% 66%, 64% 100%, 0 100%);
    transform: translateX(-154px);
}

.home-hero-logo-right {
    width: 410px;
    height: 170px;
    clip-path: polygon(14% 0, 100% 0, 82% 100%, 0 100%, 14% 68%, 56% 68%, 66% 32%, 14% 32%);
    transform: translateX(154px);
    background: linear-gradient(115deg, #efefef 0 54%, #ff0a5e 54% 100%);
}

.home-hero-crowd {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 220px;
    background:
        linear-gradient(180deg, transparent, rgba(255, 0, 70, 0.18) 48%, rgba(0, 0, 0, 0.94) 100%),
        repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 255, 255, 0.08) 14px 16px, transparent 16px 32px);
}

.home-hero-crowd::before {
    content: "";
    position: absolute;
    inset: 0 0 34px;
    background:
        radial-gradient(circle at 20% 74%, rgba(255,0,70,0.4) 0 3px, transparent 4px),
        radial-gradient(circle at 32% 78%, rgba(255,255,255,0.18) 0 2px, transparent 3px),
        radial-gradient(circle at 62% 72%, rgba(255,0,70,0.34) 0 3px, transparent 4px),
        radial-gradient(circle at 78% 76%, rgba(255,255,255,0.16) 0 2px, transparent 3px);
    opacity: 0.9;
}

.home-hero-silhouette {
    position: absolute;
    left: 50%;
    bottom: -10px;
    z-index: 3;
    width: 228px;
    height: 300px;
    transform: translateX(-50%);
    filter: drop-shadow(0 18px 28px rgba(0,0,0,0.9));
}

.home-hero-head,
.home-hero-body {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background: linear-gradient(180deg, rgb(22, 22, 22), rgb(0, 0, 0));
}

.home-hero-head {
    top: 22px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
}

.home-hero-body {
    top: 52px;
    width: 194px;
    height: 248px;
    border-radius: 120px 120px 28px 28px;
}

.home-hero-indicators {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 3;
    display: inline-flex;
    gap: 8px;
    transform: translateX(-50%);
}

.home-hero-indicator {
    width: 26px;
    height: 4px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

.home-hero-indicator.is-active {
    background: rgba(255, 0, 70, 0.92);
    transform: scaleX(1.12);
}

.home-section {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-about {
    display: grid;
    gap: 38px;
    align-items: center;
}

.home-about-visual {
    position: relative;
    min-height: 314px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at center, rgba(255, 0, 70, 0.16), transparent 44%),
        linear-gradient(180deg, rgb(8, 8, 8), rgb(2, 2, 2));
}

.home-about-ring {
    position: absolute;
    inset: 50%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 0, 70, 0.42);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 18px rgba(255, 0, 70, 0.04),
        0 0 80px rgba(255, 0, 70, 0.18);
}

.home-about-logo {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.home-about-logo-left {
    width: 180px;
    height: 68px;
    clip-path: polygon(10% 0, 100% 0, 84% 36%, 28% 36%, 18% 62%, 78% 62%, 66% 100%, 0 100%);
    transform: translateX(-64px);
}

.home-about-logo-right {
    width: 180px;
    height: 76px;
    clip-path: polygon(14% 0, 100% 0, 82% 100%, 0 100%, 14% 68%, 56% 68%, 66% 32%, 14% 32%);
    transform: translateX(64px);
    background: linear-gradient(115deg, #efefef 0 54%, #ff0a5e 54% 100%);
}

.home-about-copy {
    max-width: 500px;
}

.home-about-title,
.home-section-title {
    margin-top: 12px;
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
}

.home-about-title span {
    color: rgba(255, 0, 70, 0.98);
}

.home-text {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.58);
}

.home-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.home-release-grid {
    display: grid;
    gap: 14px;
}

.home-release-card {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgb(10, 10, 10), rgb(4, 4, 4));
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-release-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 70, 0.26);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.home-release-cover {
    position: relative;
    aspect-ratio: 0.84;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 0, 70, 0.18), transparent 48%),
        linear-gradient(180deg, rgb(16, 16, 16), rgb(6, 6, 6));
}

.home-release-cover img,
.home-release-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-release-cover img {
    object-fit: cover;
}

.home-release-fallback {
    display: grid;
    place-items: center;
}

.home-release-fallback span {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.90);
}

.home-release-body {
    padding: 10px 10px 14px;
}

.home-release-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    min-height: 58px;
    overflow-wrap: anywhere;
}

.home-release-meta,
.home-release-year {
    margin-top: 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.58);
}

.home-events-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-event-row {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.home-event-date {
    display: grid;
    justify-items: start;
    gap: 2px;
    padding-left: 10px;
    border-left: 2px solid rgba(255, 0, 70, 0.96);
}

.home-event-day {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.96);
}

.home-event-month {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 0, 70, 0.98);
}

.home-event-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.home-event-location {
    margin-top: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.56);
}

.home-contact-strip {
    display: grid;
    gap: 24px;
    align-items: center;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(900px 400px at 80% 20%, rgba(255, 0, 70, 0.12), transparent 58%),
        linear-gradient(180deg, rgb(10, 10, 10), rgb(4, 4, 4));
}

.home-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgb(6, 6, 6), rgb(2, 2, 2));
}

.home-footer-grid {
    display: grid;
    gap: 24px;
    padding: 34px 0 28px;
}

.home-footer-copy {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.56);
}

.home-footer-copy-small {
    margin-top: 12px;
}

.home-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.home-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
}

.home-footer-heading {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.home-footer-link-block {
    min-width: 0;
}

.home-footer-links {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.home-footer-links a,
.home-footer-legal-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.56);
}

.home-newsletter {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.home-newsletter .ui-input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.90);
}

.home-footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0 16px;
}

.home-footer-legal-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.44);
}

.home-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

@media (min-width: 900px) {
    .home-nav {
        display: inline-flex;
    }

    .home-booking-btn {
        display: inline-flex;
    }

    .home-mobile-toggle {
        display: none;
    }

    .home-hero-frame {
        grid-template-columns: minmax(400px, 500px) minmax(0, 1fr);
    }

    .home-about {
        grid-template-columns: minmax(360px, 500px) minmax(320px, 1fr);
    }

    .home-release-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .home-event-row {
        grid-template-columns: 78px minmax(0, 1fr) auto;
    }

    .home-contact-strip {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .home-footer-grid {
        grid-template-columns: 1.35fr repeat(3, minmax(0, 0.82fr)) 1fr;
    }

    .home-footer-legal-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 700px) and (max-width: 899px) {
    .home-release-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 699px) {
    .home-shell {
        padding: 0 16px;
    }

    .home-hero-shell {
        padding: 0 16px;
    }

    .home-topbar-right,
    .home-topbar-left {
        display: none;
    }

    .home-hero-stage,
    .home-hero-frame {
        min-height: 620px;
    }

    .home-hero-poster {
        right: 0;
        left: 0;
        top: 42px;
        bottom: 132px;
        width: auto;
        opacity: 0.12;
    }

    .home-hero-release-stage {
        right: 16px;
        left: 16px;
        bottom: 52px;
        width: auto;
        height: 292px;
    }

    .home-hero-release-box {
        right: 16px;
        left: 16px;
        bottom: 68px;
        width: auto;
    }

    .home-hero-frame {
        padding: 52px 18px 54px;
    }

    .home-hero-dj {
        font-size: 48px;
    }

    .home-hero-title {
        font-size: clamp(3.6rem, 17vw, 4.8rem);
    }

    .home-hero-script {
        margin-left: 18px;
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .home-hero-visual {
        min-height: 300px;
    }

    .home-hero-release-featured {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .home-hero-release-featured-title {
        font-size: 15px;
    }

    .home-hero-logo-left {
        width: 260px;
        height: 96px;
        transform: translateX(-92px);
    }

    .home-hero-logo-right {
        width: 258px;
        height: 104px;
        transform: translateX(92px);
    }

    .home-hero-silhouette {
        width: 150px;
        height: 200px;
    }

    .home-hero-body {
        width: 126px;
        height: 162px;
    }

    .home-about-title,
    .home-section-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .home-release-grid {
        grid-template-columns: 1fr;
    }

    .home-release-title {
        min-height: 0;
        font-size: 24px;
    }

    .home-contact-strip {
        padding: 22px;
    }
}
