:root {
    --black: #06070b;
    --panel: #0d1017;
    --panel-soft: rgba(13, 16, 23, 0.88);
    --white: #ffffff;
    --muted: #c9d1d8;
    --red: #d31735;
    --red-deep: #33070f;
    --cyan: #3bb7ee;
    --cyan-deep: #1f7fa4;
    --magenta: #c020ef;
    --yellow: #f4e84a;
    --line: rgba(255, 255, 255, 0.22);
    --paint-edge: rgba(255, 255, 255, 0.32);
    --spray-white: rgba(255, 255, 255, 0.16);
    --paint-shadow: rgba(0, 0, 0, 0.62);
    --spray-red: rgba(211, 23, 53, 0.38);
    --spray-cyan: rgba(59, 183, 238, 0.32);
    --header-height: 72px;
    --font-heading: "RocknRoll One", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
    --font-body: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-bottom: 92px;
    color: var(--white);
    background:
        radial-gradient(circle at 19% 18%, rgba(244, 232, 74, 0.15) 0 1px, transparent 1.8px),
        radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.7px),
        radial-gradient(circle at 8% 12%, rgba(211, 23, 53, 0.2) 0 12vw, transparent 31vw),
        radial-gradient(circle at 88% 28%, rgba(59, 183, 238, 0.16) 0 16vw, transparent 34vw),
        linear-gradient(145deg, #06070b 0%, #09101b 42%, #12070b 100%);
    background-size: 42px 36px, 34px 30px, auto, auto, auto;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        url("../images/genba-joto/logo.png") right -7vw top 20vh / min(540px, 42vw) auto no-repeat,
        url("../images/genba-joto/logo.png") left -10vw bottom 9vh / min(480px, 38vw) auto no-repeat,
        url("../images/genba-joto/slashes.png") center top / 900px auto repeat;
    opacity: 0.11;
    mix-blend-mode: screen;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle, var(--spray-white) 0 1px, transparent 1.8px) 0 0 / 33px 29px,
        radial-gradient(circle, rgba(59, 183, 238, 0.16) 0 1px, transparent 2px) 9px 12px / 47px 43px,
        linear-gradient(120deg, transparent 0 18%, rgba(211, 23, 53, 0.12) 18% 25%, transparent 25% 58%, rgba(59, 183, 238, 0.1) 58% 65%, transparent 65%),
        url("../images/genba-joto/noise.png") center / 680px auto repeat;
    opacity: 0.1;
    mix-blend-mode: screen;
    pointer-events: none;
}

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

a {
    color: inherit;
}

:where(h1, h2, h3, summary, .event-type, .hero-facts dd) {
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
}

:where(p, li, dd, dt, a, time) {
    text-wrap: pretty;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 2000;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 14px;
    clip: auto;
    color: var(--black);
    background: var(--cyan);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 7, 11, 0.92);
    border-bottom: 2px solid var(--red);
    box-shadow: 0 10px 0 rgba(59, 183, 238, 0.08), 0 22px 48px rgba(0, 0, 0, 0.45);
}

.site-header.is-scrolled {
    border-bottom-color: var(--cyan);
}

.header-inner {
    min-height: var(--header-height);
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.site-brand-logo {
    width: auto;
    height: 40px;
    max-width: min(260px, 42vw);
    object-fit: contain;
    filter: invert(1) brightness(1.35) drop-shadow(0 0 10px rgba(255, 255, 255, 0.16));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 900;
}

.site-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.site-nav a:hover {
    color: var(--cyan);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0) skewX(-22deg);
    transform-origin: left center;
    transition: transform 0.18s ease;
}

.site-nav a:hover::after {
    transform: scaleX(1) skewX(-22deg);
}

.site-nav .nav-ticket {
    min-height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    background: var(--red);
    border: 2px solid var(--paint-edge);
    box-shadow: 5px 5px 0 var(--paint-shadow);
    transform: rotate(-1deg);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--panel);
    border: 2px solid var(--line);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: calc(var(--header-height) + 36px) 0 58px;
    background:
        radial-gradient(circle at 16% 20%, rgba(244, 232, 74, 0.14) 0 1px, transparent 1.8px) 0 0 / 36px 32px,
        radial-gradient(circle at 82% 18%, rgba(59, 183, 238, 0.2), transparent 26vw),
        radial-gradient(circle at 22% 72%, rgba(211, 23, 53, 0.24), transparent 26vw),
        var(--black);
    border-bottom: 4px solid var(--cyan);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.9px) 0 0 / 39px 34px,
        radial-gradient(circle, rgba(211, 23, 53, 0.2) 0 1px, transparent 2px) 17px 12px / 57px 49px,
        url("../images/genba-joto/slashes.png") center / 820px auto repeat;
    opacity: 0.13;
    animation: slashDrift 22s linear infinite;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    height: 34%;
    background:
        radial-gradient(circle at 8% 16%, rgba(211, 23, 53, 0.9) 0 7px, transparent 8px),
        radial-gradient(circle at 18% 34%, rgba(59, 183, 238, 0.55) 0 4px, transparent 5px),
        radial-gradient(circle at 76% 22%, rgba(244, 232, 74, 0.5) 0 5px, transparent 6px),
        linear-gradient(110deg, #3b0612 0%, var(--red-deep) 52%, #160308 100%);
    clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
}

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

