:root {
    --bg: #080914;
    --bg-soft: #13182b;
    --card: rgba(12, 14, 26, 0.88);
    --text: #f4f7fb;
    --muted: #aeb6cb;
    --line: rgba(255, 255, 255, 0.12);
    --brand: #ff004f;
    --brand-dark: #8b5cf6;
    --accent: #00f2ea;
    --success: #34d399;
    --warning: #ffd166;
    --danger: #ff4d6d;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(0, 179, 255, 0.22), transparent 24%),
        radial-gradient(circle at top right, rgba(140, 108, 255, 0.18), transparent 26%),
        linear-gradient(180deg, #07111d 0%, #0a1626 100%);
}

.cinema-body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 0, 79, 0.16), transparent 26%),
        radial-gradient(circle at 18% 18%, rgba(0, 242, 234, 0.16), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(255, 92, 36, 0.16), transparent 22%),
        radial-gradient(circle at 72% 60%, rgba(139, 92, 246, 0.12), transparent 24%),
        linear-gradient(180deg, #090b16 0%, #0b1020 38%, #070912 100%);
}

.cinema-shell {
    position: relative;
    z-index: 2;
}

.cinema-halo {
    position: fixed;
    top: 0;
    width: 36vw;
    height: 56vh;
    pointer-events: none;
    filter: blur(22px);
    opacity: 0.75;
    z-index: 0;
}

.cinema-halo-left {
    left: -8vw;
    background: radial-gradient(circle at 25% 20%, rgba(0, 242, 234, 0.24), transparent 58%);
}

.cinema-halo-right {
    right: -10vw;
    background: radial-gradient(circle at 70% 16%, rgba(255, 0, 79, 0.24), transparent 60%);
}

.cinema-curtain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 10, 16, 0.78), transparent 12%, transparent 88%, rgba(6, 10, 16, 0.78)),
        linear-gradient(180deg, rgba(255,255,255,0.04), transparent 18%, transparent 82%, rgba(0,0,0,0.34));
}

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

.page-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.page-compact {
    max-width: 980px;
}

.page-narrow {
    max-width: 980px;
}

.hero,
.detail-layout,
.admin-grid,
.stats-grid {
    display: grid;
    gap: 24px;
}

.hero {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: stretch;
    min-height: 70vh;
}

.hero-copy,
.hero-card,
.detail-card,
.stat-card,
.event-card,
.order-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-card,
.detail-card,
.event-card,
.order-card,
.stat-card {
    padding: 28px;
}

.hero-card {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 26%),
        linear-gradient(180deg, rgba(17, 39, 67, 0.95), rgba(10, 25, 45, 0.98));
    color: #f8f5ef;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #7ccfff;
    margin: 0 0 12px;
}

.hero-card .eyebrow,
.hero-card h2,
.hero-card p,
.hero-card li {
    color: #f8f5ef;
}

h1,
h2,
h3 {
    line-height: 1.08;
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.lead {
    font-size: 1.15rem;
    max-width: 42rem;
    color: var(--muted);
}

.lead.small {
    font-size: 1rem;
}

.hero-actions,
.meta-row,
.section-heading,
.order-top,
.order-actions,
.order-form,
.inline-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.reply-preview-grid {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-wrap: wrap;
}

.reply-preview-grid > * {
    flex: 1 1 320px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.18s ease, background 0.18s ease;
}

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

.button.primary {
    color: #effaff;
    background: linear-gradient(135deg, #ff004f 0%, #8b5cf6 52%, #00c2ff 100%);
    box-shadow: 0 14px 34px rgba(255, 0, 79, 0.24);
}

.button.ghost,
.button.subtle {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--line);
}

.button.full {
    width: 100%;
}

.section {
    margin-top: 36px;
}

.section-heading {
    justify-content: space-between;
    margin-bottom: 18px;
}

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

.landing-stage,
.compact-benefits,
.summary-grid {
    display: grid;
    gap: 18px;
}

.landing-stage {
    margin-top: 14px;
    gap: 18px;
}

.player-stage,
.event-summary-card,
.benefit-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    box-shadow: var(--shadow);
}

