:root {
  /* Primary deep navy blue */
  --primary: #0a2342;
  --primary-2: #081c34; /* darker shade */
  --primary-3: #06212e;
  --primary-4: #041724;

  /* Secondary royal blue */
  --secondary: #1f6fb2;
  --secondary-dim: #5da9e9;
  --secondary-glow: rgba(93, 169, 233, 0.18);
  --secondary-rgb: 31, 111, 178; /* for building rgba with variable opacity */

  /* Accent (light blue) */
  --accent: #5da9e9;

  /* Neutral */
  --neutral: #ffffff;
  --neutral-dim: rgba(255, 255, 255, 0.65);
  --neutral-faint: rgba(255, 255, 255, 0.08);

  --border: rgba(31, 111, 178, 0.15);
  --border-secondary: rgba(31, 111, 178, 0.32);
  --shadow-secondary: 0 0 48px rgba(31, 111, 178, 0.18);

  /* legacy aliases – kept so existing selectors work without edits */
  --navy: var(--primary);
  --navy-2: var(--primary-2);
  --navy-3: var(--primary-3);
  --navy-4: var(--primary-4);
  --lime: var(--secondary);
  --lime-dim: var(--secondary-dim);
  --lime-glow: var(--secondary-glow);
  --border-lime: var(--border-secondary);
  --white: var(--neutral);
  --white-dim: var(--neutral-dim);
  --white-faint: var(--neutral-faint);
  --cyan: var(--accent);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--navy);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 3px;
}

/* Logo guidance:
   - use white/light version of logo on dark sections
   - use full-colour logo on light backgrounds
   Tagline styled below logo in navigation
*/
/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(15, 13, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-sq {
  width: 36px;
  height: 36px;
  background: var(--neutral);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: -1px;
  overflow: hidden;
  position: relative;
}
.logo-sq::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 55%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-18deg);
}
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 4px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--neutral-dim);
  margin-top: 2px;
}
.nav-ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-ul a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-ul a:hover {
  color: var(--white);
}
.nav-auth-chip {
  border: 1px solid var(--border);
  background: var(--navy-2);
  color: var(--white-dim);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-auth-btn {
  border: 1px solid var(--border-secondary);
  background: transparent;
  color: var(--white);
  border-radius: 6px;
  padding: 9px 14px;
  font-family: "Outfit", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.nav-auth-btn:hover {
  border-color: var(--secondary-dim);
  color: var(--secondary-dim);
}
.nav-auth-btn-ghost {
  color: var(--white-dim);
}
.hidden-auth-link {
  display: none !important;
}
.nav-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: var(--lime) !important;
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: 5px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
}
.nav-book:hover {
  background: var(--secondary-dim) !important;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
}
.mob-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--navy-2);
  border-bottom: 1px solid var(--border);
}
.mob-nav.open {
  display: block;
}
.mob-nav a {
  display: block;
  padding: 14px 32px;
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mob-nav a.mob-cta {
  background: var(--lime);
  color: var(--navy);
  margin: 16px 24px;
  border-radius: 6px;
  text-align: center;
  border: none;
}
.mob-auth-btn {
  display: block;
  width: calc(100% - 48px);
  margin: 16px 24px 0;
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid var(--border-secondary);
  background: transparent;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 23, 36, 0.72);
  padding: 20px;
}
.auth-modal-card {
  width: min(460px, 100%);
  background: linear-gradient(180deg, var(--navy-2), var(--navy-3));
  border: 1px solid var(--border-secondary);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-secondary);
}
.auth-modal-card h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 8px;
}
.auth-sub {
  color: var(--white-dim);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.auth-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white-dim);
  cursor: pointer;
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.auth-tab {
  border: 1px solid var(--border-secondary);
  border-radius: 8px;
  background: transparent;
  color: var(--white-dim);
  padding: 10px 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.auth-tab.active {
  border-color: var(--secondary-dim);
  color: var(--white);
  background: rgba(var(--secondary-rgb), 0.16);
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auth-form label {
  color: var(--white-dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.auth-form input,
.auth-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-secondary);
  border-radius: 10px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.auth-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--secondary-dim);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.18);
}
.auth-form select option {
  color: var(--white);
  background: var(--navy-3);
}
.auth-form input:-webkit-autofill,
.auth-form input:-webkit-autofill:hover,
.auth-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  box-shadow: 0 0 0 1000px var(--navy-3) inset;
  transition: background-color 9999s ease-in-out 0s;
}
.auth-submit {
  width: 100%;
  justify-content: center;
  border: none;
  margin-top: 10px;
}
.auth-error,
.auth-success {
  min-height: 22px;
  margin-top: 10px;
  font-size: 0.85rem;
}
.auth-error {
  color: #ff6b6b;
}
.auth-success {
  color: #7cf29c;
}