.hero-deco img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(920px, 86vw);
    opacity: 0.055;
    transform: translate(-50%, -50%) rotate(-7deg);
    animation: ghostDrift 12s ease-in-out infinite alternate;
}

.hero-frame {
    position: relative;
    isolation: isolate;
    width: min(1040px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 28px;
}

.hero-frame::before,
.hero-frame::after {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    font-family: var(--font-heading);
    line-height: 0.86;
    letter-spacing: 0;
    white-space: nowrap;
}

.hero-frame::before {
    content: "GENBA JOTO";
    left: max(-8vw, -96px);
    top: 44%;
    color: transparent;
    font-size: clamp(4.8rem, 12vw, 9.5rem);
    opacity: 0.2;
    transform: rotate(-11deg);
    -webkit-text-stroke: 2px rgba(244, 232, 74, 0.62);
    text-stroke: 2px rgba(244, 232, 74, 0.62);
}

.hero-frame::after {
    content: "DROP IN";
    right: max(-6vw, -72px);
    bottom: 6%;
    color: rgba(255, 255, 255, 0.07);
    font-size: clamp(3.5rem, 9vw, 7.4rem);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
    transform: rotate(8deg);
}

.hero-poster {
    position: relative;
    width: min(860px, 100%);
    margin: 0;
    animation: posterEntrance 0.7s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    z-index: -1;
    border: 3px solid rgba(255, 255, 255, 0.28);
    box-shadow: 10px 10px 0 var(--paint-shadow);
}

.hero-poster::after {
    content: "LIVE 0719";
    position: absolute;
    right: -18px;
    bottom: 24px;
    padding: 7px 14px 8px;
    color: var(--black);
    background: var(--yellow);
    border: 2px solid var(--black);
    font-family: var(--font-body);
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: -7px 7px 0 var(--paint-shadow);
    transform: rotate(-5deg);
}

.hero-poster img {
    width: 100%;
    background: var(--black);
    border: 3px solid var(--red);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.hero-copy {
    position: relative;
    isolation: isolate;
    width: min(860px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px 24px;
    animation: copyLift 0.62s ease 0.15s both;
}

.hero-copy::before {
    content: "FAN MEET";
    position: absolute;
    right: -18px;
    top: 26px;
    z-index: -1;
    color: transparent;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    opacity: 0.16;
    transform: rotate(3deg);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.event-type {
    position: relative;
    isolation: isolate;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 9px 14px 10px;
    color: var(--white);
    background:
        radial-gradient(circle at 14% 24%, var(--spray-cyan) 0 5px, transparent 6px),
        radial-gradient(circle at 86% 72%, var(--spray-red) 0 7px, transparent 8px),
        radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 1px, transparent 1.8px) 0 0 / 19px 17px,
        linear-gradient(108deg, rgba(6, 7, 11, 0.98) 0 66%, rgba(255, 255, 255, 0.08) 66% 100%),
        rgba(6, 7, 11, 0.92);
    border: 2px solid var(--paint-edge);
    box-shadow: 8px 8px 0 var(--paint-shadow);
    clip-path: polygon(0 8%, 98% 0, 100% 84%, 3% 100%);
    font-family: var(--font-body);
    font-size: clamp(1.02rem, 2.1vw, 1.45rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.82), 0 0 12px rgba(255, 255, 255, 0.16);
    transform: rotate(-0.8deg);
}

.event-type::before,
.ticket-status::after {
    content: "";
    position: absolute;
    inset: -12px;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 42%, var(--spray-cyan) 0 6px, transparent 7px),
        radial-gradient(circle at 82% 24%, var(--spray-red) 0 5px, transparent 6px),
        radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 1px, transparent 1.8px) 0 0 / 18px 15px;
    filter: blur(0.2px);
    opacity: 0.7;
    pointer-events: none;
}

.ticket-status {
    position: relative;
    isolation: isolate;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 8px 13px 9px;
    color: var(--black);
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.8px) 2px 3px / 24px 22px,
        var(--cyan);
    border-left: 8px solid var(--red);
    box-shadow: -7px 7px 0 var(--paint-shadow);
    clip-path: polygon(3% 0, 100% 8%, 98% 100%, 0 90%);
    font-family: var(--font-body);
    font-weight: 900;
    transform: rotate(1.4deg);
}

.hero-facts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.hero-facts div {
    position: relative;
    overflow: hidden;
    padding: 18px 18px 16px;
    background:
        radial-gradient(circle at 18% 24%, var(--spray-red) 0 6px, transparent 7px),
        radial-gradient(circle at 76% 72%, var(--spray-cyan) 0 5px, transparent 6px),
        radial-gradient(circle, rgba(255, 255, 255, 0.11) 0 1px, transparent 1.9px) 0 0 / 31px 28px,
        linear-gradient(125deg, rgba(255, 255, 255, 0.04), transparent 46%),
        var(--panel-soft);
    border: 2px solid var(--paint-edge);
    border-left: 8px solid var(--cyan);
    border-bottom: 6px solid var(--red);
    box-shadow: 9px 9px 0 var(--paint-shadow);
    clip-path: polygon(0 0, 98% 0, 100% 92%, 2% 100%);
}

