:root {
    --bg: #060512;
    --bg-soft: rgba(13, 12, 33, 0.88);
    --panel: rgba(14, 15, 37, 0.82);
    --panel-strong: rgba(20, 21, 51, 0.96);
    --line: rgba(255, 255, 255, 0.08);
    --text: #f5f7ff;
    --muted: #b7bbd6;
    --pink: #ff4fa3;
    --cyan: #4ff5ff;
    --gold: #ffd166;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 79, 163, 0.22), transparent 26%),
        radial-gradient(circle at 80% 10%, rgba(79, 245, 255, 0.18), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(255, 209, 102, 0.14), transparent 30%),
        linear-gradient(180deg, #05030d 0%, #0a0820 45%, #04030a 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 4px;
    opacity: 0.16;
}

.page-shell {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 64px;
}

.retro-grid {
    position: absolute;
    inset: auto 0 0;
    height: 220px;
    background:
        linear-gradient(to top, rgba(79, 245, 255, 0.25), transparent 80%),
        repeating-linear-gradient(
            to right,
            rgba(79, 245, 255, 0.12) 0,
            rgba(79, 245, 255, 0.12) 1px,
            transparent 1px,
            transparent 84px
        ),
        repeating-linear-gradient(
            to top,
            rgba(79, 245, 255, 0.12) 0,
            rgba(79, 245, 255, 0.12) 1px,
            transparent 1px,
            transparent 46px
        );
    transform: perspective(280px) rotateX(68deg);
    transform-origin: bottom;
    opacity: 0.45;
    filter: drop-shadow(0 -10px 40px rgba(79, 245, 255, 0.2));
}

.hero,
.panel,
.ticket-card,
.feedback,
.location-box {
    backdrop-filter: blur(18px);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 360px);
    gap: 24px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(11, 9, 28, 0.94), rgba(16, 18, 44, 0.78));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -20% auto auto 60%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 79, 163, 0.35) 0%, transparent 70%);
    filter: blur(20px);
}

.eyebrow,
.section-label,
.card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--cyan);
}

.hero h1,
.panel h2 {
    margin: 10px 0 12px;
    line-height: 0.98;
}

.hero h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    text-transform: uppercase;
}

.lead,
.panel p,
.ticket-card p,
.schedule-item p,
.lineup-item p,
.faq-list p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-meta,
.hero-actions,
.hero-stats,
.panel-pills,
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-meta span,
.panel-pills span,
.location-box span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: #100716;
    background: linear-gradient(90deg, var(--gold), #ffdca2);
    box-shadow: 0 12px 32px rgba(255, 209, 102, 0.28);
}

.button-secondary {
    color: var(--text);
    border: 1px solid rgba(79, 245, 255, 0.25);
    background: rgba(79, 245, 255, 0.08);
}

.button-full {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.hero-card,
.panel,
.ticket-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 24px;
    background: linear-gradient(180deg, rgba(14, 16, 39, 0.92), rgba(10, 11, 28, 0.84));
}

.hero-card strong {
    display: block;
    margin: 14px 0 8px;
    font-size: 1.2rem;
}

.hero-card p {
    color: var(--muted);
    margin-bottom: 24px;
}

.hero-stats {
    justify-content: space-between;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
}

.content {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.panel {
    padding: 28px;
}

.panel-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, rgba(17, 16, 41, 0.95), rgba(20, 32, 61, 0.85));
}

.panel-copy {
    max-width: 720px;
}

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

.two-column-wide {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.lineup-list,
.schedule-list,
.faq-list,
.reservation-form {
    display: grid;
    gap: 14px;
}

.lineup-item,
.schedule-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lineup-item:first-child,
.schedule-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.lineup-slot,
.schedule-time {
    display: inline-flex;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 79, 163, 0.12);
    color: var(--pink);
    font-weight: 700;
}

.location-box {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(79, 245, 255, 0.12);
    background: rgba(79, 245, 255, 0.06);
}

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

.ticket-card {
    padding: 22px;
    background: linear-gradient(180deg, rgba(14, 15, 37, 0.95), rgba(18, 15, 33, 0.82));
}

.ticket-name {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
}

.ticket-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 2rem;
}

.ticket-card small {
    color: var(--gold);
}

.feedback {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
}

.feedback-success {
    border: 1px solid rgba(94, 255, 165, 0.2);
    background: rgba(94, 255, 165, 0.1);
    color: #b9ffd6;
}

