/* Boomer's Gaming Cafe - Main Stylesheet */

:root {
  --ink: #100d0a;
  --paper: #f1eadf;
  --muted: #98908a;
  --line: rgba(255, 255, 255, 0.16);
  --lime: #efbd4e;
  --accent: #efbd4e;
  --violet: #b07758;
  --cyan: #e9a74b;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Manrope', sans-serif;
  --mono: 'DM Mono', monospace;
  --game-glow: rgba(239, 189, 78, 0.2); /* Dynamic variable updated by launcher */
}

/* Base resets & utilities */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  background: var(--ink);
  color: #f8f8f4;
  font-family: var(--body);
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  display: none;
}

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

button, input, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  outline: 0;
}

button {
  cursor: pointer;
}

.wrap {
  width: min(1240px, calc(100% - 48px));
  margin: auto;
}

/* Navigation
   Base/fallback rule — desktop-polish.css (>=801px) and mobile-audit.css
   (<=800px) both fully re-declare position/height/background per
   breakpoint with !important, so this is just a sane default. */
.nav {
  height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  box-sizing: border-box;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 800 22px var(--display);
  letter-spacing: -1.5px;
}

.brand-mark {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: #efbd4e;
  padding: 2px;
}

.brand i {
  color: var(--lime);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d3d4d0;
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  text-decoration: none !important;
  border-bottom: none !important;
}

.nav-links a::after {
  display: none !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #efbd4e !important;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(239, 189, 78, 0.5);
  text-decoration: none !important;
  border-bottom: none !important;
}

.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px !important;
  height: 30px !important;
  font: 700 10px var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #efbd4e;
  border: 1px solid rgba(239, 189, 78, 0.35);
  border-radius: 6px;
  background: rgba(239, 189, 78, 0.06);
  backdrop-filter: blur(4px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none !important;
}

.nav-auth-btn:hover {
  border-color: #efbd4e;
  color: #fff;
  background: rgba(239, 189, 78, 0.2);
  box-shadow: 0 0 14px rgba(239, 189, 78, 0.4);
  transform: translateY(-1px);
}

.nav-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-tickets-btn, .nav-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #e0e0e0;
  font: 700 10px var(--mono);
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-tickets-btn:hover, .nav-cart-btn:hover {
  border-color: #efbd4e;
  color: #efbd4e;
  background: rgba(239, 189, 78, 0.08);
}

.nav-cart-badge {
  background: #efbd4e;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 99px;
  line-height: 1;
}

.nav-book-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  background: #efbd4e !important;
  color: #000 !important;
  font: 700 10px var(--mono) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 5px 12px !important; /* Compact size */
  height: 30px !important;
  min-height: 30px !important;
  border-radius: 6px !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(239, 189, 78, 0.25) !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.nav-book-link:hover {
  background: #f5c64d !important;
  box-shadow: 0 0 14px rgba(239, 189, 78, 0.45) !important;
  transform: translateY(-1px) !important;
}

.nav-cta, .button, .cafe-add-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: var(--lime) !important;
  color: #181006 !important;
  font: 700 11px var(--mono) !important; /* Esports monospace look */
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 12px 24px !important;
  border-radius: 8px !important; /* Unified 8px sharp esports radius */
  border: 1px solid transparent !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  transition: all 200ms ease !important; /* Standardized 200ms ease */
  cursor: pointer !important;
  height: 42px !important;
  box-sizing: border-box !important;
}

.nav-cta:hover, .button:hover, .cafe-add-btn:hover {
  transform: translateY(-4px) !important;
  background: var(--lime) !important;
  box-shadow: 0 8px 24px rgba(167, 255, 0, 0.3) !important; /* Unified soft glow */
}

/* Secondary Button styling */
.button.secondary {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 60px;
  overflow: hidden;
}

.hero-media, .hero-light, .hero-noise {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media {
  background: url('../images/boomers_pc_lounge.jpg') center/cover;
  filter: saturate(0.65) contrast(1.08) sepia(0.15);
  transform: scale(1.03);
  animation: breathe 11s ease-in-out infinite alternate;
  transition: opacity 1s ease-in-out;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 13, 10, 0.85) 0%, rgba(16, 13, 10, 0.45) 47%, rgba(16, 13, 10, 0.08) 100%),
              linear-gradient(0deg, #100d0a 0%, transparent 45%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: -3;
  transition: opacity 1s ease-in-out;
}

.hero-video.ready {
  opacity: 0.45;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  width: 34vw;
  aspect-ratio: 1;
  right: 7%;
  top: 19%;
  border: 1px solid rgba(239, 189, 78, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(239, 189, 78, 0.08), inset 0 0 80px rgba(239, 189, 78, 0.05);
  animation: spin 25s linear infinite;
}

/* ============================================================
   HERO RING CARD — floats centered inside the golden orbit ring
   ============================================================ */

/* The card is positioned in the same absolute space as .hero-orbit.
   Ring: right:7%, top:19%, width:34vw, aspect-ratio:1 (so height=34vw).
   Ring center: right-from-left = (100% - 7% - 34vw/2) = 100% - 7% - 17vw
   We use left + transform to center the card on the ring's center point. */

.hero-ring-card {
  position: absolute;
  /* Align center of card with center of the ring */
  right: calc(7% + 17vw - 200px); /* ring-right + ring-radius - half-card-width */
  top: calc(19% + 17vw - 140px);  /* ring-top + ring-radius - half-card-height */
  width: 400px;
  background: linear-gradient(145deg, rgba(18,16,24,0.92), rgba(10,9,14,0.96));
  border: 1px solid rgba(239, 189, 78, 0.32);
  border-radius: 20px;
  padding: 28px 30px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 0 0 1px rgba(239,189,78,0.08),
    0 24px 64px rgba(0,0,0,0.65),
    0 0 80px rgba(239,189,78,0.06);
  z-index: 10;
  animation: ringCardFloat 4s ease-in-out infinite;
  transition: box-shadow 0.3s;
}

.hero-ring-card:hover {
  box-shadow:
    0 0 0 1px rgba(239,189,78,0.2),
    0 28px 72px rgba(0,0,0,0.7),
    0 0 120px rgba(239,189,78,0.1);
}

@keyframes ringCardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

.ring-card-live-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.ring-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 10px #ff4444;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #ff4444; }
  50%       { opacity: 0.55; box-shadow: 0 0 18px #ff6666; }
}

.ring-card-live-label {
  font: 700 10px var(--mono, 'DM Mono', monospace);
  color: #ff5555;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ring-card-title {
  font: 800 28px/0.9 var(--display, 'Space Grotesk', sans-serif);
  color: #fff;
  letter-spacing: -0.05em;
  margin-bottom: 5px;
}

.ring-card-sub {
  font: 500 12px var(--mono, 'DM Mono', monospace);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ring-card-divider {
  height: 1px;
  background: rgba(239,189,78,0.14);
  margin-bottom: 16px;
}

.ring-card-countdown-label {
  font: 700 9px var(--mono, 'DM Mono', monospace);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ring-card-countdown {
  font: 800 48px/1 var(--mono, 'DM Mono', monospace);
  color: #efbd4e;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  text-shadow: 0 0 32px rgba(239,189,78,0.4);
}

.ring-card-stats {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  font: 500 12px var(--mono, 'DM Mono', monospace);
  color: rgba(255,255,255,0.5);
}

.ring-card-stats strong {
  color: #fff;
  font-weight: 700;
}

.ring-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  background: rgba(239,189,78,0.1);
  border: 1px solid rgba(239,189,78,0.35);
  border-radius: 10px;
  color: #efbd4e;
  font: 800 11px var(--mono, 'DM Mono', monospace);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ring-card-btn:hover {
  background: rgba(239,189,78,0.2);
  border-color: rgba(239,189,78,0.6);
  box-shadow: 0 4px 20px rgba(239,189,78,0.2);
  color: #efbd4e;
}

/* Mobile tournament banner — hidden on desktop */
.hero-mobile-tournament-banner {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(18,16,24,0.85);
  border: 1px solid rgba(239,189,78,0.22);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  width: 100%;
}

.mobile-tourn-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.mobile-tourn-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 8px #ff4444;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.mobile-tourn-live {
  font: 700 9px var(--mono, monospace);
  color: #ff5555;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-tourn-name {
  font: 600 12px var(--display, sans-serif);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-tourn-watch {
  font: 800 10px var(--mono, monospace);
  color: #efbd4e;
  text-decoration: none;
  border: 1px solid rgba(239,189,78,0.3);
  padding: 6px 14px;
  border-radius: 7px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.mobile-tourn-watch:hover { background: rgba(239,189,78,0.1); }


.hero-orbit::before, .hero-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px var(--lime);
}

.hero-orbit::before {
  width: 8px;
  height: 8px;
  left: 16%;
  top: 8%;
}

.hero-orbit::after {
  width: 5px;
  height: 5px;
  right: 7%;
  bottom: 22%;
}

.hero-light {
  z-index: -2;
  background: radial-gradient(circle at 78% 32%, rgba(239, 189, 78, 0.28), transparent 20%),
              radial-gradient(circle at 61% 62%, rgba(176, 119, 88, 0.2), transparent 24%);
  mix-blend-mode: screen;
}

.hero-noise {
  z-index: 2;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero-main {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font: 700 clamp(4rem, 10.2vw, 10rem)/0.78 var(--display);
  letter-spacing: -0.095em;
  margin: 15px 0 20px;
  text-transform: uppercase;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.hero-lead {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.85;
  color: #e4d9cb;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  margin-bottom: 25px;
}

.hero-secondary-ctas {
  display: flex;
  gap: 10px;
  width: 100%;
}

.hero-secondary-ctas .button {
  flex: 1;
}

/* Trust strip — individual glass pills */
.trust-strip-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  border: none;
  background: transparent;
  padding: 0;
  white-space: nowrap;
}

.trust-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--muted);
  font: 500 11px var(--mono);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.15);
  color: #fff;
}

.trust-item strong {
  color: #fff;
  font-weight: 700;
}

.trust-icon {
  margin-right: 0;
}

/* Colorful glowing shadows for icons */
.trust-item:nth-child(1) .trust-icon { filter: drop-shadow(0 0 5px rgba(255, 183, 3, 0.8)); }
.trust-item:nth-child(3) .trust-icon { filter: drop-shadow(0 0 5px rgba(0, 183, 255, 0.8)); }
.trust-item:nth-child(5) .trust-icon { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8)); }
.trust-item:nth-child(7) .trust-icon { filter: drop-shadow(0 0 5px rgba(0, 255, 120, 0.8)); }

