:root {
  color-scheme: light;
  --showcase-panel: rgba(247, 250, 252, 0.92);
  --showcase-text: #102032;
  --showcase-muted: #526070;
  --showcase-line: rgba(16, 32, 50, 0.18);
}

* {
  box-sizing: border-box;
}

.a-enter-vr,
.a-enter-vr-button {
  display: none !important;
}

.chimera-fx-fire-booking {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
}

.chimera-fx-booking-chimera {
  opacity: 0.56;
  filter: saturate(1.12) contrast(1.04);
}

.showcase-shell {
  position: fixed;
  inset: 0;
  z-index: 8;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 24px;
  pointer-events: none;
}

.showcase-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  pointer-events: auto;
}

.showcase-header .eyebrow {
  margin: 0 0 4px;
  color: #d9f3ff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.showcase-header h1 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.75);
}

.showcase-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.showcase-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--showcase-line);
  border-radius: 6px;
  color: var(--showcase-text);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(16, 32, 50, 0.2);
  font: inherit;
  text-decoration: none;
}

.booking-component {
  grid-row: 2;
  align-self: end;
  justify-self: start;
  display: grid;
  gap: 14px;
  width: min(480px, calc(100vw - 48px));
  margin-left: max(0px, calc((100vw - 1180px) / 2));
  padding: 18px;
  border: 1px solid rgba(92, 210, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(5, 12, 24, 0.90), rgba(16, 7, 12, 0.84)),
    radial-gradient(circle at 14% 0%, rgba(71, 199, 255, 0.22), transparent 38%),
    radial-gradient(circle at 90% 108%, rgba(255, 138, 30, 0.20), transparent 42%);
  color: #f7fbff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.44), 0 0 46px rgba(71, 199, 255, 0.14);
  backdrop-filter: blur(12px) saturate(1.12);
  pointer-events: auto;
}

.booking-component--chimera {
  position: relative;
  overflow: hidden;
}

.booking-component--chimera::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(71, 199, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 209, 102, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000, transparent 82%);
}

.booking-component--chimera > * {
  position: relative;
}

.booking-component-kicker {
  margin: 0 0 6px;
  color: #8bdcff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-component h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: 0;
}

.booking-component p {
  margin: 8px 0 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.booking-component-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.booking-component-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 8px;
  border: 1px solid rgba(139, 220, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.booking-component-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-component-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(139, 220, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.88);
  font-weight: 700;
  text-decoration: none;
}

.booking-component-actions .is-primary {
  border-color: rgba(139, 220, 255, 0.60);
  background: linear-gradient(135deg, #9ee8ff, #39b7ff 44%, #f59e0b);
  color: #06101d;
}

.showcase-grid {
  grid-row: 2;
  align-self: end;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, calc(100vw - 48px));
  pointer-events: auto;
}

.showcase-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--showcase-line);
  border-radius: 8px;
  background: var(--showcase-panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px) saturate(1.08);
}

.showcase-frame {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  background: #0e1726;
}

.showcase-card video,
.showcase-fallback {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card.is-empty video {
  display: none;
}

.showcase-card:not(.is-empty) .showcase-fallback {
  display: none;
}

.showcase-card h2 {
  margin: 0;
  padding: 10px 12px;
  color: var(--showcase-text);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .showcase-shell {
    gap: 14px;
    padding: 14px;
  }

  .showcase-header {
    display: grid;
  }

  .showcase-nav {
    justify-content: flex-start;
  }

  .booking-component {
    align-self: start;
    justify-self: stretch;
    width: 100%;
    margin-left: 0;
  }

  .booking-component-steps {
    grid-template-columns: 1fr;
  }

  .hud {
    display: none;
  }

  .showcase-grid {
    justify-self: stretch;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 46vh;
    overflow: auto;
  }
}