.feedback-error {
    border: 1px solid rgba(255, 102, 137, 0.2);
    background: rgba(255, 102, 137, 0.1);
    color: #ffd1dc;
}

.warning-bar {
    margin-bottom: 18px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 209, 102, 0.22);
    border-radius: 18px;
    background: rgba(255, 209, 102, 0.1);
    color: #ffe7b3;
    line-height: 1.6;
}

.payment-result {
    border-width: 1px;
}

.payment-result-success {
    border-color: rgba(94, 255, 165, 0.24);
    background: linear-gradient(180deg, rgba(13, 43, 34, 0.9), rgba(12, 24, 28, 0.82));
}

.payment-result-error {
    border-color: rgba(255, 102, 137, 0.24);
    background: linear-gradient(180deg, rgba(50, 17, 29, 0.92), rgba(24, 12, 21, 0.82));
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.result-label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.method-badge {
    display: inline-flex;
    margin: 10px 0 18px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(79, 245, 255, 0.18);
    background: rgba(79, 245, 255, 0.07);
    color: var(--cyan);
    font-weight: 700;
}

.redirect-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 20px;
}

.redirect-card {
    width: min(560px, 100%);
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(12, 12, 31, 0.96), rgba(9, 9, 24, 0.88));
    box-shadow: var(--shadow);
    text-align: center;
}

.redirect-card h1 {
    margin: 14px 0;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
}

.redirect-card p {
    color: var(--muted);
    line-height: 1.7;
}

.tiny-note {
    margin-top: 16px;
    font-size: 0.9rem;
}

.reservation-form label {
    display: grid;
    gap: 8px;
}

.reservation-form span {
    font-size: 0.9rem;
    color: var(--muted);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(4, 7, 18, 0.72);
    color: var(--text);
    outline: none;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    border-color: rgba(79, 245, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(79, 245, 255, 0.08);
}

.faq-list details {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list details:first-child {
    padding-top: 0;
    border-top: 0;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
}

.event-layout {
    display: grid;
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.poster-column {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 14px;
}

.poster-card,
.event-header-card,
.highlight-strip,
.tickets-panel {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(12, 12, 31, 0.94), rgba(9, 9, 24, 0.86));
    box-shadow: var(--shadow);
}

.poster-card {
    overflow: hidden;
    padding: 12px;
}

.event-flyer {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    background: #05050a;
}

.poster-fallback {
    display: grid;
    place-items: center;
    min-height: 420px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
}

.event-column {
    display: grid;
    gap: 24px;
}

.event-header-card {
    padding: 28px;
}

.event-header-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.event-header-brand {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-page-title {
    margin: 14px 0 12px;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.94;
    text-transform: uppercase;
}

.event-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 26px;
}

.meta-box {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.meta-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.meta-box strong {
    font-size: 1.02rem;
    line-height: 1.4;
}

.highlight-strip {
    padding: 26px 28px;
}

.tickets-panel {
    padding: 28px 22px 20px;
    max-width: 460px;
}

.tickets-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 20px;
}

.tickets-head-single h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.2rem);
}

.event-ticket-grid {
    margin-bottom: 24px;
}

.purchase-form {
    gap: 16px;
}

.form-two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-two-cols-tight {
    align-items: end;
}

.info-chip {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(79, 245, 255, 0.16);
    border-radius: 16px;
    background: rgba(79, 245, 255, 0.07);
    color: var(--muted);
    line-height: 1.6;
}

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

.detail-list {
    display: grid;
    gap: 14px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-row:first-child {
    border-top: 0;
    padding-top: 0;
}

.detail-row span {
    color: var(--muted);
}

.ticket-selector {
    display: grid;
    margin-top: 8px;
}

.ticket-selector-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-selector-row:first-child {
    border-top: 0;
    padding-top: 10px;
}

.ticket-selector-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ticket-selector-copy strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.3;
}

.ticket-selector-copy span {
    display: block;
    margin-top: 4px;
    color: #8eff00;
    font-size: 1.05rem;
    font-weight: 800;
}

.ticket-availability {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.88rem;
}

.ticket-availability-soldout {
    color: #ff8fa8;
    font-weight: 700;
}

.ticket-selector-row-soldout {
    opacity: 0.9;
}

.ticket-selector-row-soldout .ticket-selector-copy strong,
.ticket-selector-row-soldout .ticket-selector-copy span {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.9);
}