.trust-sep {
  display: none;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 30px;
  align-items: end;
  width: 100%;
  margin-top: 48px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  font: 500 10px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b8aaa0;
}

.hero-meta strong {
  display: block;
  color: #fff;
  font: 600 18px var(--display);
  letter-spacing: -0.06em;
  margin-top: 3px;
}

/* Floating Booking Card */
.booking-float {
  background: rgba(24, 18, 13, 0.78);
  border: 1px solid rgba(239, 189, 78, 0.42);
  backdrop-filter: blur(20px);
  padding: 17px 17px 15px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 600 12px var(--display);
}

.live {
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
  color: var(--lime);
}

.live::before {
  content: '';
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: pulse 1.5s infinite;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0;
}

.select {
  background: rgba(255, 255, 255, 0.07);
  padding: 11px;
  font: 500 10px var(--mono);
  color: #eadfd3;
  border: 1px solid transparent;
  transition: border-color 0.2s;
  cursor: pointer;
  width: 100% !important;
  text-align: left !important;
}

.select:hover {
  border-color: rgba(239, 189, 78, 0.3);
}

.select b {
  display: block;
  color: #fff;
  font: 600 12px var(--body);
  margin-top: 2px;
}

.booking-float .button {
  width: 100%;
  padding: 11px;
}

/* Ticker Section */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  color: #cbcec5;
  background: #101215;
}

.ticker-inner {
  display: inline-flex;
  gap: 48px;
  font: 700 13px var(--display);
  letter-spacing: -0.02em;
  animation: ticker 28s linear infinite;
}

.ticker span::before {
  content: '✦';
  color: var(--lime);
  margin-right: 48px;
}

/* Base Sections styling */
.section {
  padding: 128px 0;
}

.section-kicker {
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #797d83;
  margin-bottom: 18px;
}

.display {
  font: 700 clamp(2.7rem, 5.5vw, 5.7rem)/0.92 var(--display);
  letter-spacing: -0.08em;
  text-transform: uppercase;
  margin: 0;
}

.display span {
  color: var(--violet);
}

.section-intro {
  max-width: 470px;
  color: #aeb1b4;
  line-height: 1.75;
  font-size: 15px;
  margin: 24px 0 0;
}

/* Story Section */
.story {
  background: var(--paper);
  color: #1b1510;
  padding: 0;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 690px;
}

.story-copy {
  padding: clamp(56px, 10vw, 160px) max(24px, calc((100vw - 1240px)/2));
  padding-right: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-copy .display {
  font-size: clamp(3.1rem, 6.5vw, 7rem);
}

.story-copy .display span {
  color: #875239;
}

.story-copy p {
  color: #685d55;
  max-width: 390px;
  line-height: 1.75;
  margin-top: 18px;
}

.story-numbers {
  display: flex;
  gap: 35px;
  margin-top: 32px;
}

.story-numbers b {
  font: 700 32px var(--display);
  letter-spacing: -0.08em;
  display: block;
}

.story-numbers small {
  font: 500 9px var(--mono);
  color: #766b62;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.story-image {
  position: relative;
  min-height: 460px;
  background: url('../images/boomers_pc_lounge.jpg') center/cover;
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(241, 234, 223, 0.18), transparent 45%);
}

.photo-tag {
  position: absolute;
  right: 24px;
  bottom: 23px;
  z-index: 1;
  background: #2a1b10;
  color: #f5eadb;
  padding: 12px 14px;
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Game Launcher */
.launcher {
  position: relative;
  background: #101115;
  transition: background 0.6s ease;
}

.launcher::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 35%, var(--game-glow), transparent 40%);
  transition: background 0.6s ease;
}

.launcher-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  position: relative;
}

.game-tabs {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.game-tab {
  min-height: 265px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s, filter 0.35s, box-shadow 0.35s;
}

.game-tab:first-child {
  border-left: 1px solid var(--line);
}

.game-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #111217 3%, rgba(17, 18, 23, 0.18) 75%);
  z-index: -1;
}

.game-tab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--game);
  opacity: 0.12;
  mix-blend-mode: screen;
  z-index: -1;
}

.game-tab:hover, .game-tab.active {
  transform: translateY(-12px);
  filter: brightness(1.2);
}

.game-tab.active {
  box-shadow: 0 0 0 1px var(--game), 0 18px 55px color-mix(in srgb, var(--game) 20%, transparent);
}

.game-tab small {
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
  color: #b2b5b4;
}

.game-tab b {
  display: block;
  font: 700 28px var(--display);
  letter-spacing: -0.07em;
  margin-top: 8px;
}

.game-tab i {
  position: absolute;
  bottom: 19px;
  right: 20px;
  font: 400 28px var(--display);
  font-style: normal;
  color: var(--game);
  transition: transform 0.3s;
}

.game-tab:hover i {
  transform: scale(1.1) translate(2px, -2px);
}

.game-panel {
  position: relative;
  margin-top: 1px;
  min-height: 330px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  overflow: hidden;
  background: #15171c;
  border: 1px solid var(--line);
}

.game-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #15171c 10%, transparent), var(--panel-image) center/cover;
  opacity: 0.52;
  transition: background 0.5s ease;
}

.game-panel::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: 8%;
  top: 20%;
  background: var(--game-glow);
  filter: blur(38px);
  transition: background 0.5s ease;
}

.game-panel > * {
  position: relative;
  z-index: 2;
}

.game-title {
  font: 700 clamp(2.5rem, 5vw, 4.5rem)/0.9 var(--display);
  letter-spacing: -0.08em;
  margin: 10px 0;
}