.hero-facts div:nth-child(2) {
    border-left-color: var(--red);
    border-bottom-color: var(--cyan);
    transform: rotate(0.55deg);
}

.hero-facts div::after {
    position: absolute;
    right: 10px;
    bottom: -8px;
    color: transparent;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1;
    opacity: 0.22;
    pointer-events: none;
    -webkit-text-stroke: 1px var(--yellow);
    text-stroke: 1px var(--yellow);
}

.hero-facts div:first-child::after {
    content: "DATE";
}

.hero-facts div:nth-child(2)::after {
    content: "PLACE";
}

.hero-facts dt,
.hero-facts dd {
    margin: 0;
}

.hero-facts dt {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
}

.hero-facts dd {
    margin-top: 3px;
    font-family: var(--font-body);
    font-size: clamp(1.18rem, 2vw, 1.75rem);
    font-weight: 900;
}

.hero-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(520px, 100%);
    justify-self: center;
    margin-top: 0;
}

.button-primary,
.button-secondary,
.section-link {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    font-family: var(--font-body);
    font-weight: 900;
    text-decoration: none;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button-primary::before,
.button-secondary::before,
.section-link::before {
    content: "";
    position: absolute;
    inset: -40% -22%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 32%, rgba(255, 255, 255, 0.36) 0 1px, transparent 2px) 0 0 / 22px 18px,
        radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.2) 0 4px, transparent 5px),
        linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.16) 36% 45%, transparent 45% 100%);
    opacity: 0.52;
    transform: translateX(-34%);
    transition: transform 0.22s ease;
}

.button-primary::after,
.button-secondary::after,
.section-link::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 14%;
    bottom: -4px;
    z-index: -1;
    height: 9px;
    background:
        radial-gradient(circle at 12% 100%, currentColor 0 3px, transparent 4px),
        radial-gradient(circle at 54% 100%, currentColor 0 2px, transparent 3px),
        linear-gradient(currentColor, currentColor);
    opacity: 0.2;
    filter: blur(0.2px);
}

.button-primary:hover,
.button-secondary:hover,
.section-link:hover {
    transform: translateY(-4px) rotate(-0.7deg);
}

.button-primary:hover::before,
.button-secondary:hover::before,
.section-link:hover::before {
    transform: translateX(18%);
}

.button-primary {
    color: var(--white);
    background: var(--red);
    border: 2px solid var(--red);
    box-shadow: 8px 8px 0 var(--paint-shadow);
}

.button-secondary {
    color: var(--white);
    background: var(--black);
    border: 2px solid var(--cyan);
    box-shadow: 8px 8px 0 var(--paint-shadow);
}

.button-compact {
    min-height: 46px;
    padding-inline: 16px;
}

.date-strip {
    position: relative;
    display: flex;
    gap: 28px;
    overflow-x: auto;
    min-height: 58px;
    padding: 0 max(20px, calc((100vw - 1220px) / 2));
    align-items: center;
    color: var(--black);
    background-color: var(--cyan);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.8px),
        url("../images/genba-joto/slashes.png");
    background-size: 24px 22px, 560px auto;
    border-block: 4px solid var(--black);
    box-shadow: inset 0 5px 0 rgba(255, 255, 255, 0.25), inset 0 -5px 0 rgba(0, 0, 0, 0.45);
    font-weight: 900;
    white-space: nowrap;
}

.date-strip::before {
    content: "GENBA JOTO";
    position: absolute;
    right: max(18px, calc((100vw - 1220px) / 2));
    bottom: -13px;
    color: var(--red);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 3vw, 2.8rem);
    line-height: 1;
    opacity: 0.38;
    text-shadow: 2px 2px 0 var(--black);
    transform: rotate(-4deg);
    pointer-events: none;
}

.date-strip p {
    margin: 0;
    animation: datePulse 4.8s ease-in-out infinite;
}