.ticket-soldout-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #e5092f;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.ticket-stepper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stepper-button,
.stepper-value {
    display: grid;
    place-items: center;
    width: 44px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(9, 12, 22, 0.8);
    color: var(--text);
    font-size: 1.3rem;
}

.stepper-button {
    cursor: pointer;
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.stepper-button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.24);
}

.stepper-value {
    width: 56px;
    font-weight: 800;
    font-size: 1.15rem;
}

.ticket-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 8px;
    font-size: 1rem;
}

.ticket-subtotal-row span,
.ticket-subtotal-row strong {
    font-size: 1.08rem;
}

.ticket-submit-button {
    margin-top: 8px;
    min-height: 48px;
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    background: #8eff00;
    box-shadow: none;
}

.ticket-submit-button:hover {
    background: #a2ff29;
}

.ticket-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.ticket-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 600;
}

.seller-attribution {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(142, 255, 0, 0.24);
    background: rgba(142, 255, 0, 0.08);
    display: grid;
    gap: 4px;
}

.seller-attribution strong {
    font-size: 1rem;
    color: #ffffff;
}

.seller-attribution small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.buyer-fields {
    display: grid;
    gap: 16px;
}

.checkout-modal[hidden] {
    display: none;
}

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
}

.checkout-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 12, 0.7);
    backdrop-filter: blur(4px);
}

.checkout-modal-card {
    position: relative;
    width: min(680px, calc(100% - 24px));
    margin: 8vh auto 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 12, 31, 0.98), rgba(10, 11, 24, 0.96));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.checkout-modal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.checkout-modal-head h3 {
    margin: 8px 0 0;
    font-size: 1.6rem;
}

.checkout-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
}

.checkout-modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-modal-total span {
    color: var(--muted);
}

.checkout-modal-total strong {
    font-size: 1.35rem;
}

body.modal-open {
    overflow: hidden;
}

.confirmation-card {
    width: min(880px, 100%);
    text-align: left;
}

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

.confirmation-grid > div,
.confirmation-copy {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.site-lock-banner {
    border-color: rgba(255, 107, 134, 0.28);
    background: linear-gradient(180deg, rgba(66, 18, 28, 0.96), rgba(28, 15, 20, 0.96));
}

.site-lock-banner h2 {
    margin: 10px 0 8px;
}

.site-lock-banner p {
    margin: 0;
    color: var(--muted);
}

.notice-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
}

.notice-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 14, 0.78);
    backdrop-filter: blur(6px);
}

.notice-card {
    position: relative;
    width: min(460px, 100%);
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(18, 22, 36, 0.98), rgba(16, 19, 31, 0.98));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.notice-card h2 {
    margin: 10px 0 8px;
    font-size: 1.9rem;
}

.notice-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.6;
}

body.notice-open {
    overflow: hidden;
}

.notice-card-success {
    border-color: rgba(142, 255, 0, 0.3);
}

.notice-card-error {
    border-color: rgba(255, 107, 134, 0.28);
}

button:disabled,
.button:disabled,
.stepper-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    filter: grayscale(0.15);
}

.qr-panel {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.qr-preview {
    margin-top: 12px;
    background: #ffffff;
    border-radius: 18px;
    padding: 14px;
}

.qr-preview svg {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 980px) {
    .hero,
    .two-column,
    .two-column-wide,
    .ticket-grid,
    .result-grid,
    .event-layout,
    .event-meta-grid,
    .form-two-cols,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .panel-highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .poster-column {
        position: static;
    }

    .tickets-head,
    .event-header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ticket-selector-row {
        grid-template-columns: 1fr;
    }

    .ticket-stepper {
        justify-content: flex-start;
    }

    .confirmation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 20px, 1180px);
        padding-top: 20px;
    }

    .hero,
    .panel,
    .event-header-card,
    .highlight-strip,
    .tickets-panel,
    .poster-card {
        padding: 22px;
        border-radius: 22px;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.4rem, 13vw, 3.7rem);
    }

    .event-page-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .tickets-panel {
        max-width: none;
    }

    .lineup-item,
    .schedule-item {
        grid-template-columns: 1fr;
    }

    .button,
    .hero-actions a {
        width: 100%;
    }

    .checkout-modal-card {
        width: min(100% - 16px, 680px);
        margin-top: 14px;
        padding: 18px;
        border-radius: 18px;
    }
}