.game-detail {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.game-detail div {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 12px;
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
  color: #b4b6b4;
  text-transform: uppercase;
}

.game-detail b {
  display: block;
  color: #fff;
  font: 600 20px var(--display);
  letter-spacing: -0.06em;
  margin-top: 5px;
  text-transform: none;
}

.game-panel .button {
  align-self: end;
  justify-self: end;
}

/* Arena floorplan & seat booking */
.arena {
  background: #07080a;
  position: relative;
  overflow: hidden;
}

.arena::before {
  content: '';
  position: absolute;
  inset: 12% -20%;
  background: radial-gradient(ellipse, rgba(115, 233, 255, 0.11), transparent 58%);
  pointer-events: none;
}

.arena-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.pulse-line {
  height: 1px;
  background: var(--line);
  margin: 50px 0 0;
  position: relative;
}

.pulse-line::after {
  content: '';
  position: absolute;
  width: 13%;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  animation: scan 4s ease-in-out infinite;
}

.floor {
  margin-top: 0;
  position: relative;
  padding: 42px 0 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.floor-plan {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0/22px 22px,
              linear-gradient(45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0/22px 22px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.floor-plan::before {
  content: 'ARENA FLOOR / INTERACTIVE MAP';
  position: absolute;
  top: 16px;
  left: 17px;
  font: 500 9px var(--mono);
  letter-spacing: 0.12em;
  color: #757b80;
}

.zone {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
  color: #9da1a0;
  border-radius: 2px;
}

.zone::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--state);
  box-shadow: 0 0 9px var(--state);
}

.zone.pc { --state: var(--lime); }
.zone.ps { --state: #ffbb54; }
.zone.vip { --state: var(--violet); }

.z1 { left: 12%; top: 22%; width: 25%; height: 33%; }
.z2 { left: 47%; top: 17%; width: 38%; height: 26%; }
.z3 { left: 44%; top: 56%; width: 31%; height: 25%; }
.z4 { left: 12%; top: 65%; width: 18%; height: 18%; }

.station-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid #0d0f12;
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 0 14px var(--dot);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s, border-color 0.2s;
  z-index: 5;
}

.station-dot:hover,
.station-dot.selected {
  transform: translate(-50%, -50%) scale(1.35);
  border-color: #fff;
  box-shadow: 0 0 20px var(--dot);
}

.station-dot.busy {
  cursor: not-allowed;
  opacity: 0.35;
  box-shadow: none !important;
}

.arena-status {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.status-row:first-child {
  border-top: 1px solid var(--line);
}

.status-name b {
  display: block;
  font: 600 17px var(--display);
  letter-spacing: -0.05em;
}

.status-name small, .status-right small {
  font: 500 9px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7e8385;
}

.status-right {
  text-align: right;
}

.status-right b {
  font: 600 18px var(--display);
  letter-spacing: -0.06em;
  color: var(--lime);
}

/* Live Availability Dashboard Widget */
.live-availability {
  position: relative;
  background: rgba(10, 10, 12, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  overflow: hidden;
  margin-top: 20px;
}

/* Subtle tech grid background pattern */
.live-availability::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

.live-avail-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 20px;
  font: 700 13px var(--mono) !important;
  color: #fff !important;
}

.live-avail-title span {
  color: var(--lime) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-avail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.live-card {
  position: relative;
  background: rgba(18, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px; /* Better spacing inside cards */
  cursor: pointer;
  overflow: hidden;
  transition: all 250ms ease !important; /* Standardized transition */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px; /* Better height on mobile/desktop */
  box-sizing: border-box;
}

.live-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Category borders & glows - reduced intensity for a softer glow */
.pc-arena-card:hover {
  border-color: rgba(0, 200, 255, 0.5) !important;
  box-shadow: 0 8px 24px rgba(0, 200, 255, 0.1) !important;
}
.pc-arena-card:hover .live-card-glow {
  opacity: 1;
  box-shadow: inset 0 0 20px rgba(0, 200, 255, 0.05);
}

.ps5-lounge-card:hover {
  border-color: rgba(173, 140, 255, 0.5) !important;
  box-shadow: 0 8px 24px rgba(173, 140, 255, 0.1) !important;
}
.ps5-lounge-card:hover .live-card-glow {
  opacity: 1;
  box-shadow: inset 0 0 20px rgba(173, 140, 255, 0.05);
}

.sim-racing-card:hover {
  border-color: rgba(239, 189, 78, 0.5) !important;
  box-shadow: 0 8px 24px rgba(239, 189, 78, 0.1) !important;
}
.sim-racing-card:hover .live-card-glow {
  opacity: 1;
  box-shadow: inset 0 0 20px rgba(239, 189, 78, 0.05);
}

.vr-lounge-card:hover {
  border-color: rgba(255, 79, 112, 0.5) !important;
  box-shadow: 0 8px 24px rgba(255, 79, 112, 0.1) !important;
}
.vr-lounge-card:hover .live-card-glow {
  opacity: 1;
  box-shadow: inset 0 0 20px rgba(255, 79, 112, 0.05);
}

.live-card:hover {
  transform: translateY(-8px) !important; /* Unified translateY(-8px) */
  background: rgba(22, 22, 28, 0.85);
}

.live-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.live-card-category {
  font: 700 11px var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  animation: status-pulse 2s infinite ease-in-out;
}
.pulse-dot.cyan { background: #00c8ff; box-shadow: 0 0 8px #00c8ff; }
.pulse-dot.purple { background: #ad8cff; box-shadow: 0 0 8px #ad8cff; }
.pulse-dot.gold { background: #efbd4e; box-shadow: 0 0 8px #efbd4e; }
.pulse-dot.red { background: #ff4f70; box-shadow: 0 0 8px #ff4f70; }

@keyframes status-pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.chevron {
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, color 0.2s ease;
}
.live-card:hover .chevron {
  color: #fff;
  transform: translateX(2px);
}

.live-card-hero {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}

.hero-num {
  font: 800 36px var(--mono);
  line-height: 1;
}
.cyan-text { color: #00c8ff; }
.purple-text { color: #ad8cff; }
.gold-text { color: #efbd4e; }
.red-text { color: #ff4f70; }

.hero-lbl {
  font: 700 8px var(--mono);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.live-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 8px;
  font-size: 10px;
  font-family: var(--mono);
}

.footer-stat {
  font-weight: 700;
  color: #fff;
}

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

.live-card.dimmed {
  opacity: 0.65;
}
.live-card.dimmed:hover {
  opacity: 1;
}

/* Booking Steps Section */
.book {
  background: linear-gradient(180deg, #101115 0%, #14151a 80px, var(--paper) 220px) !important;
  color: #121317;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.book .display span {
  color: #5d40b6;
}

.steps {
  margin-top: 38px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 18px 0;
  border-top: 1px solid #c7c8c5;
  display: flex;
  gap: 19px;
  align-items: center;
  transition: border-color 0.2s;
}

.step::before {
  content: '0' counter(step);
  font: 500 10px var(--mono);
  color: #777;
}

.step b {
  font: 600 17px var(--display);
  letter-spacing: -0.05em;
}

.step p {
  margin: 0 0 0 auto;
  color: #777;
  font-size: 12px;
}

/* Booking section image overlay info */
.booking-image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  z-index: 2;
}
.booking-image-overlay h4 {
  font: 700 14px var(--display);
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.booking-image-overlay .overlay-stats {
  display: flex;
  gap: 16px;
  font: 500 9px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
}
.booking-image-overlay .overlay-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.booking-image-overlay .overlay-status {
  margin-top: 8px;
  font: 700 9px var(--mono);
  color: #00db78;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Booking Card Wizard styling */
.booking-card {
  background: #141519;
  color: #fff;
  padding: 28px;
  box-shadow: 18px 18px 0 #d8ff45;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.booking-card h3 {
  font: 600 21px var(--display);
  letter-spacing: -0.06em;
  margin: 0 0 24px;
}

.booking-step-panel {
  display: none;
  flex-direction: column;
  flex-grow: 1;
}

.booking-step-panel.active {
  display: flex;
}

.booking-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.booking-choice-btn {
  background: #22242a;
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  font: 600 14px var(--display);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s, background 0.2s;
}

.booking-choice-btn:hover,
.booking-choice-btn.selected {
  border-color: var(--lime);
  background: rgba(239, 189, 78, 0.08);
}

.booking-choice-btn b {
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
}

.booking-nav-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.booking-nav-row .button {
  flex: 1;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 11px 0 25px;
}

.slot {
  background: #22242a;
  border: 1px solid transparent;
  padding: 10px 3px;
  text-align: center;
  font: 500 10px var(--mono);
  color: #c6c8c5;
}

.slot.active {
  background: var(--lime);
  color: #0c0e09;
}

.slot.busy {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* Booking Success Ticket (Phase 4) */
.confirmation-card {
  border: 1px dashed rgba(239, 189, 78, 0.5);
  background: rgba(0, 0, 0, 0.25);
  padding: 24px;
  text-align: center;
  margin-top: 10px;
}

.ticket-header {
  font: 700 11px var(--mono);
  letter-spacing: 0.15em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ticket-title {
  font: 700 24px var(--display);
  letter-spacing: -0.06em;
  margin: 0 0 16px;
}

.ticket-details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}

.ticket-field {
  font: 500 10px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
}

.ticket-field b {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  color: #fff;
  margin-top: 3px;
  text-transform: none;
}

.ticket-qr {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ticket-actions {
  display: flex;
  gap: 8px;
}

.ticket-actions .button {
  flex: 1;
  padding: 10px;
  font-size: 10px;
}

/* Station Details booking selector widget */
.station-booker {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.station {
  padding: 13px;
  background: #14151a;
  border: 1px solid var(--line);
  text-align: left;
  transition: 0.2s;
}

.station:hover, .station.active {
  border-color: var(--lime);
  background: rgba(239, 189, 78, 0.09);
}

.station b {
  font: 600 13px var(--display);
  letter-spacing: -0.04em;
  display: block;
}

.station small {
  font: 500 8px var(--mono);
  letter-spacing: 0.07em;
  color: #9b9d9c;
}

.station em {
  display: block;
  font: 500 8px var(--mono);
  color: #6be990;
  font-style: normal;
  margin-top: 8px;
}

.station .reserve {
  color: var(--lime);
}

/* Gaming Calculator Widget */
.calc-widget {
  background: #15171c;
  border: 1px solid var(--line);
  padding: 24px;
  margin-top: 30px;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.calc-field label {
  display: block;
  font: 500 9px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.calc-field select,
.calc-field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  padding: 10px;
  font-size: 13px;
  color: #fff;
  border-radius: 2px;
}

.calc-summary {
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}

.calc-row b {
  color: #fff;
}

.calc-row.total {
  font: 700 18px var(--display);
  letter-spacing: -0.05em;
  color: var(--lime);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-bottom: 0;
}

.calc-row.total b {
  color: var(--lime);
}

/* Power-Up Station Cafe Launcher */
.cafe {
  background: #26170f;
  position: relative;
  overflow: hidden;
}

.cafe::after {
  content: 'EAT · PLAY · REPEAT';
  position: absolute;
  right: -1vw;
  top: 2vw;
  font: 700 clamp(3rem, 10vw, 11rem)/0.8 var(--display);
  letter-spacing: -0.1em;
  color: rgba(239, 189, 78, 0.055);
  white-space: nowrap;
  pointer-events: none;
}

.cafe-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.cafe-photo {
  height: 560px;
  background: linear-gradient(0deg, rgba(38, 23, 15, 0.25), rgba(38, 23, 15, 0.05)),
              url('../images/cafe-background.jpg') center/cover;
  position: relative;
}

.cafe-photo::after {
  content: 'THE POWER-UP STATION';
  position: absolute;
  left: 20px;
  bottom: 18px;
  font: 700 11px var(--mono);
  letter-spacing: 0.14em;
  color: #f4e9d9;
}

.cafe-copy .display {
  color: #f6ecdf;
}

.cafe-copy .display span {
  color: var(--lime);
}

.cafe-copy .section-intro {
  color: #c9b9aa;
}

.cafe-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  margin-top: 30px;
}

.cafe-tabs::-webkit-scrollbar {
  display: none;
}



.cafe-items-list {
  margin-top: 15px;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 24px !important;
}

.cafe-item-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cafe-item-details {
  flex: 1;
}

.cafe-item-name {
  font: 600 16px var(--display);
  letter-spacing: -0.04em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cafe-item-badge {
  font: 600 8px var(--mono);
  background: var(--lime);
  color: #000;
  padding: 2px 6px;
  border-radius: 99px;
  text-transform: uppercase;
}

.cafe-item-desc {
  font: 500 11px var(--body);
  color: #a69383;
  margin-top: 4px;
}

.cafe-item-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.cafe-item-price {
  font: 600 16px var(--display);
  color: var(--lime);
}

.cafe-add-btn {
  font: 700 9px var(--mono);
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--lime);
  padding: 4px 8px;
  border-radius: 2px;
  transition: 0.2s;
}

.cafe-add-btn:hover {
  background: var(--lime);
  color: #000;
}

.cafe-note {
  font: 500 9px/1.6 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #a69383;
  margin: 21px 0;
}

/* Happy Hours Deals */
.happy {
  background: linear-gradient(135deg, #150d20, #130e16 55%, #211129);
  padding: 100px 0;
}

.happy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.happy .display {
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  color: #fff;
}

.happy .display span {
  color: #d25cff;
}

.deal-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #65347b;
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.deal-copy {
  padding: 42px;
}

.deal-copy p {
  color: #c8bbc9;
  line-height: 1.75;
}

.deal-list {
  padding: 0;
  margin: 25px 0;
  list-style: none;
}

.deal-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.deal-list li::before {
  content: '' !important;
  margin-right: 0 !important;
}

.deal-image {
  min-height: 355px;
  background: linear-gradient(0deg, rgba(17, 7, 25, 0.52), transparent),
              url('../images/happy-hour-interior.jpg') center/cover;
}

/* Game Library Section */
.game-library {
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.94) 0%, rgba(8, 9, 12, 0.8) 50%, rgba(8, 9, 12, 0.94) 100%),
              url('../images/pc_ps5_cover.jpg') center/cover no-repeat;
}

.library-head {
  text-align: center;
}

.library-head .section-intro {
  margin-inline: auto;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 46px;
}

.library-game {
  height: 330px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
  transition: transform 0.28s;
}

.library-game::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.96), transparent 60%);
  z-index: -1;
}

.library-game:hover {
  transform: translateY(-10px);
}

.library-game b {
  position: absolute;
  bottom: 17px;
  left: 16px;
  font: 700 18px var(--display);
  letter-spacing: -0.06em;
}

.library-game small {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #00d875;
  color: #06120b;
  padding: 5px 7px;
  border-radius: 99px;
  font: 700 8px var(--mono);
  letter-spacing: 0.08em;
}

/* Gaming Modes (Racing/VR) */
.modes {
  background: #050606;
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mode {
  padding: 34px;
  border: 1px solid var(--line);
  min-height: 505px;
  position: relative;
  overflow: hidden;
}

.mode::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mode-bg) center/cover;
  opacity: 0.42;
  z-index: 0;
}

.mode::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #090909 10%, transparent 85%);
  z-index: 0;
}

.mode > * {
  position: relative;
  z-index: 1;
}

.mode h3 {
  font: 700 clamp(2.6rem, 4vw, 4.7rem)/0.86 var(--display);
  letter-spacing: -0.09em;
  margin: 30px 0 16px;
}

.mode h3 span {
  color: var(--mode-color);
}

.mode p {
  max-width: 430px;
  color: #dedbd6;
  line-height: 1.7;
}

.mode-tag {
  font: 700 9px var(--mono);
  letter-spacing: 0.1em;
  color: var(--mode-color);
  text-transform: uppercase;
}

.mode-foot {
  position: absolute !important;
  inset: auto 34px 31px;
  display: flex;
  justify-content: space-between;
  font: 600 11px var(--body);
  color: #fff;
}

/* Branch comparison matrix table */
.branch-specs {
  background: #141218;
}

.spec-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 65px;
  align-items: start;
}

.branch-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}

.branch-button {
  padding: 18px;
  border: 1px solid var(--line);
  background: transparent;
  text-align: left;
  transition: 0.25s;
}

.branch-button:hover, .branch-button.active {
  border-color: var(--lime);
  background: rgba(239, 189, 78, 0.07);
}

.branch-button b {
  display: block;
  font: 700 26px var(--display);
  letter-spacing: -0.07em;
}

.branch-button small {
  font: 500 10px var(--mono);
  color: #a6a09a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}

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

.comparison-table th {
  font: 700 12px var(--mono);
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.02);
}

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

.comparison-table td b {
  color: #fff;
  font-family: var(--display);
}

.check-icon { color: #00db78; }
.cross-icon { color: #ff4f70; }

/* Achievement Badges Section (Community metrics) */
.achievement-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.badge-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  text-align: center;
}

.badge-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.badge-title {
  font: 700 18px var(--display);
  letter-spacing: -0.05em;
  margin-bottom: 6px;
  color: #fff;
}

.badge-desc {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
  text-transform: uppercase;
}

/* Event / Community Schedule Section */
.moment {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 70px 0;
  background: url('../images/boomers_pc_lounge.jpg') center/cover fixed;
}

.moment::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 5, 7, 0.9), rgba(4, 5, 7, 0.12)),
              linear-gradient(0deg, rgba(4, 5, 7, 0.9), transparent);
}

.moment .wrap {
  position: relative;
}

.moment .display {
  max-width: 750px;
}

.moment .section-intro {
  color: #d4d5d3;
}

.moment-fact {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 250px;
  border-left: 1px solid var(--lime);
  padding: 12px 0 12px 16px;
  font: 500 10px/1.7 var(--mono);
  color: #c9ccc6;
}

/* Calendar Section */
.calendar {
  background: #0c1012;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 44px;
}

.calendar-event {
  padding: 21px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.calendar-event time {
  font: 700 44px/0.8 var(--display);
  letter-spacing: -0.1em;
  color: var(--lime);
}

.calendar-event b {
  font: 700 20px var(--display);
  letter-spacing: -0.06em;
  margin-top: 16px;
}

.calendar-event small {
  font: 500 9px var(--mono);
  letter-spacing: 0.08em;
  color: #94999a;
  margin-top: 8px;
  text-transform: uppercase;
}

.calendar-event a {
  margin-top: auto;
  color: var(--lime);
  font: 700 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Schedule timeline timeline UI */
.schedule-timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.timeline-time {
  width: 120px;
  font: 700 14px var(--mono);
  color: var(--lime);
}

.timeline-event {
  flex: 1;
}

.timeline-event b {
  font: 700 18px var(--display);
  letter-spacing: -0.04em;
  color: #fff;
}

.timeline-event p {
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0 0;
}

/* Gallery Section & Lightbox Overlay (Phase 3) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.gallery-item {
  height: 220px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '🔎 VIEW VENUE';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 10px var(--mono);
  letter-spacing: 0.1em;
  color: var(--lime);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 12, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85vw;
  max-height: 80vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--line);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font: 700 24px var(--display);
  color: #fff;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  user-select: none;
}

.lightbox-nav:hover {
  background: rgba(239, 189, 78, 0.3);
  color: var(--lime);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* Testimonials / Social Proof */
.proof {
  background: #f1eadf;
  color: #17120e;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.rating {
  font: 700 clamp(4rem, 9vw, 8rem)/0.8 var(--display);
  letter-spacing: -0.1em;
}

.stars {
  color: #c27226;
  letter-spacing: 0.1em;
  font-size: 20px;
  margin: 20px 0 5px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #c9bfb2;
}

.metric {
  background: #f1eadf;
  padding: 29px;
}

.metric b {
  font: 700 44px/1 var(--display);
  letter-spacing: -0.09em;
  display: block;
}

.metric small {
  font: 500 9px var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #786d64;
}

/* Reviews slider */
.reviews-slider-wrap {
  margin-top: 42px;
  border-top: 1px solid #c9bfb2;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  padding: 24px 0;
  font-size: 15px;
  line-height: 1.55;
  color: #625950;
}

.review-slide b {
  color: #17120e;
  display: block;
  margin-top: 10px;
}

.reviews-nav {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.review-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9bfb2;
  cursor: pointer;
}

.review-dot.active {
  background: #c27226;
  transform: scale(1.3);
}

/* Membership PRO */
.membership {
  background: radial-gradient(circle at 70% 30%, rgba(139, 76, 251, 0.25), transparent 29%), #100d15;
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 65px;
  align-items: center;
}

.member-card {
  background: linear-gradient(135deg, #2b1740, #140c1e 72%);
  border: 1px solid #9462c4;
  padding: 34px;
  box-shadow: 18px 18px 0 rgba(239, 189, 78, 0.85);
}

.member-card h3 {
  font: 700 19px var(--mono);
  letter-spacing: 0.12em;
  margin: 0;
  color: #d08aff;
}

.member-price {
  font: 700 67px/0.9 var(--display);
  letter-spacing: -0.1em;
  margin: 20px 0;
}

.member-price small {
  font: 500 12px var(--body);
  color: #b9aebe;
  letter-spacing: 0;
}

.member-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.member-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.member-list li::before {
  content: '✓';
  color: #efbd4e;
  margin-right: 11px;
}

/* Events Cards */
.event-card {
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--event-bg) center/cover;
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 9, 12, 0.98), rgba(9, 9, 12, 0.08));
}

.event-card > * {
  position: relative;
}

.event-card h3 {
  font: 700 39px var(--display);
  letter-spacing: -0.07em;
  margin: 10px 0;
}

.event-card p {
  max-width: 410px;
  line-height: 1.65;
  color: #d2d1d0;
  font-size: 14px;
}

.event-card .button {
  align-start: flex-start;
  margin-top: 11px;
}

/* Footer Section */
.footer {
  padding: 48px 0 28px;
  background: #101115;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  padding-bottom: 70px;
}

.footer .display {
  font-size: clamp(3.4rem, 7vw, 7.5rem);
}

.footer .display span {
  color: var(--lime);
}

.footer-quick {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr 0.75fr;
  gap: 26px;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.footer-quick h4 {
  font: 700 12px var(--mono);
  letter-spacing: 0.1em;
  color: var(--lime);
  text-transform: uppercase;
  margin: 0 0 15px;
}

.footer-quick p, .footer-quick a {
  display: block;
  color: #bfb8b1;
  font-size: 13px;
  line-height: 1.8;
}

.newsletter {
  display: flex;
  margin-top: 13px;
  border: 1px solid var(--line);
}

.newsletter input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 11px;
  font: 12px var(--body);
}

.newsletter button {
  background: var(--lime);
  color: #171008;
  font: 700 9px var(--mono);
  padding: 0 13px;
  letter-spacing: 0.08em;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font: 500 9px var(--mono);
  letter-spacing: 0.08em;
  color: #898d8b;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 18px;
  color: #ddd;
}

/* Floating Desktop Sticky Booking bar */
#desktop-sticky-book {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(16, 13, 10, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
  z-index: 990;
  height: 60px;
  display: flex;
  align-items: center;
  transform: translate3d(0, -80px, 0);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#desktop-sticky-book.active {
  transform: translate3d(0, 0, 0);
}

#desktop-sticky-book .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-book-info {
  display: flex;
  gap: 24px;
  font: 500 11px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
}

.sticky-book-info span b {
  color: #fff;
  font-family: var(--display);
  font-size: 13px;
  margin-left: 6px;
}

#desktop-sticky-book .button {
  padding: 8px 16px;
  font-size: 10px;
}

/* Floating Audio Toggle */
.audio-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: rgba(16, 17, 21, 0.85);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 4px;
  font: 600 10px var(--mono);
  color: var(--lime);
  display: none; /* Initialized by JS */
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.audio-toggle:hover {
  background: rgba(239, 189, 78, 0.08);
  border-color: var(--lime);
}

/* Utilities for visibility */
.hidden {
  display: none !important;
}

/* Accessibility Focus Indicator */
*:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

/* Section Spacing Upgrades (110px - 140px range) */
.section {
  padding: 130px 0;
}

/* Rounded corners and glass cards (18px radius) */
.booking-card,
.badge-card,
.member-card,
.mode,
.calc-widget,
.live-availability {
  border-radius: 18px !important;
}

.glass-card {
  background: rgba(20, 21, 25, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

/* Apply Glassmorphism specifically to booking, bundles and membership cards */
.booking-card {
  background: rgba(20, 21, 25, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 12px 12px 0 var(--lime) !important;
}

.badge-card {
  background: rgba(20, 21, 25, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) !important;
  transition: transform 0.25s, border-color 0.25s;
}

.badge-card:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
}

.member-card {
  background: linear-gradient(135deg, rgba(43, 23, 64, 0.6), rgba(20, 12, 30, 0.6)) !important;
  border: 1px solid rgba(148, 98, 196, 0.4) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 12px 12px 0 rgba(239, 189, 78, 0.85) !important;
}

/* Interactive Map Tooltip */
.map-tooltip {
  position: absolute;
  background: rgba(16, 17, 21, 0.95);
  border: 1px solid var(--lime);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 11px;
  color: #fff;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -100%);
  margin-top: -15px;
  display: none;
  white-space: nowrap;
  font-family: var(--mono);
}

.map-tooltip b {
  font-family: var(--display);
  font-size: 13px;
  display: block;
  color: var(--lime);
  margin-bottom: 2px;
}

.map-tooltip span {
  display: block;
  margin-top: 4px;
  color: #00db78;
}

/* Floating Availability Widget (Top-Right on scroll) */
.floating-avail-widget {
  position: fixed;
  top: 100px;
  right: 24px;
  width: 140px;
  background: rgba(16, 17, 21, 0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 800;
  opacity: 0;
  transform: translate3d(50px, 0, 0);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.floating-avail-widget.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: all;
}

.floating-avail-title {
  font: 700 9px var(--mono);
  color: var(--lime);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}

.floating-avail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  margin-bottom: 6px;
  font-family: var(--mono);
}

.floating-avail-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.floating-avail-btn {
  width: 100%;
  padding: 6px;
  background: var(--lime);
  color: #000;
  font: 800 8px var(--mono);
  text-align: center;
  border-radius: 4px;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* Custom indicator dot pulsing */
.pulse-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.pulse-indicator.green { background: #00db78; box-shadow: 0 0 8px #00db78; }
.pulse-indicator.yellow { background: #ffbb54; box-shadow: 0 0 8px #ffbb54; }
.pulse-indicator.red { background: #ff4f70; }

/* Rich Simulator Card Styling */
.mode-details-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.mode-detail-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 8px;
  font-size: 10px;
}

.mode-detail-item b {
  display: block;
  font: 700 12px var(--display);
  color: #fff;
  margin-top: 2px;
}

.mode-specs-list {
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 12px 0;
  margin: 16px 0;
  font-size: 12px;
}

.mode-spec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

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

.mode-spec-row b {
  color: #fff;
}

.mode-steps-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 12px;
  border-radius: 6px;
  font: 500 9px var(--mono);
  color: var(--muted);
  margin-bottom: 16px;
}

.mode-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: auto;
}

.mode-status-info {
  font: 500 9px var(--mono);
}

.mode-status-info div {
  display: flex;
  align-items: center;
  gap: 4px;
}


/* ==========================================================================
   Power-Up Station Menu Upgrades & Sticky Cart (v7)
   ========================================================================== */

/* Navbar Active Underline style overrides */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--lime);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Live Ticker Activity Strip */
.activity-ticker-wrap {
  width: 100%;
  background: #000;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.activity-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-animation 30s linear infinite;
  gap: 60px;
}

@keyframes ticker-animation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 11px var(--mono);
  text-transform: uppercase;
  color: #fff;
}
.ticker-item .live-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse-glow 1.5s infinite;
}

/* RGB Glowing Card Borders & Zoom */
.food-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 21, 25, 0.65);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.food-product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(255, 183, 3, 0.15);
}

.food-image-container {
  height: 200px !important;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.food-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover !important;
  transition: transform 300ms ease !important;
}

.food-product-card:hover .food-image-bg {
  transform: scale(1.04) !important;
}

.food-pop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font: 700 8px var(--mono);
  background: var(--lime);
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.05em;
}

.food-prep-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font: 700 8px var(--mono);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

.food-card-details {
  padding: 20px 20px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.food-card-title {
  font: 700 15px var(--display) !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.25 !important;
  height: 2.5em !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  text-overflow: ellipsis !important;
}

.food-card-price {
  color: #F5C54B !important; /* Boomer's gold */
  font: 800 16px var(--mono) !important; /* bold, slightly larger */
  transition: transform 0.3s ease;
  margin: 8px 0 10px 0 !important; /* 8-12px spacing from title and description */
}

.food-card-desc {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.35 !important;
  height: 2.7em !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  text-overflow: ellipsis !important;
  margin-bottom: 12px !important;
}

.food-card-meta {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  font: 500 11px var(--mono) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding-top: 12px !important;
  margin-top: auto !important; /* Push metadata to bottom of details */
  padding-bottom: 12px !important;
  box-sizing: border-box !important;
}

.meta-veg {
  font-weight: 700 !important;
}
.meta-veg.veg {
  color: #00db78 !important;
}
.meta-veg.non-veg {
  color: #ff4f70 !important;
}
.meta-rating {
  color: #ffbb54 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
}

.food-card-footer {
  padding: 10px 20px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Most Ordered Ranked Cards */
.ranked-card {
  position: relative;
}
.rank-number {
  position: absolute;
  top: -12px;
  right: 15px;
  font: 900 82px var(--display);
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
  pointer-events: none;
}

/* Premium Popup Modal */
.food-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.food-modal.active {
  opacity: 1;
  pointer-events: all;
}

.food-modal-wrapper {
  background: rgba(20, 21, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.food-modal.active .food-modal-wrapper {
  transform: scale(1);
}

.food-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.food-modal-close:hover {
  color: var(--lime);
}

.food-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 500px;
}

.food-modal-media {
  position: relative;
}

.quantity-selector {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
}
.quantity-selector button {
  background: transparent;
  border: none;
  width: 40px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.quantity-selector button:hover {
  background: rgba(255, 255, 255, 0.05);
}
.quantity-selector input {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  color: #fff;
  font: 700 14px var(--mono);
  -moz-appearance: textfield;
}
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.related-items-wrap {
  display: flex;
  gap: 12px;
}
.related-food-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.related-food-item:hover {
  border-color: var(--lime);
}
.related-food-item img {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
}
.related-food-item div {
  display: flex;
  flex-direction: column;
}
.related-food-item div b {
  font-size: 11px;
  color: #fff;
}
.related-food-item div span {
  font-size: 10px;
  color: var(--lime);
  font-family: var(--mono);
}

body.no-scroll {
  overflow: hidden !important;
}

.mode-chip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 6px 12px !important;
  border-radius: 50px !important;
  font: 500 10px var(--mono) !important;
  color: #fff !important;
}

.feature-icon {
  width: 12px;
  height: 12px;
  color: #F5C64D;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* Food Modal Content Styling (Base/Global) */
.food-modal-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.food-modal-header-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.food-modal-kicker {
  font: 800 10px var(--mono);
  color: #F5C64D;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.food-modal-title {
  font: 800 32px var(--display);
  color: #fff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
.food-modal-price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}
.food-modal-price {
  font: 800 28px var(--display);
  color: #F5C64D;
}
.food-modal-rating {
  font: 700 12px var(--mono);
  color: #fff;
}
.food-modal-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #B8B8B8;
  margin: 0;
}

/* Premium Stats Chips */
.food-stat-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  border: none;
}
.food-stat-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 12px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.food-stat-chip:hover,
.food-stat-chip:active {
  border-color: #F5C64D;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(245, 198, 77, 0.15);
}
.food-stat-chip .chip-icon {
  font-size: 16px;
}
.food-stat-chip .chip-label {
  font-size: 9px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

/* Ingredients Tags list */
.food-modal-section-title {
  font: 800 10px var(--mono);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  border: none;
  padding: 0;
}
.food-ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.food-ingredient-tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #F5C64D;
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  color: #F5C64D;
  font-weight: 600;
  display: inline-block;
}

/* Desktop-only Quantity & Action (hidden on mobile) */
.food-qty-section-desktop {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}
.food-qty-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.food-qty-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  height: 48px;
  padding: 0 4px;
}
.food-qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.food-qty-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.food-qty-value {
  width: 32px;
  text-align: center;
  font: 700 15px var(--mono);
  color: #fff;
}
.food-prep-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 12px var(--mono);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
  box-shadow: 0 0 8px var(--lime);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
.food-add-btn-wrap {
  width: 100%;
}
.food-add-btn {
  width: 100%;
  height: 52px;
  background: var(--lime);
  color: #171008;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(167, 255, 0, 0.2);
}
.food-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 255, 0, 0.35);
  filter: brightness(1.05);
}
.food-add-btn .btn-price {
  font-family: var(--mono);
  font-weight: 700;
}

/* Media query rules for show/hide behavior of desktop/mobile modal action elements */
@media (min-width: 801px) {
  .food-add-sticky-wrap { display: none !important; }
}
@media (max-width: 800px) {
  .food-qty-section-desktop { display: none !important; }
}

/* Mobile HUD Toggle Button */
.mobile-hud-toggle {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lime);
  color: #171008;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.2s, opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-hud-toggle.fab-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(0, 20px, 0) !important;
  visibility: hidden !important;
}
.mobile-hud-toggle:hover {
  background: #c3e83b;
}
.mobile-hud-toggle:active {
  transform: scale(0.9);
}
.mobile-hud-toggle .hud-icon {
  font-size: 24px;
}
.mobile-hud-toggle .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4f70;
  color: #fff;
  font: 700 11px var(--mono);
  padding: 3px 7px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hud-close-btn {
  display: none;
}