/* ── HERO ── */
.hero {
  min-height: 120vh;
  display: flex;
  align-items: center;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(4, 23, 36, 0.86) 0%,
      rgba(10, 35, 66, 0.7) 42%,
      rgba(31, 111, 178, 0.5) 100%
    ),
    radial-gradient(
      ellipse 65% 55% at 65% 38%,
      rgba(var(--secondary-rgb), 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 15% 75%,
      rgba(var(--secondary-rgb), 0.1) 0%,
      transparent 60%
    ),
    url("Gemini_Generated_Image_g85ivdg85ivdg85i.png") center center / cover
      no-repeat,
    var(--navy);
  filter: saturate(0.92) contrast(1.02);
  transform: translate3d(0, 0, 0) scale(1.08);
  transform-origin: center center;
  will-change: transform;
}
.court-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image:
    linear-gradient(var(--lime) 1px, transparent 1px),
    linear-gradient(90deg, var(--lime) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 75% 75% at 70% 45%,
    black 15%,
    transparent 72%
  );
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.hero-deco {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 300px;
  opacity: 0.04;
  pointer-events: none;
  animation: spin30 30s linear infinite;
}
@keyframes spin30 {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.hero-glow {
  position: absolute;
  right: 12%;
  top: 40%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--secondary-glow), transparent 70%);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.hero-c {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(37, 49, 59, 0.08);
  border: 1px solid var(--border-lime);
  border-radius: 100px;
  padding: 6px 18px 6px 10px;
  margin-bottom: 28px;
  animation: fUp 0.6s ease both;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0.4);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(var(--secondary-rgb), 0);
  }
}
.hero-tag span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}
h1.hero-h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(4.8rem, 11vw, 9rem);
  line-height: 0.87;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fUp 0.6s 0.1s ease both;
  opacity: 0;
  animation-fill-mode: both;
}
.h1-lime {
  color: var(--secondary);
  text-shadow: 0 0 70px rgba(var(--secondary-rgb), 0.15);
}
.hero-p {
  font-size: 1.02rem;
  color: var(--white-dim);
  max-width: 460px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fUp 0.6s 0.2s ease both;
  opacity: 0;
  animation-fill-mode: both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fUp 0.6s 0.3s ease both;
  opacity: 0;
  animation-fill-mode: both;
}
.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  box-shadow: 0 4px 28px rgba(9, 9, 9, 0);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-lime:hover {
  background: var(--secondary-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(31, 111, 178, 0.25);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fUp 0.6s 0.4s ease both;
  opacity: 0;
  animation-fill-mode: both;
}
.hstat {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--lime);
  border-radius: 8px;
  padding: 14px 18px;
}
.hstat-n {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--lime);
  line-height: 1;
}
.hstat-l {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 1px;
}
.scroll-cue {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  animation: fUp 0.6s 0.9s ease both;
  opacity: 0;
  animation-fill-mode: both;
}
.scroll-arr {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(45deg);
  animation: bd 1.6s infinite;
}
@keyframes bd {
  0%,
  100% {
    transform: rotate(45deg) translate(0);
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}

/* ── SECTION COMMONS ── */
section {
  padding: 108px 0;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--lime);
}
.sec-h {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.sec-p {
  color: var(--white-dim);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
}

/* ── COURTS ── */
#courts {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}
#courts::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.05), transparent 70%);
}
.courts-top {
  margin-bottom: 52px;
}
.courts-g {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  margin-bottom: 18px;
}
.c-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.c-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-lime);
  box-shadow: var(--shadow-lime);
}
.c-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), rgba(60, 0, 255, 0));
}
.c-card.cyan .c-bar {
  background: linear-gradient(90deg, var(--cyan), rgba(23, 14, 4, 0.007));
}
.c-bg-num {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 7rem;
  color: var(--white-faint);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -3px;
}
.c-ey {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 8px;
}
.c-card.cyan .c-ey {
  color: var(--cyan);
}
.c-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1.1;
}
.c-card .c-desc {
  color: var(--white-dim);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.6;
}
.c-image-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.03);
}
.c-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.c-price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 24px;
}
.c-price-big {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 3.8rem;
  color: var(--lime);
  line-height: 1;
}
.c-card.cyan .c-price-big {
  color: var(--cyan);
}
.c-price-sub {
  font-size: 0.78rem;
  color: var(--white-dim);
  padding-bottom: 7px;
}
.c-feats {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.c-feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(245, 242, 237, 0.8);
}
.c-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.c-card.cyan .c-dot {
  background: var(--cyan);
}
.c-mem {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid var(--border-lime);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.7rem;
  color: var(--lime);
  font-weight: 700;
  margin-top: 18px;
}
.c-card.cyan .c-mem {
  background: rgba(255, 140, 0, 0.12);
  border-color: rgba(255, 140, 0, 0.32);
  color: var(--cyan);
}
.courts-note {
  background: rgba(255, 196, 0, 0.08);
  border: 1px solid var(--border-lime);
  border-radius: 10px;
  padding: 16px 26px;
  font-size: 0.83rem;
  color: rgba(245, 242, 237, 0.75);
  display: flex;
  align-items: center;
  gap: 12px;
}
.courts-note strong {
  color: var(--lime);
}