.player-stage {
    overflow: hidden;
    border-radius: 34px;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at top right, rgba(255, 0, 79, 0.14), transparent 24%),
        radial-gradient(circle at top left, rgba(0, 242, 234, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(10, 12, 24, 0.96), rgba(11, 14, 25, 0.98));
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.player-stage .video-frame {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    min-height: 460px;
}

.locked-preview-frame {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    min-height: 460px;
}

.locked-preview-screen {
    min-height: 460px;
    padding: 28px 28px 24px;
    display: grid;
    align-content: end;
    gap: 18px;
    position: relative;
    isolation: isolate;
}

.locked-preview-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(6, 12, 20, 0.14), rgba(5, 9, 16, 0.68) 52%, rgba(5, 9, 16, 0.94) 100%),
        linear-gradient(180deg, rgba(9, 17, 28, 0.08), rgba(9, 17, 28, 0.92));
    z-index: -1;
}

.locked-preview-screen::before {
    content: "";
    position: absolute;
    inset: auto -12% -22% -12%;
    height: 42%;
    background: radial-gradient(circle at center, rgba(0, 242, 234, 0.16), transparent 62%);
    z-index: -1;
}

.locked-preview-badge {
    display: inline-flex;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: linear-gradient(135deg, rgba(6, 12, 21, 0.76), rgba(19, 28, 43, 0.68));
    color: #fff0f6;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0,0,0,0.24);
}

.locked-preview-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 102px;
    height: 102px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.18), rgba(12, 10, 28, 0.9));
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.48),
        0 0 0 12px rgba(255,255,255,0.04),
        0 0 44px rgba(255, 0, 79, 0.18);
}

.locked-preview-play::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-38%, -50%);
    border-style: solid;
    border-width: 16px 0 16px 26px;
    border-color: transparent transparent transparent #ffffff;
}

.locked-preview-content {
    display: grid;
    gap: 14px;
    max-width: 720px;
}

.locked-preview-content h2 {
    margin: 0;
    font-size: clamp(2rem, 4.4vw, 3.5rem);
    line-height: 1;
    max-width: 12ch;
    letter-spacing: -0.03em;
    text-shadow: 0 12px 36px rgba(0,0,0,0.38);
}

.locked-preview-content p:not(.eyebrow) {
    margin: 0;
    color: #dce5ef;
    line-height: 1.74;
    max-width: 58ch;
    font-size: 1rem;
}

.locked-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #f4f8fb;
    font-size: 0.92rem;
}

.locked-preview-meta span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(7, 13, 24, 0.56);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

.locked-preview-content .hero-actions {
    margin-top: 10px;
}

.event-summary-card,
.benefit-card {
    padding: 30px;
}

.event-summary-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border-color: rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at top left, rgba(255, 92, 36, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(0, 194, 255, 0.16), transparent 24%),
        radial-gradient(circle at 60% 120%, rgba(139, 92, 246, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(14, 16, 32, 0.97), rgba(11, 15, 28, 0.99));
}

.cinema-card-glow {
    position: absolute;
    inset: -20% auto auto -12%;
    width: 42%;
    height: 55%;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(255, 0, 79, 0.14), transparent 64%);
}

