:root {
  --bg-1: #0b0d10;
  --bg-2: #111827;
  --bg-3: #1b2432;
  --text: #f4f1ea;
  --muted: #b8b1a6;
  --accent-1: #ff4d4d;
  --accent-2: #2ee6d6;
  --accent-3: #ffb347;
  --accent-4: #4cc9f0;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #172033 0%, var(--bg-1) 60%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
  line-height: 1.6;
  color-scheme: dark;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(46, 230, 214, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(255, 179, 71, 0.05) 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px;
  opacity: 0.5;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.3;
  z-index: -1;
}

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

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.container.narrow {
  width: min(880px, 92%);
}

.section {
  padding: 80px 0;
}

.section.split {
  background: rgba(17, 24, 39, 0.55);
}

.section.split.alt {
  background: rgba(11, 13, 16, 0.85);
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent-2);
  display: inline-block;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46, 230, 214, 0.15);
  border: 1px solid rgba(46, 230, 214, 0.35);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 16, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand img {
  width: 40px;
  height: 40px;
}

.mobile-quick-nav {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 10px;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -9px;
}

.nav-toggle__icon::after {
  top: 9px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav > a,
.site-nav > .nav-login-button {
  position: relative;
}

.site-nav > a:not(:first-child)::before,
.site-nav > .nav-login-button::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ffd400;
  box-shadow: 0 0 8px rgba(255, 212, 0, 0.72);
  transform: translateY(-50%);
}

.site-nav a,
.site-nav .nav-login-button {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav .nav-login-button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.nav-label-mobile {
  display: none;
}

.site-nav a:hover,
.site-nav .nav-login-button:hover {
  color: var(--text);
}

.hero {
  position: relative;
  padding: 140px 0 120px;
  background-image: linear-gradient(120deg, rgba(11, 13, 16, 0.95), rgba(11, 13, 16, 0.2)), var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 77, 77, 0.2), transparent 55%),
    radial-gradient(circle at bottom left, rgba(46, 230, 214, 0.2), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-brand img {
  width: 64px;
  height: 64px;
}

.hero-title {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--accent-3);
  font-weight: 600;
}

.hero-note {
  color: var(--accent-2);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

/* --- Home page (React parity) --- */
.home-page {
  background: #000;
}

.home-hero {
  position: relative;
  min-height: 30vh;
  padding: 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .home-hero {
    min-height: 60vh;
    padding: 80px 0;
  }
}

.home-hero__bg {
  position: absolute;
  inset: 0;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.home-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.6), rgba(190, 24, 93, 0.6), rgba(14, 116, 144, 0.6));
  z-index: 1;
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.home-hero__dot {
  position: absolute;
  border-radius: 999px;
  animation: homePulse 3s ease-in-out infinite;
  z-index: 3;
  box-shadow: 0 0 16px currentColor;
}

.home-hero__dot--pink {
  width: 12px;
  height: 12px;
  color: #ec4899;
  background: #ec4899;
  top: 18%;
  left: 10%;
}

.home-hero__dot--green {
  width: 18px;
  height: 18px;
  color: #4ade80;
  background: #4ade80;
  top: 30%;
  right: 12%;
  animation-delay: 0.4s;
}

.home-hero__dot--cyan {
  width: 10px;
  height: 10px;
  color: #22d3ee;
  background: #22d3ee;
  bottom: 28%;
  left: 28%;
  animation-delay: 0.8s;
}

.home-hero__dot--alt {
  width: 16px;
  height: 16px;
  bottom: 18%;
  right: 30%;
  animation-delay: 1.2s;
}

.home-hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 16px;
}