/* ── GAMES ── */
#games {
  background: var(--navy);
}
.games-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.games-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.g-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 26px 18px;
  text-align: center;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.g-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-lime);
}
.g-em {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.g-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
}
.g-price {
  grid-column: 1/-1;
  background: linear-gradient(
    135deg,
    rgba(255, 196, 0, 0.12),
    rgba(255, 196, 0, 0.05)
  );
  border: 1px solid var(--border-lime);
  border-radius: 11px;
  padding: 26px;
  text-align: center;
}
.g-price .big {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--lime);
  line-height: 1;
}
.g-price .sub {
  color: var(--white-dim);
  font-size: 0.78rem;
  margin-top: 4px;
}
.g-price .mem {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 7px;
}

/* ── MEMBERSHIP ── */
#membership {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}
#membership::after {
  content: "MEMBERS";
  position: absolute;
  bottom: -50px;
  right: -10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 14rem;
  color: var(--white-faint);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.mem-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
.m-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 42px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.m-card:hover {
  transform: translateY(-6px);
}
.m-card.top {
  border-color: var(--border-lime);
  background: linear-gradient(
    145deg,
    rgba(255, 196, 0, 0.002) 0%,
    var(--navy-3) 55%
  );
}
.m-card.top:hover {
  box-shadow: 0 24px 64px rgba(255, 196, 0, 0.002) 0%;
}
.m-pop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--lime);
  color: var(--navy);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px;
}
.m-card.top {
  padding-top: 54px;
}
.m-ey {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 700;
  margin-bottom: 8px;
}
.m-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.9rem;
  margin-bottom: 2px;
}
.m-card.top h3 {
  color: var(--lime);
}
.m-pr {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 18px 0 28px;
}
.m-pr-big {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 3.8rem;
  color: var(--white);
  line-height: 1;
}
.m-card.top .m-pr-big {
  color: var(--lime);
}
.m-pr-mo {
  color: var(--white-dim);
  font-size: 0.88rem;
}
.m-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}
.mf {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.86rem;
}
.mf-ch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 196, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 1px;
}
.mf span {
  color: rgba(245, 242, 237, 0.8);
}
.mf span strong {
  color: var(--white);
}
.save {
  background: rgba(255, 196, 0, 0.15);
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 5px;
  white-space: nowrap;
}
.btn-m {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  border: none;
  transition: 0.2s;
  text-decoration: none;
}
.btn-m-lime {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 4px 28px rgba(255, 196, 0, 0.18);
  animation: glow-pulse 3s ease-in-out infinite;
}
.btn-m-lime:hover {
  background: var(--secondary-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(31, 111, 178, 0.25);
}
.btn-m-out {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-m-out:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* ── BOOKING ── */
#booking {
  background: var(--navy);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 28px;
  align-items: start;
  margin-top: 56px;
}
.book-info {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 38px;
  position: sticky;
  top: 88px;
}
.book-info h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.7rem;
  margin-bottom: 5px;
}
.book-info > p {
  color: var(--white-dim);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 26px;
}
.how-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.how-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.how-n {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lime-glow);
  border: 1.5px solid var(--border-lime);
  color: var(--lime);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-t h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1px;
}
.how-t p {
  color: var(--white-dim);
  font-size: 0.78rem;
  font-weight: 300;
}
.hrs-pills {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hrs-p {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 15px;
}
.hrs-p .ico {
  font-size: 1.1rem;
}
.hrs-p .txt {
  font-size: 0.8rem;
}
.hrs-p .txt strong {
  display: block;
  color: var(--lime);
  font-size: 0.85rem;
}

/* SimplyBook panel */
.sb-panel {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
}
.sb-head {
  background: var(--lime);
  padding: 17px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sb-head h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy);
}
.sb-badge {
  background: var(--navy);
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.sb-placeholder {
  padding: 44px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 640px;
  justify-content: center;
}
.sb-ico {
  font-size: 3.2rem;
  margin-bottom: 18px;
}
.sb-placeholder h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.sb-placeholder > p {
  color: var(--white-dim);
  font-size: 0.85rem;
  max-width: 340px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.setup-box {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  text-align: left;
  margin-bottom: 26px;
  width: 100%;
  max-width: 400px;
}
.s-step {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: rgba(245, 242, 237, 0.75);
}
.s-step:last-child {
  border: none;
}
.s-num {
  background: var(--lime);
  color: var(--navy);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy);
  padding: 13px 30px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  transition: background 0.2s;
}
.sb-btn:hover {
  background: var(--secondary-dim);
}

/* ── HOURS BAND ── */
.hrs-band {
  background: var(--lime);
}

/* booking form styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-form label {
  font-size: 0.75rem;
  color: var(--white-dim);
}
.booking-form input,
.booking-form select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--navy-3);
  color: var(--white);
}
.booking-form #card-element {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--navy-3);
}
.booking-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* modern dynamic button for booking page */
@keyframes shimmer {
  0%,
  100% {
    background: linear-gradient(135deg, var(--lime), var(--border-lime));
  }
  50% {
    background: linear-gradient(135deg, var(--border-lime), var(--lime));
  }
}
@keyframes glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(255, 196, 0, 0.002) 0%,
      0 8px 20px rgba(255, 196, 0, 0.002) 0%;
  }
  50% {
    box-shadow:
      0 0 40px rgba(255, 196, 0, 0.002) 0%,
      0 8px 30px rgba(255, 196, 0, 0.002) 0%;
  }
}
@keyframes underline-slide {
  from {
    width: 0%;
    left: 0;
  }
  to {
    width: 100%;
    left: 0;
  }
}
.btn-modern {
  display: inline-block;
  margin: 28px 0;
  padding: 16px 42px;
  background: linear-gradient(135deg, var(--lime), var(--border-lime));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 0 20px,
    0 8px 20px rgba(255, 196, 0, 0.002) 0%;
  animation: glow-pulse 3s ease-in-out infinite;
  position: relative;
}
.btn-modern::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-modern:hover::after {
  width: 100%;
  animation: none;
}
.btn-modern:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 0 50px rgba(255, 196, 0, 0.002) 0%,
    0 12px 40px rgba(255, 196, 0, 0.002) 0%;
  animation: shimmer 0.8s ease-in-out;
}
.btn-modern:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow:
    0 0 30px rgba(255, 196, 0, 0.002) 0%,
    0 6px 15px rgba(255, 196, 0, 0.002) 0%;
}