.cast-collage {
    position: relative;
    overflow: hidden;
    min-height: clamp(360px, 33vw, 505px);
    padding: clamp(34px, 4.4vw, 58px) 0 clamp(90px, 8vw, 124px);
    isolation: isolate;
    background:
        linear-gradient(118deg, rgba(211, 23, 53, 0.18) 0 13%, transparent 13% 37%, rgba(59, 183, 238, 0.13) 37% 52%, transparent 52%),
        linear-gradient(180deg, #06070b 0%, #09111c 48%, #13070b 100%);
    border-block: 2px solid var(--line);
}

.cast-collage::before {
    content: "";
    position: absolute;
    inset: -10% -5%;
    z-index: -2;
    background:
        url("../images/genba-joto/logo.png") left 5vw top 4px / min(430px, 35vw) auto no-repeat,
        url("../images/genba-joto/logo.png") right -4vw bottom 52px / min(520px, 44vw) auto no-repeat,
        url("../images/genba-joto/slashes.png") center / 720px auto repeat;
    opacity: 0.16;
    mix-blend-mode: screen;
    transform: translateX(var(--stage-shift, 0px));
    animation: slashDrift 26s linear infinite reverse;
}

.cast-collage::after {
    content: "";
    position: absolute;
    left: -7vw;
    right: -7vw;
    bottom: 10px;
    z-index: 8;
    height: clamp(156px, 13vw, 198px);
    background:
        linear-gradient(to bottom, rgba(5, 6, 10, 0) 0, rgba(5, 6, 10, 0.48) 18px, rgba(5, 6, 10, 0.94) 54px, #05060a 100%),
        linear-gradient(105deg, rgba(220, 18, 54, 0.16), transparent 28% 72%, rgba(57, 184, 231, 0.14)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px),
        #05060a;
    border-bottom: 8px solid var(--red);
    box-shadow: 0 -28px 58px rgba(0, 0, 0, 0.78);
    transform: skewY(3deg);
}

.cast-headline {
    position: absolute;
    left: 50%;
    bottom: 18%;
    z-index: 1;
    display: flex;
    gap: 0.18em;
    color: transparent;
    font-family: var(--font-heading);
    font-size: clamp(4.8rem, 17vw, 16rem);
    line-height: 0.82;
    white-space: nowrap;
    opacity: 0.9;
    transform: translateX(-50%) rotate(-4deg);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    text-stroke: 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
    animation: headlineDrift 9s ease-in-out infinite alternate;
}

.cast-collage-inner {
    position: relative;
    z-index: 2;
    width: min(1360px, calc(100% - 44px));
    min-height: clamp(270px, 28vw, 415px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
    gap: clamp(16px, 2.4vw, 34px);
}

.cast-standee {
    position: relative;
    margin: 0;
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transform: translateX(var(--x, 0px)) translateY(calc(38px + var(--sink, 0px))) rotate(var(--tilt, 0deg));
    transition: opacity 0.5s ease, transform 0.7s cubic-bezier(.2, .85, .18, 1);
    transition-delay: var(--delay, 0ms);
}

.cast-collage.is-visible .cast-standee {
    opacity: 1;
    transform: translateX(var(--x, 0px)) translateY(var(--sink, 0px)) rotate(var(--tilt, 0deg));
}

.cast-standee::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: clamp(46px, 5vw, 68px);
    z-index: -1;
    height: 22px;
    background: rgba(0, 0, 0, 0.86);
    filter: blur(12px);
    transform: rotate(-4deg);
}

.cast-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: clamp(260px, 27vw, 392px);
}

.cast-image img {
    width: min(22.5vw, 314px);
    max-width: 112%;
    height: auto;
    object-position: bottom center;
    filter: saturate(1.05) drop-shadow(0 26px 22px rgba(0, 0, 0, 0.58));
    transform-origin: bottom center;
    transition: filter 0.36s ease;
}

.cast-standee:hover .cast-image img {
    filter: saturate(1.12) drop-shadow(0 34px 28px rgba(0, 0, 0, 0.66));
}

.cast-standee:nth-child(1) {
    --tilt: -1deg;
    --x: 0.6vw;
    --sink: -40px;
    --delay: 80ms;
    z-index: 4;
}

.cast-standee:nth-child(1) .cast-image img {
    -webkit-mask-image: radial-gradient(ellipse 34% 38% at 0 78%, transparent 0 32%, rgba(0, 0, 0, 0.62) 50%, #000 72%);
    mask-image: radial-gradient(ellipse 34% 38% at 0 78%, transparent 0 32%, rgba(0, 0, 0, 0.62) 50%, #000 72%);
}

.cast-standee:nth-child(2) {
    --tilt: -3deg;
    --x: -0.8vw;
    --sink: -40px;
    --delay: 180ms;
    z-index: 5;
}

.cast-standee:nth-child(3) {
    --tilt: -1deg;
    --x: -1vw;
    --sink: -40px;
    --delay: 280ms;
    z-index: 5;
}

.cast-standee:nth-child(4) {
    --tilt: 4deg;
    --x: -0.8vw;
    --sink: -40px;
    --delay: 380ms;
    z-index: 4;
}

.stage-rail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 54px;
    z-index: 9;
    min-height: clamp(52px, 5.6vw, 78px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 64px);
    padding-inline: 24px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(0.92rem, 1.45vw, 1.35rem);
    line-height: 1.2;
    white-space: nowrap;
    transform: skewY(3deg);
    overflow: hidden;
}

.stage-rail::before,
.stage-rail::after {
    content: "";
    width: min(16vw, 190px);
    height: 6px;
    flex: 0 0 auto;
    background: var(--red);
    box-shadow: 18px 10px 0 var(--paint-shadow);
    transform: skewX(-18deg);
    animation: railPulse 2.4s ease-in-out infinite;
}

.stage-rail span:nth-child(2) {
    color: var(--cyan);
    font-family: var(--font-body);
    font-size: 0.72em;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.stage-rail span:nth-child(3) {
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-body);
    font-size: 0.68em;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.section,
.movie-section,
.event-footer {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section,
.movie-section {
    padding: 86px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.2vw, 6.2rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.76), 0 0 20px rgba(255, 255, 255, 0.13);
    transform: rotate(-1deg);
    transform-origin: left bottom;
}

h2::before {
    content: "";
    display: block;
    width: 64px;
    height: 6px;
    margin-bottom: 14px;
    background: var(--red);
    box-shadow: 14px 7px 0 var(--paint-shadow);
    transform: skewX(-18deg);
}

.overview-list,
.ticket-grid,
.qa-list {
    display: grid;
    gap: 12px;
}

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

.overview-list div,
.venue-panel,
.ticket-grid article,
.qa-list details,
.notice-box {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, var(--spray-red) 0 4px, transparent 5px),
        radial-gradient(circle at 76% 70%, var(--spray-cyan) 0 4px, transparent 5px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 0 1px, transparent 1.9px) 0 0 / 33px 28px,
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 34% 68%, rgba(255, 255, 255, 0.06)),
        var(--panel-soft);
    border: 2px solid var(--paint-edge);
    box-shadow: 8px 8px 0 var(--paint-shadow);
}

.overview-list div::before,
.venue-panel::before,
.ticket-grid article::before,
.qa-list details::before,
.notice-box::before,
.movie-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(105deg, transparent 0 44%, rgba(244, 232, 74, 0.13) 44% 51%, transparent 51%),
        url("../images/genba-joto/noise.png") center / 520px auto repeat;
    opacity: 0.34;
    mix-blend-mode: screen;
}