.home-hero__logo img {
  height: 64px;
  width: auto;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.home-hero__logo img:hover {
  transform: scale(1.05);
}

.home-hero__title {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ec4899, #4ade80, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(236, 72, 153, 0.45);
  margin-bottom: 16px;
}

.home-hero__subtitle {
  color: #d1d5db;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin-bottom: 10px;
}

.home-hero__hours {
  color: #22d3ee;
  font-size: 1rem;
  margin-bottom: 6px;
}

.home-hero__note {
  color: #facc15;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.home-hero__lead {
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.home-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-btn__icon {
  font-size: 1rem;
}

.home-btn--large {
  padding: 14px 20px;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .home-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

.home-btn--karaoke {
  background: linear-gradient(90deg, #ec4899, #9333ea);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.35);
}

.home-btn--n64 {
  background: linear-gradient(90deg, #22c55e, #06b6d4);
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.35);
}

.home-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.home-section {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .home-section {
    padding: 64px 0;
  }
}

.home-section--dark {
  background: #000;
}

.home-section--panel {
  background: #111827;
}

.home-divider {
  height: 1px;
  margin: 0 4%;
  background: linear-gradient(90deg, transparent, #ec4899, transparent);
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.home-divider--cyan {
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.home-divider--purple {
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.home-page [data-cms-order-key="home.sections_order"] > [data-cms-section]:first-child .home-divider {
  display: none;
}

.home-heading h2 {
  font-family: "Orbitron", "Trebuchet MS", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ec4899, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-about {
  max-width: 980px;
  margin: 0 auto;
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.8;
  display: grid;
  gap: 18px;
  text-align: center;
}

.home-about__tagline {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #4ade80, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .home-split {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-split--reverse .home-copy {
    order: 2;
  }
  .home-split--reverse .home-media {
    order: 1;
  }
}

.home-copy p {
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.home-title {
  font-family: "Orbitron", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.home-title--green {
  background: linear-gradient(90deg, #4ade80, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-title--purple {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-title--yellow {
  background: linear-gradient(90deg, #facc15, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-subtitle {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.home-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.home-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d1d5db;
}

.home-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

.home-dot--green { background: #4ade80; }
.home-dot--cyan { background: #22d3ee; }
.home-dot--pink { background: #ec4899; }
.home-dot--yellow { background: #facc15; }
.home-dot--purple { background: #a855f7; }
.home-dot--red { background: #f87171; }
.home-dot--orange { background: #fb923c; }

.home-media {
  display: flex;
  justify-content: center;
}

.home-media__image {
  width: 100%;
  max-width: 520px;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.home-carousel {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.home-carousel__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  transition: opacity 0.4s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
  .home-carousel__image {
    height: 280px;
  }
}

.home-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.home-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
}

.home-carousel__dot.is-active {
  background: #fff;
}

.home-note {
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}

.home-note__title {
  color: #facc15;
  font-weight: 600;
  margin-bottom: 8px;
}

.home-note__list {
  display: grid;
  gap: 8px;
  color: #d1d5db;
}

.home-note__list div {
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes homePulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  color: #0b0d10;
}

.btn-outline {
  border-color: rgba(46, 230, 214, 0.6);
  color: var(--accent-2);
  background: rgba(46, 230, 214, 0.1);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(17, 24, 39, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
}

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

.split-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.media-card {
  background: rgba(17, 24, 39, 0.9);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.media-image {
  width: 100%;
  border-radius: calc(var(--radius) - 8px);
  height: clamp(220px, 28vw, 320px);
  object-fit: cover;
}

.media-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
}

.icon-list li {
  position: relative;
  padding-left: 20px;
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.notice {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 179, 71, 0.35);
  background: rgba(255, 179, 71, 0.08);
}

.notice-info {
  border-color: rgba(46, 230, 214, 0.35);
  background: rgba(46, 230, 214, 0.12);
}

.notice-error {
  border-color: rgba(255, 77, 77, 0.4);
  background: rgba(255, 77, 77, 0.12);
}

[hidden] {
  display: none !important;
}

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

.time-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-auto-flow: row;
  gap: 12px;
  margin: 12px 0 8px;
}

.booking-day-label {
  margin: 10px 0 6px;
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(226, 232, 240, 0.9);
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.22);
}

.time-slot-btn {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(19, 22, 39, 0.65);
  color: #f2f2f2;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.time-slot-btn:hover:not(.is-disabled) {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.time-slot-btn.is-selected {
  border-color: #ffb34c;
  box-shadow: 0 0 0 2px rgba(255, 179, 76, 0.3);
}

.time-slot-btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.karaoke-page {
  padding: 80px 0;
  background: #0f172a;
}

.karaoke-header {
  text-align: center;
  margin-bottom: 40px;
}

.karaoke-title {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: transparent;
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.karaoke-subtitle {
  color: #94a3b8;
  margin-top: 12px;
  font-size: 1.05rem;
}

.karaoke-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.karaoke-tab {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.6);
  color: #cbd5f5;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.karaoke-tab.is-active {
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(56, 189, 248, 0.2);
}

.karaoke-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

@media (min-width: 980px) {
  .karaoke-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
  }
}

.karaoke-panel {
  display: none;
}

.karaoke-panel.is-active {
  display: block;
}

.karaoke-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.karaoke-media-body h2 {
  margin: 18px 0 10px;
  font-size: 1.4rem;
}

.karaoke-media-body p {
  color: #cbd5f5;
}

.karaoke-thumbs {
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
}

.karaoke-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: none;
  cursor: pointer;
}

.karaoke-thumb img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.karaoke-thumb.is-active {
  border-color: #38bdf8;
}

.karaoke-card {
  margin-top: 20px;
}

.karaoke-card h3 {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: transparent;
  background: linear-gradient(90deg, #34d399, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.karaoke-inclusions {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #cbd5f5;
}

.karaoke-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.6);
  padding: 16px;
  border-radius: 12px;
}

.karaoke-room-name {
  display: block;
  font-weight: 600;
}

.karaoke-room-note {
  display: block;
  color: #94a3b8;
  font-size: 0.9rem;
}

.karaoke-room-price {
  font-size: 1.5rem;
  color: #34d399;
  font-weight: 700;
}

.karaoke-contact {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.karaoke-contact a {
  color: #cbd5f5;
}

.karaoke-form h3 {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: transparent;
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.karaoke-form-inner {
  display: grid;
  gap: 18px;
}

.karaoke-form label {
  color: #cbd5f5;
  font-weight: 600;
  margin-bottom: 8px;
}

.karaoke-form input,
.karaoke-form select {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 10px;
  color: #f8fafc;
  padding: 10px 12px;
}

.radio-row {
  display: flex;
  gap: 20px;
}

.radio-row input {
  margin-right: 6px;
}

.karaoke-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #cbd5f5;
}

.karaoke-submit {
  padding: 14px 18px;
  font-weight: 700;
}

.n64-page {
  padding: 80px 0;
  background: #0b1220;
}

.n64-header {
  text-align: center;
  margin-bottom: 40px;
}

.n64-title {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: transparent;
  background: linear-gradient(90deg, #f97316, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.n64-subtitle {
  color: #94a3b8;
  margin-top: 12px;
  font-size: 1.05rem;
}

.n64-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

@media (min-width: 980px) {
  .n64-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
  }
}

.n64-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.n64-thumbs {
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
}

.n64-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: none;
  cursor: pointer;
}

.n64-thumb img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.n64-thumb.is-active {
  border-color: #38bdf8;
}

.n64-media-body h2 {
  margin: 18px 0 10px;
  font-size: 1.4rem;
}

.n64-media-body p {
  color: #cbd5f5;
}

.n64-card {
  margin-top: 20px;
}

.n64-card h3 {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: transparent;
  background: linear-gradient(90deg, #f97316, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.n64-inclusions {
  display: grid;
  gap: 16px;
}

.n64-booth-block h4 {
  margin-bottom: 8px;
  color: #f8fafc;
}

.n64-booth-block ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #cbd5f5;
}

.n64-pricing {
  display: grid;
  gap: 12px;
}

.n64-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.6);
  padding: 16px;
  border-radius: 12px;
}

.n64-room-name {
  display: block;
  font-weight: 600;
}

.n64-room-note {
  display: block;
  color: #94a3b8;
  font-size: 0.9rem;
}

.n64-room-price {
  font-size: 1.5rem;
  color: #34d399;
  font-weight: 700;
}

.n64-form h3 {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: transparent;
  background: linear-gradient(90deg, #f97316, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.n64-form-inner {
  display: grid;
  gap: 18px;
}

.n64-form input,
.n64-form select {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 10px;
  color: #f8fafc;
  padding: 10px 12px;
}

.checkout-card {
  display: grid;
  gap: 20px;
}

.checkout-summary {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 14px;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  color: #cbd5f5;
}

.checkout-line span {
  display: block;
  color: #94a3b8;
  font-size: 0.9rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8fafc;
}

.checkout-payment {
  display: grid;
  gap: 16px;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery img {
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.cta {
  background: linear-gradient(120deg, rgba(46, 230, 214, 0.12), rgba(255, 77, 77, 0.12));
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.page-hero {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--border);
}

.page-hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.page-hero h1 {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(46, 230, 214, 0.6);
  box-shadow: 0 0 0 3px rgba(46, 230, 214, 0.15);
}

.form-full {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox input {
  accent-color: var(--accent-2);
}

.flash {
  padding: 16px 0;
}

.flash-message {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.flash-message.success {
  background: rgba(46, 230, 214, 0.15);
  border: 1px solid rgba(46, 230, 214, 0.4);
  color: var(--text);
}

.flash-message.error {
  background: rgba(255, 77, 77, 0.12);
  border: 1px solid rgba(255, 77, 77, 0.4);
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  background: rgba(11, 13, 16, 0.9);
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-cta {
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 40px;
}

.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.title {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}

.newsletter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.newsletter input {
  flex: 1 1 180px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 10px 12px;
  font-family: inherit;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

@media (max-width: 900px) {
  .hero {
    padding-top: 120px;
  }

  .site-header {
    min-height: 64px;
    overflow: visible;
  }

  .site-header .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 4%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(11, 13, 16, 0.98);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: none;
  }

  .site-nav > a::before,
  .site-nav > .nav-login-button::before {
    display: none;
  }

  .site-header .brand {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    gap: 0;
  }

  .site-header .brand img {
    width: 64px;
    height: 64px;
  }

  .site-header .brand span {
    display: none;
  }

  .header-inner {
    gap: 8px;
    justify-content: flex-start;
    min-height: 64px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .mobile-quick-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    top: 13px;
    left: 70px;
    right: 58px;
    z-index: 111;
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-quick-nav a {
    color: var(--text);
  }

  .mobile-quick-nav__menu {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.92;
  }

  .mobile-quick-nav__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ffd400;
    box-shadow: 0 0 8px rgba(255, 212, 0, 0.72);
    flex: 0 0 auto;
  }

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

  .nav-label-desktop {
    display: none;
  }

  .nav-label-mobile {
    display: inline;
  }

  .site-header .nav-toggle {
    display: inline-flex !important;
    width: 38px;
    height: 36px;
    flex: 0 0 38px;
    margin-left: auto;
    position: fixed;
    top: 14px;
    right: max(10px, calc(100vw - 380px));
    z-index: 110;
  }

  .nav-toggle__icon,
  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    width: 22px;
  }
}

@media (max-width: 360px) {
  .mobile-quick-nav {
    left: 66px;
    right: 52px;
    gap: 7px;
    font-size: 0.78rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  [data-reveal] {
    transition: none;
  }
}

/* Checkout */
.checkout-page {
  padding: 80px 0;
  background: #070a12;
}

.checkout-header {
  text-align: center;
  margin-bottom: 40px;
}

.checkout-title {
  font-family: "Orbitron", "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: transparent;
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.checkout-title-line {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  border-radius: 999px;
  margin: 12px auto;
}

.checkout-subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
}

.checkout-login-banner {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #d0d7e4;
  font-size: 0.9rem;
}

.checkout-login-link {
  background: none;
  border: none;
  color: #ff8bd2;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}

.checkout-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 980px) {
  .checkout-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .checkout-panel {
    flex: 1;
  }
}

.checkout-panel {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 77, 77, 0.25);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.checkout-panel-inner {
  padding: 24px;
}

.checkout-panel-sticky {
  position: sticky;
  top: 110px;
}

.checkout-section {
  margin-bottom: 24px;
}

.checkout-section:last-child {
  margin-bottom: 0;
}

.checkout-section-title {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 77, 77, 0.2);
  color: #f8fafc;
}

.checkout-section-subtitle {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #f8fafc;
}

.checkout-group {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
}

.checkout-group h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #ff8bd2;
}

.checkout-fields {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.checkout-fields.three {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.checkout-field label {
  color: #cbd5f5;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.checkout-field label span {
  color: #ff4d9a;
}

.checkout-field input {
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 10px;
  color: #f8fafc;
  padding: 12px 14px;
  font-family: inherit;
}

.checkout-field input:focus {
  outline: none;
  border-color: rgba(255, 77, 154, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 77, 154, 0.2);
}

.checkout-order {
  display: grid;
  gap: 14px;
}

.checkout-order-item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  padding-bottom: 12px;
}

.checkout-order-line {
  display: flex;
  justify-content: space-between;
  color: #d1d5db;
  font-weight: 600;
}

.checkout-order-meta {
  font-size: 0.85rem;
  color: #94a3b8;
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.checkout-warning {
  margin-top: 8px;
  font-size: 0.8rem;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fecaca;
  padding: 6px 10px;
  border-radius: 8px;
}

.checkout-totals {
  border-top: 1px solid rgba(255, 77, 77, 0.2);
  margin-top: 12px;
  padding-top: 12px;
  display: grid;
  gap: 6px;
}

.checkout-total-line {
  display: flex;
  justify-content: space-between;
  color: #cbd5f5;
}

.checkout-total-line.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8fafc;
}

.checkout-total-amount {
  color: #34d399;
}

.checkout-policy {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  padding: 16px;
  color: #cbd5f5;
  font-size: 0.9rem;
}

.checkout-policy-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkout-policy-check input {
  margin-top: 4px;
  accent-color: #ff4d9a;
}

.checkout-policy-check strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.checkout-policy-check em {
  display: block;
  margin-top: 10px;
  color: #e2e8f0;
}

.checkout-payment-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 14px;
}

.checkout-test-banner {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: #ff2d2d;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.checkout-payment-form {
  display: grid;
  gap: 12px;
}

.checkout-payment-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.square-card-container {
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  min-height: 54px;
  border: 1px solid #cbd5f5;
}

.checkout-payment-total {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  color: #cbd5f5;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 10px;
  padding: 10px 12px;
}

.checkout-alert {
  margin: 10px 0;
  color: #fca5a5;
  font-size: 0.9rem;
}

.checkout-pay-button {
  width: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #0b0d10;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-pay-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.25);
}

.checkout-pay-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-security {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 10px;
}

.checkout-empty h2 {
  margin-bottom: 8px;
}

/* Auth Modals */
.auth-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
}

.auth-modal.is-open {
  display: flex;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
}

.auth-modal-card {
  width: min(420px, 92%);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 77, 154, 0.3);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.auth-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.auth-modal-title {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  color: transparent;
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.auth-modal-close {
  background: none;
  border: none;
  color: #cbd5f5;
  font-size: 1.8rem;
  cursor: pointer;
}

.auth-modal-form {
  display: grid;
  gap: 14px;
}

.auth-field label {
  display: block;
  margin-bottom: 6px;
  color: #cbd5f5;
  font-weight: 600;
}

.auth-field input {
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 10px;
  color: #f8fafc;
  padding: 12px 14px;
  font-family: inherit;
}

.auth-field input:focus {
  outline: none;
  border-color: rgba(255, 77, 154, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 77, 154, 0.2);
}

.auth-forgot {
  text-align: right;
  margin-top: 6px;
}

.auth-forgot a {
  font-size: 0.75rem;
  color: #ff8bd2;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5f5;
  font-size: 0.85rem;
}

.auth-error {
  color: #fca5a5;
  font-size: 0.85rem;
  min-height: 18px;
}

.auth-submit {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #ff4d9a, #7c3aed);
  color: #0b0d10;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

.auth-switch {
  margin-top: 16px;
  text-align: center;
  color: #cbd5f5;
  font-size: 0.9rem;
}

.auth-switch button {
  background: none;
  border: none;
  color: #ff8bd2;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.auth-choice-text {
  margin: 0 0 18px;
  color: #cbd5f5;
}

.auth-choice-actions {
  display: grid;
  gap: 12px;
}

.auth-choice-link {
  display: block;
  text-align: center;
}

.auth-choice-secondary {
  background: linear-gradient(90deg, #38bdf8, #7c3aed);
}

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

@media (min-width: 960px) {
  .trivia-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
    align-items: start;
  }
}

.trivia-form {
  display: grid;
  gap: 20px;
}

.trivia-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trivia-filter button {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.72);
  color: #cbd5f5;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.trivia-filter button.is-active {
  border-color: transparent;
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  color: #fff;
}

.trivia-date-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.trivia-date-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.45);
  border-radius: 12px;
  padding: 12px;
}

.trivia-date-option strong,
.trivia-date-option small {
  display: block;
}

.trivia-date-option small {
  color: #94a3b8;
  margin-top: 4px;
}

.trivia-note {
  display: grid;
  gap: 12px;
}

/* Payment Modal */
.payment-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 210;
}

.payment-modal.is-open {
  display: flex;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.payment-modal-card {
  position: relative;
  width: min(480px, 92%);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 16px;
  padding: 24px;
  z-index: 1;
  text-align: center;
}

.payment-modal-card.success {
  border-color: rgba(34, 197, 94, 0.6);
}

.payment-modal-card.error {
  border-color: rgba(239, 68, 68, 0.6);
}

.payment-modal-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.payment-modal-details {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.7);
  color: #cbd5f5;
  font-size: 0.85rem;
}

.payment-modal-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.cafe-page {
  padding: 80px 0;
  background: #0b1120;
}

.cafe-header {
  text-align: center;
  margin-bottom: 32px;
}

.cafe-title {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: transparent;
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.cafe-subtitle {
  color: #94a3b8;
  margin-top: 12px;
  font-size: 1.05rem;
}

.cafe-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 980px) {
  .cafe-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
  }
}

.cafe-form h3 {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
  color: transparent;
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.cafe-form-inner {
  display: grid;
  gap: 18px;
}

.cafe-form label {
  color: #cbd5f5;
  font-weight: 600;
  margin-bottom: 8px;
}

.cafe-form input,
.cafe-form select {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 10px;
  color: #f8fafc;
  padding: 10px 12px;
}

.cafe-form-hint {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 6px;
}

.cafe-available-days {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #9ca3af;
}

.cafe-date-warning {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #f87171;
}

.cafe-duration-note {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #fbbf24;
}

.cafe-selected {
  min-height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.6);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.cafe-chip {
  background: #16a34a;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.cafe-pricing {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.6);
}

.cafe-price-line {
  display: flex;
  justify-content: space-between;
  color: #cbd5f5;
  font-size: 0.95rem;
}

.cafe-time-warning {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 8px 10px;
  border-radius: 10px;
}

.cafe-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  color: #e2e8f0;
}

.cafe-submit {
  padding: 14px 18px;
  font-weight: 700;
}

.cafe-layout h3 {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  color: transparent;
  background: linear-gradient(90deg, #34d399, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.cafe-layout-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

@media (min-width: 720px) {
  .cafe-layout-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cafe-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #cbd5f5;
}

.cafe-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cafe-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
}

.cafe-swatch.available {
  background: #a0522d;
  border-color: #8b4513;
}

.cafe-swatch.selected {
  background: #22c55e;
  border-color: #16a34a;
}

.cafe-swatch.booked {
  background: #6b7280;
  border-color: #4b5563;
  opacity: 0.7;
}

.cafe-swatch.table {
  background: #14532d;
  border-color: #1f5f1f;
  border-radius: 50%;
}

.cafe-stage-wrapper {
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 12px;
  overflow: auto;
  background: rgba(2, 6, 23, 0.6);
  max-height: 600px;
}

.cafe-stage {
  min-height: 400px;
  min-width: 100%;
}

.cafe-selected-summary {
  margin-bottom: 10px;
}

.cafe-layout-alert {
  margin-bottom: 10px;
}

.cafe-instructions {
  margin-top: 32px;
}

.cafe-instructions h3 {
  font-family: "Press Start 2P", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  color: transparent;
  background: linear-gradient(90deg, #ff4d9a, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 14px;
}

.cafe-instruction-grid {
  display: grid;
  gap: 12px;
  color: #cbd5f5;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .cafe-instruction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Retro datepicker (flatpickr) */
.flatpickr-calendar {
  background: #0b1020;
  border: 1px solid rgba(255, 105, 180, 0.55);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(56, 189, 248, 0.15);
  color: #e5e7eb;
  border-radius: 14px;
  font-family: 'Press Start 2P', 'Space Grotesk', sans-serif;
  font-size: 12px;
}

.flatpickr-months {
  min-height: 44px;
}

.flatpickr-months .flatpickr-month {
  height: 44px;
}

.flatpickr-current-month {
  padding: 10px 38px 0;
  height: 44px;
  line-height: 1.15;
  overflow: visible;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  line-height: 1.15;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  top: 6px;
}

.flatpickr-calendar::before,
.flatpickr-calendar::after {
  border-bottom-color: rgba(255, 105, 180, 0.55);
}

.flatpickr-months .flatpickr-month {
  color: #f4c5ff;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #fce7ff;
  font-weight: 600;
}

.flatpickr-weekday {
  color: #7dd3fc;
  font-weight: 600;
}

.flatpickr-day {
  color: #e5e7eb;
  border-radius: 8px;
  border: 1px solid transparent;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(255, 105, 180, 0.18);
  border-color: rgba(255, 105, 180, 0.4);
}

.flatpickr-day.today {
  border-color: rgba(126, 249, 255, 0.9);
  color: #7ef9ff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: #ff4fa3;
  border-color: #ff4fa3;
  color: #0b1020;
  box-shadow: 0 0 12px rgba(255, 79, 163, 0.55);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.notAllowed {
  color: #3a4463;
  background: transparent;
}

.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.notAllowed:hover {
  background: transparent;
  border-color: transparent;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: #7dd3fc;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: #7dd3fc;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #ff4fa3;
}

.menu-page {
  --menu-bg: #070711;
  --menu-panel: rgba(255, 255, 255, 0.06);
  --menu-border: rgba(255, 255, 255, 0.12);
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 4%, rgba(34, 211, 238, 0.16), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(236, 72, 153, 0.12), transparent 26rem),
    var(--menu-bg);
  color: #fff;
  padding-bottom: 72px;
  scroll-behavior: smooth;
  overflow-x: clip;
}

.menu-hero {
  padding: 42px 0 20px;
}

.menu-kicker {
  color: #67e8f9;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.menu-hero h1 {
  font-family: var(--menu-title-font);
  font-size: clamp(34px, 9vw, 74px);
  line-height: 1;
  margin: 0 0 12px;
}

.menu-hero p:not(.menu-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  margin: 0;
}

.menu-jump {
  position: sticky;
  top: 73px;
  z-index: 90;
  padding: 8px 10px;
  background: rgba(7, 7, 17, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.menu-jump__inner,
.menu-jump__sub {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-jump__inner::-webkit-scrollbar,
.menu-jump__sub::-webkit-scrollbar {
  display: none;
}

.menu-jump__main,
.menu-jump__sub a {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 9px 13px;
}

.menu-jump__main {
  cursor: pointer;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.84), rgba(34, 211, 238, 0.84));
  color: #020617;
  border: 0;
}

.menu-jump__sub {
  padding-top: 8px;
}

.menu-jump__sub:not([hidden]) {
  display: flex;
}

.menu-content {
  padding-top: 24px;
}

.menu-type {
  scroll-margin-top: 150px;
}

.menu-type h2 {
  font-family: var(--menu-title-font);
  font-size: 28px;
  margin: 28px 0 14px;
}

.menu-category {
  scroll-margin-top: 154px;
  margin-bottom: 26px;
}

.menu-category h3 {
  font-family: var(--menu-title-font);
  color: #facc15;
  font-size: 18px;
  margin: 0 0 10px;
}

.menu-list {
  display: grid;
  gap: 10px;
}

.menu-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  max-width: 100%;
  min-width: 0;
  padding: 10px;
  border-radius: 10px;
  background: var(--menu-panel);
  border: 1px solid var(--menu-border);
}

.menu-item__image {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  padding: 0;
  cursor: pointer;
}

.menu-item__image:disabled {
  cursor: default;
}

.menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.menu-item__body {
  min-width: 0;
}

.menu-item__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.menu-item h4 {
  font-family: var(--menu-title-font);
  font-size: 16px;
  line-height: 1.18;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.menu-item__price {
  font-family: var(--menu-price-font);
  color: #67e8f9;
  font-weight: 900;
  white-space: nowrap;
}

.menu-item p {
  font-family: var(--menu-details-font);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.35;
  margin: 5px 0 0;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .menu-hero {
    padding-top: 92px;
    padding-bottom: 18px;
  }

  .menu-jump {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 95;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
  }

  .menu-content {
    padding-top: 18px;
  }

  .menu-type,
  .menu-category {
    scroll-margin-top: 148px;
  }

  .menu-page:has(.menu-jump__sub:not([hidden])) .menu-hero {
    padding-top: 132px;
  }

  .menu-page:has(.menu-jump__sub:not([hidden])) .menu-type,
  .menu-page:has(.menu-jump__sub:not([hidden])) .menu-category {
    scroll-margin-top: 188px;
  }

  .menu-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    width: calc(100vw - 40px);
  }

  .menu-item__image {
    width: 72px;
    height: 72px;
  }

  .menu-item__body {
    max-width: 190px;
  }

  .menu-item__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
  }

  .menu-item h4 {
    font-size: 15px;
  }

  .menu-item__price {
    margin-top: 0;
  }

  .menu-item p {
    font-size: 12px;
    max-width: 190px;
  }
}

.menu-empty {
  padding: 34px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.84);
}

.menu-lightbox[hidden] {
  display: none;
}

.menu-lightbox img {
  max-width: min(92vw, 720px);
  max-height: 82vh;
  border-radius: 12px;
  object-fit: contain;
}

.menu-lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 760px) {
  .menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-item {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .menu-item__image {
    width: 104px;
    height: 104px;
  }
}