.hrs-band-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: stretch;
}
.hrs-div {
  background: rgba(245, 242, 237, 0.08);
  margin: 20px 0;
}
.hrs-b {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 32px;
}
.hrs-ico {
  font-size: 2.2rem;
  flex-shrink: 0;
}
.hrs-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.5);
  font-weight: 700;
  margin-bottom: 3px;
}
.hrs-time {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.85rem;
  color: var(--navy);
  line-height: 1.1;
}
.hrs-note {
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.5);
  margin-top: 2px;
}

/* ── CONTACT ── */
#contact {
  background: var(--navy-2);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.c-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}
.cc {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.cc:hover {
  border-color: var(--border-lime);
}
.cc-ico {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: var(--lime-glow);
  border: 1px solid var(--border-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cc-lb {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 2px;
}
.cc-v {
  font-size: 0.88rem;
  color: rgba(245, 242, 237, 0.85);
}
.form-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 42px;
}
.form-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.9rem;
  margin-bottom: 26px;
}
.fg {
  margin-bottom: 16px;
}
.fg label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 600;
  margin-bottom: 7px;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 12px 15px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  outline: none;
  border-color: var(--lime);
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(245, 242, 237, 0.35);
}
.fg textarea {
  resize: vertical;
  min-height: 105px;
}
.fg select option {
  background: var(--navy-3);
}
.fg-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.foot-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 56px;
  align-items: start;
}
.foot-brand p {
  color: var(--white-dim);
  font-size: 0.8rem;
  margin-top: 12px;
  max-width: 200px;
  line-height: 1.65;
}
.foot-links h4 {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 700;
  margin-bottom: 12px;
}
.foot-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.foot-links a {
  color: rgba(245, 242, 237, 0.55);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
.foot-links a:hover {
  color: var(--lime);
}
.foot-social {
  min-width: 170px;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-pill {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-secondary);
  background: linear-gradient(180deg, var(--navy-2), var(--navy-3));
  color: var(--white-dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.social-pill .social-icon {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-pill:hover {
  color: var(--white);
  border-color: var(--secondary-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(var(--secondary-rgb), 0.28);
}
.foot-bot {
  max-width: 1140px;
  margin: 36px auto 0;
  padding: 22px 48px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.35);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--lime);
  color: var(--navy);
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transform: translateY(70px);
  opacity: 0;
  transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── FLOATING BOOK BUTTON ── */
.floating-book {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 150;
  width: 120px;
  height: 60px;
  border-radius: 30px;
  background: var(--secondary-dim);
  color: var(--navy);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  box-shadow:
    0 4px 20px rgba(248, 247, 245, 0),
    0 0 30px rgba(255, 196, 0, 0);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float-pulse 2s ease-in-out infinite;
}
.floating-book:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow:
    0 8px 40px rgba(255, 196, 0, 0.005),
    0 0 60px rgba(255, 196, 0, 0.002);
}
@keyframes float-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ── ANIMATIONS ── */
@keyframes fUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}

/* ── MOBILE ── */
@media (max-width: 1312px) {
  nav {
    padding: 0 24px;
  }
  .nav-ul {
    gap: 14px;
  }
  .nav-ul a {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }
  .nav-auth-chip {
    max-width: 130px;
    padding: 6px 9px;
    font-size: 0.66rem;
  }
  .nav-auth-btn {
    padding: 8px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.7px;
  }
  .nav-book {
    padding: 8px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.4px;
  }
  .nav-ul li:last-child {
    flex-shrink: 0;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .nav-ul {
    display: none;
  }
  .burger {
    display: flex;
  }
  section {
    padding: 76px 0;
  }
  .container {
    padding: 0 20px;
  }
  .hero-c {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
  }
  .hero-stats {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
  }
  .hstat {
    min-width: 105px;
  }
  .hero-deco {
    right: -50px;
    font-size: 200px;
    opacity: 0.03;
  }
  .courts-g {
    grid-template-columns: 1fr;
  }
  .c-image {
    height: 180px;
  }
  .games-layout {
    grid-template-columns: 1fr;
  }
  .mem-g {
    grid-template-columns: 1fr;
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .book-info {
    position: static;
  }
  .hrs-band-in {
    grid-template-columns: 1fr;
  }
  .hrs-div {
    display: none;
  }
  .hrs-b {
    padding: 20px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .foot-in {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foot-social {
    min-width: 0;
  }
  .foot-bot {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .fg-2 {
    grid-template-columns: 1fr;
  }
  .auth-modal {
    padding: 14px;
  }
  .auth-modal-card {
    padding: 22px;
    border-radius: 14px;
  }
  .auth-form label {
    font-size: 0.74rem;
  }
  .auth-form input,
  .auth-form select {
    min-height: 46px;
    font-size: 1rem;
    padding: 13px 14px;
  }
  .auth-tab {
    min-height: 44px;
  }
  .auth-submit {
    min-height: 46px;
    margin-top: 12px;
  }
}