.overview-list div {
    padding: 20px;
}

.news-list {
    display: block;
    border-top: 2px solid var(--line);
}

.news-list article {
    min-height: auto;
    padding: 22px 0;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    border-bottom: 2px solid var(--line);
}

.news-list article > * {
    min-width: 0;
}

.news-list span {
    display: inline-flex;
    align-items: center;
    grid-row: 1 / span 2;
    min-height: 30px;
    padding: 0 10px;
    color: var(--black);
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.52) 0 1px, transparent 1.8px) 0 0 / 18px 16px,
        var(--cyan);
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 900;
    box-shadow: 4px 4px 0 var(--paint-shadow);
    transform: rotate(-1deg);
}

.news-list h3 {
    grid-column: 2;
    margin: 0 0 8px;
    font-family: var(--font-body);
    font-size: clamp(1.35rem, 2.7vw, 2.2rem);
    line-height: 1.35;
    font-weight: 900;
}

.news-list p {
    grid-column: 2;
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.overview-list dt,
.overview-list dd {
    margin: 0;
}

.overview-list dt {
    color: var(--cyan);
    font-weight: 900;
}

.overview-list dd {
    margin-top: 6px;
    font-weight: 800;
}

.event-name span {
    display: block;
}

.overview-list a,
.section-link {
    color: var(--cyan);
}

.venue-panel {
    margin-top: 14px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-left: 8px solid var(--red);
}

.venue-panel h3,
.venue-panel p {
    margin: 0;
}

.venue-panel h3 {
    color: var(--cyan);
    font-size: 1rem;
}

.venue-panel p {
    font-weight: 800;
}

.venue-panel p + p {
    margin-top: 4px;
    color: var(--muted);
}

.contact-panel {
    margin-top: 14px;
    padding: 22px;
    background:
        radial-gradient(circle at 18% 22%, var(--spray-cyan) 0 4px, transparent 5px),
        radial-gradient(circle at 76% 70%, var(--spray-red) 0 4px, transparent 5px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 0 1px, transparent 1.9px) 0 0 / 33px 28px,
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 34% 68%, rgba(255, 255, 255, 0.06)),
        var(--panel-soft);
    border-left: 8px solid var(--cyan);
    box-shadow: 9px 9px 0 var(--paint-shadow);
}

.contact-panel h2,
.contact-panel p {
    margin: 0;
}

.contact-label {
    color: var(--cyan);
    font-weight: 900;
}

.contact-panel h2 {
    margin-bottom: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.contact-grid section {
    padding: 16px;
    background: rgba(6, 7, 11, 0.54);
    border: 1px solid var(--line);
}

.contact-grid p:not(.contact-label) {
    margin-top: 6px;
    font-weight: 800;
}

.contact-grid a {
    display: inline-block;
    margin-top: 4px;
    color: var(--cyan);
    font-weight: 800;
}

.ticket-lead {
    margin: -14px 0 24px;
    color: var(--muted);
    font-weight: 800;
}

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

.ticket-notes {
    margin-top: 18px;
    border-top: 2px solid var(--line);
}

.ticket-notes details {
    border-bottom: 2px solid var(--line);
    background:
        linear-gradient(90deg, rgba(59, 183, 238, 0.12), transparent 42%),
        rgba(13, 16, 23, 0.58);
}

.ticket-notes summary {
    min-height: 68px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: minmax(108px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    list-style: none;
}

.ticket-notes summary::-webkit-details-marker {
    display: none;
}

.ticket-notes summary::after {
    content: "+";
    color: var(--cyan);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.ticket-notes details[open] summary::after {
    content: "-";
}

.ticket-notes summary span {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    color: var(--black);
    background: var(--yellow);
    font-size: 0.84rem;
    font-weight: 900;
    box-shadow: 4px 4px 0 var(--paint-shadow);
}

.ticket-notes summary strong {
    min-width: 0;
    font-size: clamp(1.12rem, 2.5vw, 1.7rem);
    line-height: 1.35;
}

.ticket-note-content {
    padding: 0 18px 18px calc(126px + 32px);
    color: var(--muted);
    font-weight: 800;
}

.ticket-note-content p {
    margin: 0;
}

.ticket-note-content p + p {
    margin-top: 6px;
}

.coming-soon-line {
    color: var(--cyan);
}

.goods-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(211, 23, 53, 0.16), transparent 28% 72%, rgba(59, 183, 238, 0.14)),
        rgba(6, 7, 11, 0.48);
    border-top: 4px solid var(--red);
    border-bottom: 4px solid var(--cyan);
}

.goods-section::before {
    content: "GOODS";
    position: absolute;
    right: max(28px, 7vw);
    bottom: -0.18em;
    z-index: 0;
    color: transparent;
    font-family: var(--font-heading);
    font-size: clamp(5.2rem, 15vw, 13rem);
    line-height: 1;
    opacity: 0.15;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.42);
    text-stroke: 2px rgba(255, 255, 255, 0.42);
    pointer-events: none;
}

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