.landing-title {
    font-size: clamp(2.6rem, 4vw, 4rem);
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.landing-copy {
    margin: 0 0 20px;
    color: #bcd0e4;
    line-height: 1.82;
    font-size: 1.03rem;
}

.summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.summary-item {
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
    display: grid;
    gap: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.summary-item span {
    color: #8ea5bc;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.summary-item strong {
    font-size: 1.2rem;
}

.cinema-intro {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.cinema-marquee {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cinema-marquee span {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    color: #f7ddea;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.cinema-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
}

.cinema-note p {
    margin: 0;
    color: #d7e3ee;
    line-height: 1.72;
}

.cinema-note-dot {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff004f, #00f2ea);
    box-shadow: 0 0 18px rgba(255, 0, 79, 0.46);
}

.floating-cta {
    display: none;
}

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

.benefit-card p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.event-date,
.muted {
    color: var(--muted);
}

.event-card p {
    color: var(--muted);
}

.hero-metrics {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 6px;
}

.metric-chip,
.badge-live,
.badge-source {
    border-radius: 999px;
    border: 1px solid var(--line);
}

.metric-chip {
    padding: 12px 14px;
    min-width: 120px;
    background: rgba(255,255,255,0.04);
    display: grid;
    gap: 4px;
}

.metric-chip strong {
    font-size: 1rem;
}

.metric-chip span {
    color: var(--muted);
    font-size: 0.88rem;
}

.hero-note {
    margin-top: 18px;
    color: #d7e6f7;
    line-height: 1.7;
}

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

.showcase-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    box-shadow: var(--shadow);
}

.showcase-card p:last-child {
    color: var(--muted);
    line-height: 1.8;
}

.event-badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.badge-live,
.badge-source {
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
}

.badge-live {
    background: linear-gradient(135deg, rgba(255, 0, 79, 0.22), rgba(139, 92, 246, 0.18));
    color: #ffd7e5;
}

.badge-source {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.18), rgba(0, 194, 255, 0.16));
    color: #c8fffb;
}

.meta-row {
    justify-content: space-between;
    margin-top: 18px;
    margin-bottom: 18px;
}

.steps,
.info-list,
.table-stack,
.payment-list {
    display: grid;
    gap: 14px;
}

.info-list div,
.table-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.detail-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    margin-top: 22px;
}

.detail-layout.single {
    grid-template-columns: 1fr 320px;
}

.accent {
    background: linear-gradient(180deg, rgba(15, 32, 51, 0.95), rgba(10, 22, 38, 0.92));
}

.stack-form,
.auth-card,
label {
    display: grid;
    gap: 10px;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    font: inherit;
    color: #f4f7fb;
}

.checkbox {
    display: flex;
    align-items: center;
    grid-template-columns: none;
}

.checkbox input {
    width: 18px;
    height: 18px;
}

.flash,
.panel,
.helper-card,
.status-pill {
    border-radius: 18px;
}

.payment-item,
.qris-box {
    border-radius: 18px;
}

.flash,
.panel,
.helper-card {
    padding: 16px 18px;
}

.flash.info,
.panel.note,
.helper-card {
    background: rgba(0, 179, 255, 0.08);
    border: 1px solid rgba(0, 179, 255, 0.18);
}

.flash.error {
    background: rgba(177, 61, 51, 0.08);
    border: 1px solid rgba(177, 61, 51, 0.18);
}

.success-panel {
    background: rgba(52, 195, 143, 0.08);
    border: 1px solid rgba(52, 195, 143, 0.18);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
}

.status-pending {
    background: rgba(142, 101, 0, 0.12);
    color: var(--warning);
}

.status-approved {
    background: rgba(31, 122, 79, 0.12);
    color: var(--success);
}

.status-rejected {
    background: rgba(177, 61, 51, 0.12);
    color: var(--danger);
}