/* Premium Session HUD Dashboard Panel */
.premium-session-hud {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  max-height: 580px;
  background: rgba(10, 11, 14, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  z-index: 998;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s;
  overflow-y: auto;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.premium-session-hud::-webkit-scrollbar {
  width: 4px;
}
.premium-session-hud::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.premium-session-hud.active {
  transform: translateY(0);
}

/* HUD Header styles */
.hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.hud-status-dot {
  width: 8px;
  height: 8px;
  background: #00db78;
  border-radius: 50%;
  box-shadow: 0 0 8px #00db78;
  display: inline-block;
  animation: pulseStatus 2s infinite;
}
@keyframes pulseStatus {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* Step Progress styles */
.hud-progress-block {
  margin-bottom: 20px;
}
.hud-progress-label {
  display: flex;
  justify-content: space-between;
  font: 700 10px var(--mono);
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.hud-progress-bar-wrap {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.hud-progress-bar {
  height: 100%;
  background: var(--lime);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Station Preview details */
.hud-station-preview {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.hud-station-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.hud-station-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hud-station-info h3 {
  font: 700 15px var(--display);
  color: #fff;
  margin: 0 0 4px;
}
.hud-station-info p {
  font: 500 10px var(--mono);
  color: var(--muted);
  margin: 0;
  text-transform: uppercase;
}

/* Section Title */
.hud-section-title {
  font: 700 9px var(--mono);
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 5px;
}

/* Compact quick row: time / duration / rate in one strip */
.hud-quick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.hud-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.hud-quick-item span {
  font-size: 13px;
}
.hud-quick-item strong {
  font: 700 11px var(--display);
  color: #fff;
  white-space: nowrap;
}
.hud-quick-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}

/* Zone badge inside station card */
.hud-badge {
  font: 700 8px var(--mono);
  color: var(--lime);
  background: rgba(195, 232, 59, 0.12);
  border: 1px solid rgba(195, 232, 59, 0.25);
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Equipment chips (replaces old list table) */
.hud-chips-block {
  margin-bottom: 14px;
}
.hud-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hud-chip {
  font: 600 10px var(--mono);
  color: rgba(255,255,255,0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.hud-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Kitchen compact block & combo card */
.hud-kitchen-compact {
  margin-bottom: 14px;
}
.hud-combo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(239, 189, 78, 0.06);
  border: 1px solid rgba(239, 189, 78, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  gap: 10px;
}
.hud-combo-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.hud-combo-tag {
  font: 700 9px var(--mono);
  color: #efbd4e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hud-combo-left strong {
  font: 700 12px var(--display);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hud-combo-price {
  font: 700 13px var(--display);
  color: var(--lime);
}
.hud-combo-btn {
  flex-shrink: 0;
  background: #efbd4e;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font: 800 10px var(--mono);
  color: #171008;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.hud-combo-btn:hover {
  background: #fbc758;
  transform: scale(1.04);
}
.hud-food-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 14px;
}
.hud-food-card-left {
  display: flex;
  flex-direction: column;
}
.hud-food-card-left strong {
  font: 700 12px var(--display);
  color: #fff;
  margin-bottom: 2px;
}
.hud-food-card-left span {
  font: 500 8px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
}
.hud-food-card-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hud-food-card-right b {
  font: 700 13px var(--display);
  color: var(--lime);
}
.hud-food-card-right button {
  background: transparent;
  border: none;
  color: var(--red);
  font-size: 16px;
  cursor: pointer;
  padding: 0 4px;
}

/* Live capacity status */
.hud-live-status-block {
  margin-bottom: 20px;
}
.hud-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.hud-status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 10px;
}
.hud-status-card span {
  color: var(--muted);
}
.hud-status-card b {
  color: #fff;
}

/* Countdown */
.hud-countdown-block {
  margin-bottom: 20px;
  background: rgba(255, 79, 112, 0.03);
  border: 1px solid rgba(255, 79, 112, 0.1);
  border-radius: 12px;
  padding: 12px;
}
.hud-countdown-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.hud-countdown-row span {
  font: 500 8px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.hud-countdown-row strong {
  font: 700 14px var(--display);
  color: #fff;
}

/* Pricing line */
.hud-pricing-block {
  margin-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}
.hud-price-line {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 5px;
}
.hud-price-line.total {
  font: 700 15px var(--display);
  color: #fff;
  border-top: 1px dashed rgba(255,255,255,0.12);
  padding-top: 8px;
  margin-top: 8px;
}
.hud-price-line.total strong {
  color: var(--lime);
}

/* Ticket Preview */
.hud-ticket-preview {
  margin-bottom: 20px;
  background: rgba(0, 219, 120, 0.02);
  border: 1px solid rgba(0, 219, 120, 0.08);
  border-radius: 12px;
  padding: 14px;
}
.hud-ticket-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #141519;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}
.hud-ticket-details {
  display: flex;
  flex-direction: column;
}
.hud-ticket-details strong {
  font: 700 13px var(--display);
  color: #fff;
  margin-bottom: 2px;
}
.hud-ticket-details span {
  font-size: 10px;
  color: var(--muted);
}
.hud-ticket-qr {
  color: var(--lime);
  display: flex;
  align-items: center;
}
.hud-ticket-link {
  font: 700 10px var(--mono);
  color: var(--lime);
  text-transform: uppercase;
  text-decoration: underline;
  display: block;
  text-align: center;
}

/* Floating Reserve CTA */
.hud-cta-wrap {
  margin-bottom: 20px;
}
.hud-reserve-btn {
  width: 100%;
  height: 54px;
  background: #efbd4e;
  border: none;
  border-radius: 12px;
  font: 800 12px var(--mono);
  color: #171008;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(239, 189, 78, 0.25);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}
.hud-reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 189, 78, 0.45);
  background: #fbc758;
}
.hud-reserve-btn:active {
  transform: translateY(1px);
}
.hud-btn-arrow {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.hud-reserve-btn:hover .hud-btn-arrow {
  transform: translateX(4px);
}

/* Achievement strip at the bottom */
.hud-achievement-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  text-align: center;
  font: 500 8px var(--mono);
  color: var(--muted);
  text-transform: uppercase;
}

/* Dynamic theme custom overrides */
.premium-session-hud.theme-valorant {
  border-color: rgba(255, 79, 112, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 79, 112, 0.15);
}
.premium-session-hud.theme-valorant .hud-status-dot {
  background: #ff4f70;
  box-shadow: 0 0 8px #ff4f70;
}
.premium-session-hud.theme-valorant .hud-progress-bar {
  background: #ff4f70;
}
.premium-session-hud.theme-valorant .hud-reserve-btn {
  background: #ff4f70;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 79, 112, 0.25);
}
.premium-session-hud.theme-valorant .hud-reserve-btn:hover {
  background: #ff6582;
  box-shadow: 0 10px 30px rgba(255, 79, 112, 0.45);
}

.premium-session-hud.theme-cs2 {
  border-color: rgba(107, 207, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(107, 207, 255, 0.15);
}
.premium-session-hud.theme-cs2 .hud-status-dot {
  background: #6bcfff;
  box-shadow: 0 0 8px #6bcfff;
}
.premium-session-hud.theme-cs2 .hud-progress-bar {
  background: #6bcfff;
}
.premium-session-hud.theme-cs2 .hud-reserve-btn {
  background: #6bcfff;
  color: #171008;
  box-shadow: 0 6px 20px rgba(107, 207, 255, 0.25);
}
.premium-session-hud.theme-cs2 .hud-reserve-btn:hover {
  background: #85d7ff;
  box-shadow: 0 10px 30px rgba(107, 207, 255, 0.45);
}

.premium-session-hud.theme-eafc {
  border-color: rgba(0, 219, 120, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 219, 120, 0.15);
}
.premium-session-hud.theme-eafc .hud-status-dot {
  background: #00db78;
  box-shadow: 0 0 8px #00db78;
}
.premium-session-hud.theme-eafc .hud-progress-bar {
  background: #00db78;
}
.premium-session-hud.theme-eafc .hud-reserve-btn {
  background: #00db78;
  color: #171008;
  box-shadow: 0 6px 20px rgba(0, 219, 120, 0.25);
}
.premium-session-hud.theme-eafc .hud-reserve-btn:hover {
  background: #1eff90;
  box-shadow: 0 10px 30px rgba(0, 219, 120, 0.45);
}

.premium-session-hud.theme-racing {
  border-color: rgba(195, 232, 59, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(195, 232, 59, 0.15);
}
.premium-session-hud.theme-racing .hud-status-dot {
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}
.premium-session-hud.theme-racing .hud-progress-bar {
  background: var(--lime);
}
.premium-session-hud.theme-racing .hud-reserve-btn {
  background: var(--lime);
  color: #171008;
  box-shadow: 0 6px 20px rgba(195, 232, 59, 0.25);
}
.premium-session-hud.theme-racing .hud-reserve-btn:hover {
  background: #d4f84c;
  box-shadow: 0 10px 30px rgba(195, 232, 59, 0.45);
}

.premium-session-hud.theme-vr {
  border-color: rgba(173, 140, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(173, 140, 255, 0.15);
}
.premium-session-hud.theme-vr .hud-status-dot {
  background: #ad8cff;
  box-shadow: 0 0 8px #ad8cff;
}
.premium-session-hud.theme-vr .hud-progress-bar {
  background: #ad8cff;
}
.premium-session-hud.theme-vr .hud-reserve-btn {
  background: #ad8cff;
  color: #fff;
  box-shadow: 0 6px 20px rgba(173, 140, 255, 0.25);
}
.premium-session-hud.theme-vr .hud-reserve-btn:hover {
  background: #beabff;
  box-shadow: 0 10px 30px rgba(173, 140, 255, 0.45);
}

/* Glass select dropdown styles */
.glass-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.glass-select:focus {
  border-color: var(--lime) !important;
  box-shadow: 0 0 15px rgba(195, 232, 59, 0.25) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Custom styling for new layout components */
.bundle-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bundle-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.bundle-img-wrap {
  position: relative;
  height: 160px;
  width: 100%;
  overflow: hidden;
}

.bundle-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
  pointer-events: none;
}

.bundle-img-wrap::before {
  content: 'View Details →';
  position: absolute;
  bottom: 12px;
  right: 12px;
  font: 700 9px var(--mono);
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 4px 8px;
  z-index: 3;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
}

.bundle-card:hover .bundle-img-wrap::before {
  opacity: 1;
  transform: translateY(0);
}

.bundle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bundle-card:hover .bundle-img-wrap img {
  transform: scale(1.05);
}

.bundle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font: 700 9px var(--mono);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.badge-red { background: #ff4f70; }
.badge-purple { background: #5d40b6; }
.badge-green { background: #00db78; color: #000; }

.bundle-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bundle-kicker {
  font: 500 10px var(--mono);
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bundle-title {
  font: 700 20px/1.2 var(--display);
  margin: 6px 0 10px;
  color: #fff;
}

.bundle-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}

.bundle-savings {
  font: 500 9px var(--mono);
  color: var(--lime);
  margin-bottom: 16px;
}

.bundle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  margin-top: auto;
}

.bundle-price {
  font: 700 22px var(--display);
  color: var(--lime);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.bundle-price small {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 400;
}

.price-gold { color: #ffbb54; }
.price-green { color: #00db78; }

.bundle-btn {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  height: 38px;
}

.btn-gold { background: #ffbb54; color: #000; }
.btn-gold:hover { background: #e5a93b; }
.btn-green { background: #00db78; color: #000; }
.btn-green:hover { background: #00b865; }

.custom-deal-card {
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: transparent;
  justify-content: center;
}

.custom-deal-inner {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
}

.custom-deal-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

/* Button & Badge standard sizes */
.button, .cafe-add-btn, .cafe-tab-btn, .bundle-btn {
  border-radius: 8px !important;
  height: 48px;
}

.button:active, .cafe-add-btn:active, .bundle-btn:active {
  transform: translateY(-1px);
}

/* Hero stats styling */
.hero-meta.hero-stats-card {
  display: flex;
  gap: 28px;
  align-items: center;
  width: 100%;
  margin-top: 48px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-lbl {
  font: 500 10px var(--mono);
  text-transform: uppercase;
  color: #b8aaa0;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================
   BGC Premium CSS Animations
   ========================================== */
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes breathingGlow {
  0% { box-shadow: 0 0 40px rgba(255, 183, 3, 0.04); }
  50% { box-shadow: 0 0 60px rgba(255, 183, 3, 0.12); }
  100% { box-shadow: 0 0 40px rgba(255, 183, 3, 0.04); }
}

@keyframes fadeUpAnim {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeAnim {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUpAnim {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRightAnim {
  from { opacity: 0; transform: translateX(-35px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================
   Hero Desktop Setup & Animations
   ========================================== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero h1 {
  animation: fadeUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-lead {
  animation: fadeAnim 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-primary-cta {
  animation: fadeUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
  transition: all 0.3s ease;
}

.hero-secondary-ctas .button:nth-child(1) {
  animation: fadeUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-secondary-ctas .button:nth-child(2) {
  animation: fadeUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.trust-strip-scroll {
  animation: slideUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.booking-float {
  animation: fadeRightAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
  border-top: 3px solid var(--accent) !important;
  animation-iteration-count: 1;
}

.hero-orbit {
  animation: orbitRotate 35s linear infinite !important;
}

.hero-light {
  animation: breathingGlow 6s ease-in-out infinite;
}

/* Parallax transitions */
.hero-light, .hero-main {
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================
   Kitchen Sticky Search & Focus glows
   ========================================== */
.sticky-menu-shelf {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: #26170f;
  padding-top: 16px;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at 50% 50%, rgba(255, 183, 3, 0.05) 0%, transparent 70%), #26170f;
}

#bgcMenuSearch {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#bgcMenuSearch:focus {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Trending Chips */
.trending-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #aeb1b4;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--mono);
}

.trending-chip:hover {
  background: rgba(255, 183, 3, 0.1);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.15);
}

/* Filter buttons glow & checkmarks */
.food-filter-btn {
  padding: 10px 18px !important; /* height increased by 4-6px */
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  color: #aeb1b4 !important;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--mono);
  font-size: 11px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.food-filter-btn:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.food-filter-btn.active {
  background: var(--lime) !important;
  color: #000 !important;
  border-color: var(--lime) !important;
  box-shadow: 0 0 15px rgba(195, 232, 59, 0.35);
  font-weight: 700;
}

/* Rounded Launcher Tabs Category Nav */
.cafe-tabs {
  border-bottom: none !important;
  background: transparent !important;
}

.cafe-tab-btn {
  background: #ffffff !important;
  color: #374151 !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  padding: 8px 14px !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
  transition: all 0.2s ease !important;
  height: auto !important;
  min-height: 36px !important;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cafe-tab-btn:hover {
  background: #f9fafb !important;
  color: #111827 !important;
  border-color: #9ca3af !important;
}

.cafe-tab-btn.active {
  background: #ffffff !important;
  color: #111827 !important;
  border-color: #111827 !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08) !important;
}

/* ==========================================
   Food Product Cards Taller Images & Hover slides
   ========================================== */
.food-product-card .cafe-add-btn {
  position: absolute;
  right: 16px;
  bottom: 12px;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.food-product-card:hover .cafe-add-btn {
  transform: translateY(0);
  opacity: 1;
}

.food-product-card:hover .food-card-price {
  transform: scale(1.05);
}

/* ==========================================
   BGC iOS Toast Notifications
   ========================================== */
.bgc-toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: rgba(13, 14, 18, 0.85);
  border: 1px solid var(--accent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--mono);
  min-width: 290px;
}

.bgc-toast.show {
  transform: translateX(0);
}

.bgc-toast-title {
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.bgc-toast-desc {
  color: #fff;
  font-size: 11px;
}

/* ==========================================
   Desktop UX Polish: Vignette, Parallax, & Zoom
   ========================================== */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 35%, rgba(8, 9, 12, 0.62) 100%),
              linear-gradient(90deg, rgba(8, 9, 12, 0.9) 0%, rgba(8, 9, 12, 0.45) 45%, rgba(8, 9, 12, 0.08) 100%),
              linear-gradient(0deg, #08090c 0%, transparent 45%);
  z-index: -1;
  pointer-events: none;
}

.hero-media {
  animation: slowZoom 24s ease-in-out infinite alternate !important;
}

.hero-video.ready {
  opacity: 0.38 !important; /* Reduced brightness by 7% */
  animation: slowZoom 24s ease-in-out infinite alternate !important;
}

/* Parallax transitions */
.hero-media, .hero-video, .hero-orbit-wrap, .hero-live-card, .hero-main {
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================
   Desktop Navbar Filled Gold CTA Button
   ========================================== */
.nav-book-link {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.25) !important;
  transition: all 0.3s ease !important;
  border: 1px solid transparent !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-book-link::after {
  display: none !important; /* Hide slide active underline for CTA */
}

.nav-book-link:hover {
  background: #ffc300 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4) !important;
}

/* ==========================================
   Primary & Secondary Buttons Micro-Interactions
   ========================================== */
.hero-primary-cta {
  background: var(--accent) !important;
  color: #000 !important;
  border-radius: 12px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease !important;
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.25) !important;
  position: relative;
  overflow: hidden;
}

.hero-primary-cta:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 18px 45px rgba(255, 183, 3, 0.45) !important;
  background: #ffc300 !important;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px !important;
  color: #fff !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.2) !important;
}

.button.secondary span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.button.secondary:hover span {
  transform: translateY(3px); /* slides down for Explore/Pricing */
}

.button.secondary.live-card-btn:hover span {
  transform: translateX(4px) !important;
}

/* Button Ripple Styling */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s cubic-bezier(0.1, 0.8, 0.3, 1);
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================
   Twitch Floating Live Match Card (Desktop Only)
   ========================================== */
.hero-live-card {
  position: absolute;
  right: 40px;
  top: 18%;
  width: 290px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(20, 21, 25, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1023px) {
  .hero-live-card {
    display: none !important;
  }
}

.live-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: livePulse 1.5s infinite;
}

.live-card-tag {
  font: 700 9px var(--mono);
  color: var(--red);
  letter-spacing: 0.12em;
}

.live-card-title {
  font: 700 22px var(--display);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.live-card-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: -6px;
}

.live-card-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: #fff;
}

.live-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}

.live-card-countdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.countdown-lbl {
  font: 600 8px var(--mono);
  color: var(--muted);
  letter-spacing: 0.1em;
}

.countdown-time {
  font: 700 24px var(--mono);
  color: var(--accent);
  letter-spacing: 0.05em;
}

.live-card-btn {
  height: 38px !important;
  min-height: 38px !important;
  font-size: 11px !important;
  border-radius: 8px !important;
  justify-content: center !important;
  margin-top: 4px;
}

/* Premium BGC Gaming Toast Notification */
.bgc-toast {
  position: fixed;
  top: 88px; /* 20px below desktop 68px navbar */
  left: 50%;
  transform: translate(-50%, -15px) scale(0.97);
  width: 320px !important; /* Smaller, more compact */
  height: 68px !important; /* Reduced height */
  background: rgba(18, 18, 22, 0.96) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 199, 70, 0.35) !important;
  border-radius: 12px !important; /* matches general cards */
  box-shadow: 0 0 16px rgba(255, 199, 70, 0.12), 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  z-index: 999999 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1), transform 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
  box-sizing: border-box;
}

.bgc-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.toast-content {
  width: 100%;
  height: 100%;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
}

.toast-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}

.toast-heading {
  font: 700 12px var(--mono) !important; /* Slightly smaller typography */
  color: #fff !important;
}

.toast-subtext {
  font: 500 10px var(--mono) !important; /* Muted subtitle */
  color: rgba(255, 255, 255, 0.5) !important;
}

.toast-action {
  font: 800 10px var(--mono) !important;
  color: var(--menu-gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.toast-content:hover .toast-action {
  background: var(--lime) !important;
  color: #000 !important;
  border-color: var(--lime) !important;
  box-shadow: 0 0 10px rgba(0, 219, 120, 0.3) !important;
}

@media (max-width: 768px) {
  .bgc-toast {
    top: 88px !important; /* 20px below mobile 68px navbar */
    width: calc(100% - 32px) !important;
    padding: 0 !important;
  }
  .toast-content {
    padding: 10px 14px !important;
  }
}

/* Shimmer Skeleton Loader for Food Menu Grid */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton-card {
  pointer-events: none !important;
  user-select: none !important;
}

.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%) !important;
  background-size: 200% 100% !important;
  animation: shimmer 1.5s infinite linear !important;
}

/* Card fade-in-on-render state (JS adds .loaded once the card is populated) */
.food-product-card {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.food-product-card.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop Detail Section Spacing */
@media (min-width: 801px) {
  .food-modal-section {
    border-bottom: none !important;
    padding: 0 !important;
    display: block !important;
  }
}

/* Swiggy/Zomato-style Veg/Non-veg symbol */
.veg-badge-symbol {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 3px !important;
  padding: 0 !important;
  background: transparent !important;
  flex-shrink: 0 !important;
}
.veg-badge-symbol.veg {
  border: 1.5px solid #00db78 !important;
}
.veg-badge-symbol.nonveg {
  border: 1.5px solid #ff4f70 !important;
}
.veg-badge-symbol .inner-symbol {
  width: 6px !important;
  height: 6px !important;
  display: block !important;
}
.veg-badge-symbol.veg .inner-symbol {
  background: #00db78 !important;
  border-radius: 50% !important;
}
.veg-badge-symbol.nonveg .inner-symbol {
  background: #ff4f70 !important;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%) !important;
}

/* ================================================================
   TASK 2, 3, 4 & 6: REUSABLE CLASSES, ACCESSIBILITY & UI STATES
   ================================================================ */

/* Global focus-visible baseline (Task 4) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent) !important;
  outline-offset: 2px !important;
  border-radius: 4px;
}

/* Station Unit Cards (Task 2) */
.station-unit-card {
  background: #13151b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.station-unit-card:hover {
  border-color: #efbd4e;
  background: rgba(239, 189, 78, 0.05);
  box-shadow: 0 4px 16px rgba(239, 189, 78, 0.15);
}
.station-unit-card.selected {
  border-color: #efbd4e !important;
  background: rgba(239, 189, 78, 0.12) !important;
  box-shadow: 0 0 20px rgba(239, 189, 78, 0.3) !important;
}
.station-unit-card.busy,
.station-unit-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.05);
}

/* Food Addon Cards (Task 2) */
.food-addon-card {
  background: #13151b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}
.food-addon-card.added {
  border-color: #efbd4e;
  background: rgba(239, 189, 78, 0.08);
}

/* Confirmation & Failure Cards (Task 2 & 3) */
.confirmation-card {
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(16, 13, 10, 0.95);
  backdrop-filter: blur(10px);
}
.booking-error-card {
  background: #181214;
  border: 1px solid #ff4f70;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(255, 79, 112, 0.15);
}
.ticket-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  text-align: left;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-bottom: 24px;
}
.ticket-field {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
  text-transform: uppercase;
}
.ticket-field b {
  display: block;
  font-size: 14px;
  color: #fff;
  font-family: var(--sans);
  margin-top: 2px;
  text-transform: none;
}

/* Unified Status Pills (Task 6) */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 700 10px var(--mono);
  padding: 3px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}
.status-pill.available {
  background: rgba(0, 219, 120, 0.12);
  color: #00db78;
  border: 1px solid rgba(0, 219, 120, 0.3);
}
.status-pill.busy {
  background: rgba(255, 79, 112, 0.12);
  color: #ff4f70;
  border: 1px solid rgba(255, 79, 112, 0.3);
}

/* Inline Spinner Keyframes & Loading State (Task 3) */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