.goods-announcement {
    max-width: 760px;
    padding: 4px 0 10px;
}

.goods-kicker {
    width: fit-content;
    margin: 0 0 18px;
    padding: 8px 16px 9px;
    color: var(--white);
    background: var(--red);
    font-size: clamp(1.05rem, 2.3vw, 1.7rem);
    font-weight: 900;
    box-shadow: 5px 5px 0 var(--paint-shadow);
    transform: rotate(-1deg);
}

.goods-copy {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.28rem, 2.6vw, 2rem);
    font-weight: 900;
    line-height: 1.55;
}

.ticket-grid article {
    --graffiti-tilt: -0.45deg;
    min-height: 190px;
    padding: 20px;
    border-top: 8px solid var(--red);
    transform: rotate(var(--graffiti-tilt));
}

.ticket-grid article:nth-child(even) {
    --graffiti-tilt: 0.55deg;
    border-top-color: var(--cyan);
    box-shadow: 8px 8px 0 var(--paint-shadow);
}

.ticket-grid p {
    margin: 0 0 18px;
    color: var(--cyan);
    font-size: 1.25rem;
    font-weight: 900;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.72);
}

.ticket-grid time {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
}

.movie-section {
    position: relative;
    overflow: hidden;
    border-block: 4px solid var(--red);
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 232, 74, 0.1) 0 1px, transparent 1.9px) 0 0 / 42px 38px,
        linear-gradient(112deg, rgba(211, 23, 53, 0.15), transparent 35% 70%, rgba(59, 183, 238, 0.15));
}

.movie-stack {
    display: grid;
    gap: 28px;
}

.movie-card {
    --graffiti-tilt: 0.35deg;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(360px, 0.58fr) minmax(0, 1fr);
    gap: 24px;
    align-items: end;
    padding: 22px;
    background:
        radial-gradient(circle at 14% 28%, var(--spray-red) 0 5px, transparent 6px),
        radial-gradient(circle at 84% 68%, var(--spray-cyan) 0 5px, transparent 6px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 0 1px, transparent 1.9px) 0 0 / 33px 28px,
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 34% 68%, rgba(255, 255, 255, 0.06)),
        var(--panel-soft);
    border: 2px solid var(--paint-edge);
    border-left: 8px solid var(--cyan);
    box-shadow: 10px 10px 0 var(--paint-shadow);
    transform: rotate(var(--graffiti-tilt));
}

.movie-card:nth-child(even) {
    --graffiti-tilt: -0.35deg;
    border-left-color: var(--red);
    box-shadow: 10px 10px 0 var(--paint-shadow);
}

.movie-copy {
    min-width: 0;
}

.movie-copy span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    margin-bottom: 18px;
    padding: 0 10px;
    color: var(--black);
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.7px) 0 0 / 20px 18px,
        var(--cyan);
    font-weight: 900;
    box-shadow: 5px 5px 0 var(--paint-shadow);
    transform: rotate(-1.2deg);
}

.movie-card:nth-child(even) .movie-copy span {
    color: var(--white);
    background: var(--red);
}

.movie-copy h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.45vw, 2.55rem);
    line-height: 1.12;
    white-space: nowrap;
}

.movie-copy p {
    margin: 16px 0 0;
    color: var(--muted);
    font-weight: 800;
}

.movie-frame {
    aspect-ratio: 16 / 9;
    background: #000;
    border: 3px solid var(--cyan);
    box-shadow: 8px 8px 0 var(--paint-shadow);
}

.movie-frame iframe,
.fanmi-slide iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.fanmi-slider {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 3px solid var(--red);
    box-shadow: 8px 8px 0 var(--paint-shadow);
}

.fanmi-track {
    height: 100%;
    display: flex;
    transition: transform 0.72s cubic-bezier(.2, .85, .18, 1);
    will-change: transform;
}

.fanmi-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    background: #000;
}