.payment-item,
.qris-box {
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.payment-item {
    display: grid;
    gap: 6px;
}

.qris-box img {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.video-frame {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 9;
    background: #17130f;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.admin-nav .button.active {
    color: #effaff;
    background: linear-gradient(135deg, var(--brand) 0%, #4f7cff 100%);
    border-color: transparent;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}

.admin-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.admin-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7ccfff;
    background: rgba(255, 255, 255, 0.02);
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
}

.stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 2rem;
}

.admin-grid {
    grid-template-columns: 1.1fr 0.9fr;
    margin-bottom: 24px;
}

.table-stack.compact .table-row:last-child,
.info-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.order-card {
    display: grid;
    gap: 16px;
}

.order-form {
    align-items: stretch;
}

.order-form select,
.order-form input {
    flex: 1 1 220px;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.auth-card {
    width: min(100%, 420px);
}

.back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: #8ddfff;
}

.empty-state {
    padding: 44px 28px;
    border-radius: 28px;
    border: 1px dashed var(--line);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.empty-state.small {
    padding: 24px;
}

code {
    font-size: 0.95em;
}

@media (max-width: 1180px) {
    .page-shell {
        padding: 24px 18px 44px;
    }

    .page-compact {
        max-width: 100%;
    }

    .landing-stage {
        gap: 16px;
    }

    .player-stage,
    .event-summary-card {
        border-radius: 28px;
    }

    .player-stage .video-frame,
    .locked-preview-frame,
    .locked-preview-screen {
        min-height: 380px;
    }

    .locked-preview-screen {
        padding: 24px 22px 20px;
    }

    .locked-preview-content h2 {
        font-size: clamp(1.9rem, 4.6vw, 2.9rem);
        max-width: 12ch;
        line-height: 1;
    }

    .locked-preview-content {
        max-width: 100%;
    }

    .locked-preview-content p:not(.eyebrow) {
        font-size: 0.96rem;
        max-width: 48ch;
    }

    .locked-preview-meta {
        gap: 8px;
        font-size: 0.84rem;
    }

    .locked-preview-meta span {
        padding: 8px 11px;
    }

    .locked-preview-play {
        width: 84px;
        height: 84px;
    }

    .locked-preview-play::before {
        border-width: 13px 0 13px 22px;
    }

    .event-summary-card {
        padding: 24px 22px;
    }

    .landing-title {
        font-size: clamp(2.25rem, 5vw, 3.4rem);
    }

    .landing-copy {
        font-size: 0.97rem;
        line-height: 1.72;
    }

    .summary-grid {
        gap: 12px;
    }

    .summary-item {
        padding: 16px 15px 14px;
    }

    .summary-item strong {
        font-size: 1.04rem;
    }

    .cinema-shell {
        padding-bottom: 32px;
    }
}

@media (max-width: 960px) {
    .hero,
    .detail-layout,
    .detail-layout.single,
    .admin-grid,
    .stats-grid,
    .grid-cards,
    .showcase-grid,
    .compact-benefits,
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy,
    .hero-card,
    .detail-card,
    .event-card,
    .order-card,
    .stat-card {
        padding: 22px;
    }

    .page-shell {
        padding: 24px 16px 46px;
    }

    .page-compact {
        max-width: 100%;
    }

    .cinema-halo {
        width: 54vw;
        height: 42vh;
        opacity: 0.56;
    }

    .cinema-curtain {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.03), transparent 18%, transparent 82%, rgba(0,0,0,0.3)),
            linear-gradient(90deg, rgba(6, 10, 16, 0.5), transparent 10%, transparent 90%, rgba(6, 10, 16, 0.5));
    }

    .cinema-intro {
        gap: 10px;
        margin-bottom: 14px;
    }

    .cinema-marquee span {
        font-size: 0.76rem;
        padding: 9px 13px;
    }

    .landing-stage {
        gap: 16px;
    }

    .player-stage,
    .event-summary-card {
        border-radius: 26px;
    }

    .player-stage .video-frame,
    .locked-preview-frame,
    .locked-preview-screen {
        min-height: 340px;
    }

    .locked-preview-screen {
        padding: 24px 22px 22px;
        align-content: end;
    }

    .locked-preview-content {
        max-width: 100%;
        gap: 12px;
    }

    .locked-preview-content h2 {
        max-width: 12ch;
        font-size: clamp(1.85rem, 5.2vw, 2.7rem);
    }

    .locked-preview-content p:not(.eyebrow) {
        font-size: 0.97rem;
        line-height: 1.68;
        max-width: 100%;
    }

    .locked-preview-play {
        width: 88px;
        height: 88px;
    }

    .locked-preview-play::before {
        border-width: 14px 0 14px 23px;
    }

    .event-summary-card,
    .benefit-card {
        padding: 24px;
    }

    .landing-title {
        font-size: clamp(2.15rem, 6vw, 3.2rem);
    }

    .landing-copy {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .summary-item strong {
        font-size: 1.08rem;
    }

    .cinema-note {
        padding: 14px 15px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .button {
        flex: 1 1 220px;
    }
}

@media (max-width: 720px) {
    .page-shell {
        padding: 18px 14px 36px;
    }

    .cinema-halo {
        width: 72vw;
        height: 34vh;
    }

    .cinema-intro .eyebrow {
        margin-bottom: 8px;
    }

    .cinema-marquee {
        gap: 8px;
    }

    .cinema-marquee span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .player-stage .video-frame,
    .locked-preview-frame,
    .locked-preview-screen {
        min-height: 300px;
    }

    .locked-preview-screen {
        padding: 20px 18px 18px;
        gap: 14px;
    }

    .locked-preview-badge {
        font-size: 0.7rem;
        letter-spacing: 0.14em;
    }

    .locked-preview-content h2 {
        max-width: 11ch;
        font-size: clamp(1.7rem, 7vw, 2.35rem);
        line-height: 1.02;
    }

    .locked-preview-meta {
        gap: 8px;
        font-size: 0.84rem;
    }

    .locked-preview-meta span {
        padding: 8px 11px;
    }

    .event-summary-card {
        padding: 20px 18px;
    }

    .summary-grid {
        gap: 12px;
    }

    .summary-item {
        padding: 16px 15px 14px;
    }

    .cinema-note {
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-actions .button {
        flex: 1 1 100%;
        width: 100%;
    }

    .floating-cta {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 10px;
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 12px;
        z-index: 20;
        padding: 12px;
        border-radius: 22px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(6, 12, 20, 0.82);
        backdrop-filter: blur(16px);
        box-shadow: 0 18px 42px rgba(0,0,0,0.36);
    }

    .floating-cta .button {
        min-height: 50px;
        width: 100%;
    }

    .cinema-shell {
        padding-bottom: 98px;
    }
}

@media (max-width: 540px) {
    .page-shell {
        padding: 14px 12px 28px;
    }

    .player-stage,
    .event-summary-card {
        border-radius: 22px;
    }

    .player-stage .video-frame,
    .locked-preview-frame,
    .locked-preview-screen {
        min-height: 270px;
    }

    .locked-preview-screen {
        padding: 16px 14px 16px;
    }

    .locked-preview-play {
        width: 74px;
        height: 74px;
        box-shadow:
            0 20px 44px rgba(0,0,0,0.42),
            0 0 0 8px rgba(255,255,255,0.04);
    }

    .locked-preview-play::before {
        border-width: 12px 0 12px 20px;
    }

    .locked-preview-content h2 {
        max-width: 10ch;
        font-size: clamp(1.55rem, 8.8vw, 2rem);
    }

    .locked-preview-content p:not(.eyebrow) {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .landing-title {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }

    .landing-copy {
        font-size: 0.94rem;
        margin-bottom: 16px;
    }

    .summary-item span {
        font-size: 0.76rem;
    }

    .summary-item strong {
        font-size: 1rem;
    }

    .cinema-note p {
        font-size: 0.92rem;
    }

    .floating-cta {
        left: 12px;
        right: 12px;
        bottom: 10px;
        grid-template-columns: 1fr 1fr;
        padding: 10px;
        border-radius: 18px;
    }

    .floating-cta .button {
        min-height: 48px;
        padding: 0 14px;
        font-size: 0.95rem;
    }

    .cinema-shell {
        padding-bottom: 92px;
    }
}
