* { box-sizing: border-box; }
html { min-height: 100%; background: #03130c; overflow-x: hidden; }
body { margin: 0; color: #fff; font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; }
.stage {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 55px 24px 100px;
  padding-top: max(55px, env(safe-area-inset-top));
  padding-bottom: max(100px, env(safe-area-inset-bottom));
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
  background: url("assets/theater.png") center center / cover no-repeat;
}
.content { width: min(100%, 980px); text-align: center; margin-top: -45px; padding-inline: 8px; }
.logo { display: block; width: 188px; height: auto; margin: 0 auto 38px; }
h1 { margin: 0 0 12px; font-size: clamp(28px, 4.2vw, 70px); line-height: 1.1; font-weight: 900; letter-spacing: -1.5px; text-wrap: balance; overflow-wrap: anywhere; }
.intro { margin: 14px 0 10px; font-size: clamp(18px, 1.92vw, 32px); line-height: 1.4; text-wrap: balance; }
.intro strong { font-weight: 800; }
.buy-note { margin: 0 auto 28px; max-width: 620px; font-size: clamp(17px, 1.7vw, 24px); line-height: 1.4; text-wrap: balance; }
.tickets {
  display: inline-flex; align-items: center; justify-content: center; gap: 24px;
  width: min(100%, 334px); min-height: 80px; padding: 18px 40px;
  border-radius: 100px; background: #c9241c; color: #fff;
  font-size: clamp(22px, 3.2vw, 32px); font-weight: 700; line-height: 1.2; text-decoration: none;
  transition: background-color .18s ease, transform .18s ease;
}
.tickets svg { width: 35px; height: 35px; flex-shrink: 0; transform: rotate(-32deg); }
.tickets:hover { background: #df3026; transform: translateY(-2px); }
.tickets:focus-visible { outline: 3px solid white; outline-offset: 6px; }
.description { margin: 24px auto 0; max-width: min(640px, 100%); font-size: clamp(16px, 1.6vw, 23px); line-height: 1.35; text-wrap: balance; }
@media (max-width: 767px) {
  .stage {
    padding: 42px 18px 64px;
    padding-top: max(42px, env(safe-area-inset-top));
    padding-bottom: max(64px, env(safe-area-inset-bottom));
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
    background-position: 50% center;
  }
  .content { margin-top: 0; padding-inline: 0; }
  .logo { width: 150px; margin-bottom: 30px; }
  h1 { max-width: 520px; margin: 0 auto; font-size: clamp(28px, 7.8vw, 52px); line-height: 1.12; letter-spacing: -.8px; }
  .intro { max-width: 470px; margin: 22px auto 10px; font-size: clamp(17px, 4.6vw, 20px); line-height: 1.5; }
  .intro strong { display: block; }
  .buy-note { max-width: 420px; margin-bottom: 24px; font-size: 16px; }
  .tickets { width: min(100%, 310px); min-height: 68px; padding: 16px 28px; font-size: 24px; gap: 18px; }
  .tickets svg { width: 30px; height: 30px; }
  .description { max-width: 390px; margin-top: 25px; font-size: 17px; line-height: 1.5; }
  .desktop-break { display: none; }
}
@media (max-width: 380px) {
  h1 { font-size: 26px; letter-spacing: -.5px; }
  .tickets { font-size: 22px; padding: 14px 20px; }
}
@media (prefers-reduced-motion: reduce) { .tickets { transition: none; } }