.fanmi-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 0 solid transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.fanmi-controls {
    grid-column: 2;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.fanmi-controls button {
    min-width: 52px;
    min-height: 34px;
    color: var(--white);
    background: var(--black);
    border: 2px solid var(--line);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.fanmi-controls button:hover,
.fanmi-controls button.is-active {
    color: var(--black);
    background: var(--cyan);
    border-color: var(--cyan);
}

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

.no-js .fanmi-slider {
    overflow: visible;
    aspect-ratio: auto;
    background: transparent;
    border: 0;
}

.no-js .fanmi-track {
    height: auto;
    display: grid;
    gap: 12px;
    transform: none;
}

.no-js .fanmi-slide {
    aspect-ratio: 16 / 9;
    height: auto;
    border: 3px solid var(--red);
}

.no-js .fanmi-controls {
    display: none;
}

.notice-box {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-left: 8px solid var(--cyan);
}

.notice-box p {
    margin: 0;
    font-weight: 900;
}

.qa-section {
    padding-top: 64px;
}

.qa-section .section-heading {
    margin-bottom: 18px;
}

.qa-section h2 {
    font-size: clamp(2.15rem, 4vw, 3.6rem);
}

.qa-list-compact {
    max-width: 880px;
}

.qa-list summary {
    min-height: 62px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 900;
}

.qa-list summary::-webkit-details-marker {
    display: none;
}

.qa-list summary::after {
    content: "+";
    color: var(--cyan);
    font-size: 1.8rem;
    line-height: 1;
}

.qa-list details[open] summary::after {
    content: "-";
}

.qa-content {
    padding: 0 18px 20px;
    color: var(--muted);
}

.qa-content h3 {
    margin: 22px 0 10px;
    color: var(--white);
    font-size: 1.04rem;
}

.qa-lead {
    margin: 0 0 6px;
    font-weight: 900;
}

.qa-content ul {
    margin: 0;
    padding-left: 1.2em;
}

.qa-content li + li {
    margin-top: 8px;
}

.address-box {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 14px 16px;
    color: var(--black);
    background:
        radial-gradient(circle at 18% 28%, var(--spray-cyan) 0 4px, transparent 5px),
        radial-gradient(circle, rgba(59, 183, 238, 0.14) 0 1px, transparent 1.7px) 0 0 / 22px 20px,
        #effcff;
    border-left: 8px solid var(--red);
    box-shadow: 6px 6px 0 var(--paint-shadow);
    font-weight: 800;
    transform: rotate(-0.6deg);
}

.address-box p {
    margin: 0;
}

.strong-note {
    color: var(--cyan);
    font-weight: 900;
}

.event-footer {
    min-height: 150px;
    padding: 36px 0 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 2px solid var(--line);
}

.event-footer img {
    width: 230px;
    margin-left: -8px;
}

.event-footer a {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--black);
    background: var(--cyan);
    text-decoration: none;
    border: 2px solid var(--black);
    box-shadow: 5px 5px 0 var(--paint-shadow);
    transform: rotate(-2deg);
}

.fixed-ticket {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 1100;
    width: min(620px, calc(100% - 24px));
    min-height: 62px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 28%, var(--spray-red) 0 5px, transparent 6px),
        radial-gradient(circle at 78% 74%, var(--spray-cyan) 0 5px, transparent 6px),
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.8px) 0 0 / 27px 24px,
        var(--black);
    border: 2px solid var(--cyan);
    box-shadow: 9px 9px 0 var(--paint-shadow), 0 0 34px rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(16px) rotate(-0.45deg);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.fixed-ticket.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) rotate(-0.45deg);
}

.fixed-ticket span {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 10px;
    color: var(--cyan);
    font-weight: 900;
    line-height: 1.35;
}

.fixed-ticket a {
    flex: 0 0 auto;
    min-width: 118px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: var(--red);
    text-decoration: none;
    font-weight: 900;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    box-shadow: 5px 5px 0 var(--paint-shadow);
}

.js-enabled [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.62s cubic-bezier(.2, .85, .18, 1);
}

.js-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled [data-reveal] :where(.news-list article, .overview-list div, .ticket-grid article, .movie-card, .qa-list details) {
    opacity: 0;
    transform: translateY(22px) rotate(var(--graffiti-tilt, 0deg));
    transition: opacity 0.48s ease, transform 0.58s cubic-bezier(.2, .85, .18, 1), border-color 0.18s ease;
}

.js-enabled [data-reveal].is-visible :where(.news-list article, .overview-list div, .ticket-grid article, .movie-card, .qa-list details) {
    opacity: 1;
    transform: translateY(0) rotate(var(--graffiti-tilt, 0deg));
}

.js-enabled [data-reveal].is-visible :where(.news-list article, .overview-list div, .ticket-grid article, .movie-card, .qa-list details):nth-child(2) {
    transition-delay: 90ms;
}

.js-enabled [data-reveal].is-visible :where(.news-list article, .overview-list div, .ticket-grid article, .movie-card, .qa-list details):nth-child(3) {
    transition-delay: 180ms;
}

.js-enabled [data-reveal].is-visible :where(.news-list article, .overview-list div, .ticket-grid article, .movie-card, .qa-list details):nth-child(4) {
    transition-delay: 270ms;
}

@keyframes slashDrift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 720px 360px;
    }
}

@keyframes ghostDrift {
    0% {
        transform: translate(-51%, -50%) rotate(-8deg) scale(0.98);
    }
    100% {
        transform: translate(-49%, -52%) rotate(-5deg) scale(1.02);
    }
}

@keyframes headlineDrift {
    0% {
        transform: translateX(-51%) rotate(-5deg);
    }
    100% {
        transform: translateX(-49%) rotate(-2deg);
    }
}

@keyframes railPulse {
    0%, 100% {
        opacity: 0.82;
        transform: translateX(0) skewX(-18deg);
    }
    50% {
        opacity: 1;
        transform: translateX(8px) skewX(-18deg);
    }
}

@keyframes posterEntrance {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes copyLift {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@media (max-width: 980px) {
    .hero-frame {
        width: min(760px, calc(100% - 32px));
    }

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

    .hero-actions {
        justify-self: stretch;
    }

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

    .movie-card {
        grid-template-columns: 1fr;
    }

    .fanmi-controls {
        grid-column: auto;
        justify-content: flex-start;
    }

    .hero-deco img {
        opacity: 0.04;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 64px;
    }

    .header-inner,
    .section,
    .movie-section,
    .event-footer {
        width: min(1180px, calc(100% - 24px));
    }

    .header-inner {
        width: 100%;
        position: relative;
        padding-left: 12px;
        padding-right: 58px;
    }

    .site-brand-logo {
        height: 32px;
        max-width: min(218px, calc(100vw - 112px));
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: 0;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 12px;
        right: 12px;
        display: none;
        padding: 14px;
        background: var(--black);
        border: 2px solid var(--line);
    }

    .site-nav.is-open {
        display: grid;
    }

    .hero {
        padding: calc(var(--header-height) + 20px) 0 32px;
    }

    .hero-frame {
        width: min(430px, calc(100% - 24px));
        gap: 24px;
    }

    .hero-poster::before {
        inset: 10px -10px -10px 10px;
        border-width: 2px;
    }

    .hero-poster img {
        border-width: 3px;
    }

    .hero-deco {
        display: none;
    }

    .event-type {
        font-size: 0.94rem;
    }

    .hero-facts,
    .overview-list,
    .contact-grid,
    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .ticket-notes summary {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 12px;
        padding: 14px 14px;
    }

    .ticket-notes summary span,
    .ticket-notes summary strong {
        grid-column: 1;
    }

    .ticket-notes summary::after {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .ticket-note-content {
        padding: 0 14px 16px;
    }

    .hero-actions,
    .section-heading,
    .venue-panel {
        align-items: stretch;
        flex-direction: column;
    }

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

    .button-primary,
    .button-secondary,
    .section-link {
        width: 100%;
    }

    h2 {
        font-size: 2.35rem;
    }

    .section,
    .movie-section {
        padding: 62px 0;
    }

    .cast-collage-inner {
        width: calc(100% - 14px);
        min-height: 206px;
        gap: 3px;
    }

    .cast-collage {
        min-height: 288px;
        padding-top: 10px;
        padding-bottom: 108px;
    }

    .cast-image {
        min-height: 205px;
    }

    .cast-image img {
        width: 40vw;
        max-width: none;
        height: auto;
    }

    .cast-standee:nth-child(1) {
        --x: 0;
        --sink: -30px;
    }

    .cast-standee:nth-child(2) {
        --x: -1.8vw;
        --sink: -30px;
    }

    .cast-standee:nth-child(3) {
        --x: 0.5vw;
        --sink: -30px;
    }

    .cast-standee:nth-child(4) {
        --x: 1.2vw;
        --sink: -30px;
    }

    .movie-card {
        padding: 14px;
        gap: 16px;
    }

    .movie-copy span {
        margin-bottom: 12px;
        font-size: 0.86rem;
    }

    .movie-copy h3 {
        font-size: 1.55rem;
    }

    .overview-list dd,
    .ticket-grid time,
    .movie-copy p,
    .qa-content {
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .cast-headline {
        bottom: 30%;
        font-size: 4.5rem;
    }

    .stage-rail {
        justify-content: center;
        gap: 20px;
        overflow-x: hidden;
    }

    .stage-rail span:nth-child(2),
    .stage-rail span:nth-child(3) {
        display: none;
    }

    .fixed-ticket {
        left: 12px;
        right: 12px;
        bottom: 10px;
        width: auto;
        min-height: 58px;
        transform: translateY(16px);
    }

    .fixed-ticket.is-visible {
        transform: none;
    }

    .fixed-ticket span {
        font-size: 0.88rem;
        padding-left: 6px;
    }

    .fixed-ticket a {
        min-width: 96px;
    }
}

@media (max-width: 520px) {
    .header-inner {
        width: calc(100% - 4px);
        margin-left: 4px;
        margin-right: auto;
    }

    .section,
    .movie-section,
    .event-footer {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }

    .news-list,
    .news-list article {
        max-width: calc(100vw - 40px);
    }

    .date-strip {
        display: grid;
        gap: 0;
        padding: 8px 12px;
        white-space: normal;
    }

    .date-strip p {
        padding: 8px 0;
    }

    .date-strip p + p {
        border-top: 2px solid rgba(7, 8, 12, 0.22);
    }

    .news-list article {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-list span,
    .news-list h3,
    .news-list p {
        grid-column: auto;
        grid-row: auto;
    }

    .news-list h3 {
        width: 100%;
        max-inline-size: calc(100vw - 40px);
        font-size: 1.32rem;
        line-height: 1.42;
        white-space: normal;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .news-list p {
        width: 100%;
        max-inline-size: calc(100vw - 40px);
        font-size: 0.96rem;
        line-height: 1.85;
        white-space: normal;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .fixed-ticket {
        width: min(360px, calc(100vw - 24px));
        right: auto;
    }
}

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

    .js-enabled [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
