:root {
  --bg: #050806;
  --bg-soft: #0c1310;
  --panel: rgba(13, 22, 18, 0.78);
  --panel-strong: rgba(15, 28, 22, 0.94);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5fff8;
  --muted: #aebbb3;
  --accent: #45ff75;
  --accent-2: #00d6b3;
  --gold: #f7c75f;
  --danger: #ff5571;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(69, 255, 117, 0.09), transparent 34rem),
    linear-gradient(180deg, #050806 0%, #07100c 45%, #050806 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background: #050806;
  color: var(--text);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px clamp(16px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  transition: padding 220ms ease, background 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(5, 8, 6, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #031008;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 32px rgba(69, 255, 117, 0.3);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-nav a {
  color: rgba(245, 255, 248, 0.76);
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--accent);
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(69, 255, 117, 0.38);
  border-radius: 999px;
  background: rgba(69, 255, 117, 0.11);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.booking-hero,
.final-cta {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-bg,
.booking-hero > img,
.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: slowZoom 16s ease-out forwards;
}

.hero-shade,
.final-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.45) 44%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.92));
}

.hero-light {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(69, 255, 117, 0.14), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.hero-3d-stage {
  position: absolute;
  right: clamp(24px, 5vw, 86px);
  bottom: clamp(30px, 8vh, 110px);
  z-index: 1;
  width: min(42vw, 520px);
  height: min(28vw, 360px);
  pointer-events: none;
  perspective: 1400px;
}

.booking-hero-3d-stage {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: clamp(18px, 4vh, 52px);
  z-index: 1;
  width: min(34vw, 360px);
  height: min(22vw, 220px);
  pointer-events: none;
  perspective: 1300px;
  opacity: 0.9;
}

.pitch-3d {
  --pitch-rot-x: 62;
  --pitch-rot-z: -30;
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(calc(var(--pitch-rot-x) * 1deg)) rotateZ(calc(var(--pitch-rot-z) * 1deg));
  animation: pitchFloat 7s ease-in-out infinite alternate;
}

.booking-pitch {
  --pitch-rot-x: 64;
  --pitch-rot-z: -24;
}

.pitch-3d::before {
  content: "";
  position: absolute;
  inset: 8% 10% 10% 8%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(18, 58, 35, 0.96), rgba(6, 20, 14, 0.9) 64%, rgba(8, 28, 20, 0.94));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(69, 255, 117, 0.12),
    inset 0 30px 100px rgba(69, 255, 117, 0.08);
  transform: translateZ(18px);
}

.pitch-stripe {
  position: absolute;
  top: 18%;
  left: 16%;
  width: 68%;
  height: 10%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(69, 255, 117, 0.12), rgba(255, 255, 255, 0.1), rgba(69, 255, 117, 0.12));
  box-shadow: 0 0 26px rgba(69, 255, 117, 0.18);
  transform: translateZ(32px);
}

.pitch-stripe:nth-child(1) {
  top: 32%;
}

.pitch-stripe:nth-child(2) {
  top: 46%;
}

.pitch-stripe:nth-child(3) {
  top: 60%;
}

.pitch-line {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
  transform: translateZ(34px);
}

.pitch-line-mid {
  left: 45%;
  top: 12%;
  width: 2px;
  height: 76%;
}

.pitch-line-box {
  top: 18%;
  width: 24%;
  height: 2px;
}

.pitch-line-left {
  left: 16%;
}

.pitch-line-right {
  right: 16%;
}

.pitch-circle {
  position: absolute;
  left: 48%;
  top: 50%;
  width: 22%;
  height: 22%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(34px);
}

.pitch-ball {
  position: absolute;
  right: 14%;
  bottom: 18%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff7e7 0%, #f7d869 20%, #dfa626 58%, #7e4d00 100%);
  box-shadow: 0 0 24px rgba(247, 199, 95, 0.7);
  transform: translateZ(46px);
  animation: ballOrbit 5s ease-in-out infinite;
}

.hero-content,
.booking-hero-content,
.final-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  max-width: 980px;
  margin: 12px 0 16px;
  font-size: clamp(3.6rem, 10vw, 8.7rem);
  line-height: 0.86;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.center-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #031008;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 42px rgba(69, 255, 117, 0.22);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.btn-block {
  width: 100%;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 9px;
  margin: 9px auto;
  border-radius: 999px;
  background: var(--accent);
  animation: scrollCue 1.4s ease-in-out infinite;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  transition: transform 420ms ease;
}

.image-panel:hover img {
  transform: scale(1.045);
}

.copy-panel h2,
.section-heading h2,
.final-content h2,
.booking-panel h2,
.booking-summary h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 0.98;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
}

.copy-panel > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.copy-panel h3 {
  margin: 22px 0 8px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.info-grid,
.card-grid,
.pricing-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.mini-card,
.feature-card,
.reason-card,
.price-card,
.review-card,
.booking-panel,
.booking-summary,
.modal-card,
.confirmation-card {
  --rot-x: 0deg;
  --rot-y: 0deg;
  --lift: 0px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateX(var(--rot-x)) rotateY(var(--rot-y)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.mini-card::before,
.feature-card::before,
.reason-card::before,
.price-card::before,
.review-card::before,
.tournament-card::before {
  content: "";
  position: absolute;
  inset: -22% auto auto -12%;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 255, 117, 0.2), transparent 62%);
  pointer-events: none;
}

.mini-card {
  padding: 18px;
}

.mini-card h3,
.feature-card h3,
.reason-card h3,
.price-card h3 {
  margin: 10px 0 6px;
  font-size: 1rem;
  text-transform: uppercase;
}

.mini-card p,
.feature-card p,
.reason-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.mini-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: #031008;
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 1000;
}

.facilities-section,
.gallery-section,
.location-section {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-intro {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid,
.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.reason-card {
  min-height: 230px;
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover,
.reason-card:hover,
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(69, 255, 117, 0.36);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56), 0 0 36px rgba(69, 255, 117, 0.12);
}

.demo-note,
.payment-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.demo-note {
  margin: 24px 0 0;
  text-align: center;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

.price-card {
  padding: 28px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.price-card-featured {
  border-color: rgba(69, 255, 117, 0.32);
}

.demo-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(69, 255, 117, 0.1);
  border: 1px solid rgba(69, 255, 117, 0.24);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 1000;
  color: var(--text);
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.tournament-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(69, 255, 117, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(0, 214, 179, 0.08), transparent 34%),
    #050806;
}

.tournament-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tournament-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 14px;
  margin-bottom: 22px;
}

.tournament-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.tournament-photo-large {
  grid-row: span 2;
}

.tournament-photo-tall {
  grid-column: span 2;
}

.tournament-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.tournament-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.tournament-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--text);
  font-weight: 1000;
  text-transform: uppercase;
}

.tournament-photo:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.tournament-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(13, 22, 18, 0.74);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.tournament-card:hover {
  transform: translateY(-8px);
  border-color: rgba(69, 255, 117, 0.38);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56), 0 0 36px rgba(69, 255, 117, 0.12);
}

.tournament-card-featured {
  border-color: rgba(69, 255, 117, 0.34);
  background:
    linear-gradient(180deg, rgba(69, 255, 117, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(13, 22, 18, 0.82);
}

.tournament-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

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

.tournament-card dl {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 24px 0;
}

.tournament-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.tournament-card .btn {
  width: 100%;
  margin-top: auto;
}

.tournament-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.tournament-strip strong {
  color: var(--accent);
  text-transform: uppercase;
}

.tournament-strip span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.84rem;
  font-weight: 850;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
}

.gallery-item span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.48);
  color: var(--accent);
  font-weight: 1000;
  text-transform: uppercase;
  transition: opacity 200ms ease;
}

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

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

.reason-card {
  min-height: 180px;
}

.stats-band {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(69, 255, 117, 0.14), transparent 36%),
    #050806;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
  font-weight: 1000;
}

.stat-compact strong {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.18em;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.96;
}

.stat span,
.stat small {
  display: block;
}

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

.review-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 24px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 16px 0 22px;
  color: rgba(245, 255, 248, 0.9);
  font-size: 1.08rem;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-person span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #031008;
  background: var(--accent);
  font-weight: 1000;
}

.review-person p {
  margin: 0;
  font-weight: 850;
}

.review-person small {
  color: var(--muted);
  font-weight: 600;
}

.location-chip {
  display: inline-flex;
  margin-top: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(69, 255, 117, 0.28);
  border-radius: 999px;
  color: var(--accent);
}

.map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(69, 255, 117, 0.18), rgba(0, 214, 179, 0.08)),
    #09120e;
  background-size: 54px 54px, 54px 54px, auto, auto;
  box-shadow: var(--shadow);
}

.map-embed {
  display: block;
  padding: 0;
  background: #09120e;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

.map-card strong,
.map-card small {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
}

.map-card strong {
  font-size: 1.45rem;
  text-transform: uppercase;
}

.map-card small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.map-line {
  position: absolute;
  height: 2px;
  width: 120%;
  background: rgba(69, 255, 117, 0.18);
  transform-origin: center;
}

.map-line.one {
  top: 28%;
  rotate: 21deg;
}

.map-line.two {
  top: 58%;
  rotate: -15deg;
}

.map-line.three {
  top: 72%;
  rotate: 8deg;
}

.map-pin {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 6px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translateY(-40px);
  box-shadow: 0 0 36px rgba(69, 255, 117, 0.5);
}

.final-cta {
  min-height: 560px;
  text-align: center;
}

.final-content {
  display: grid;
  justify-items: center;
}

.final-content h2 {
  font-size: clamp(2.8rem, 8vw, 7rem);
}

.final-content p {
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  padding: 38px 0;
  background: #030504;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 26px;
  align-items: center;
}

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

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a,
.social-links a {
  color: var(--muted);
  font-weight: 800;
}

.lightbox,
.payment-modal,
.confirmation,
.admin-auth-modal,
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.lightbox.open,
.payment-modal.open,
.confirmation.open,
.admin-auth-modal.open,
.admin-modal.open {
  display: grid;
  place-items: center;
}

.lightbox {
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
}

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

.lightbox button {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  padding: 12px 16px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 48px;
  height: 48px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.booking-hero {
  min-height: 58vh;
  isolation: isolate;
}

.booking-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), #050806);
}

.breadcrumb {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--accent);
}

.booking-shell {
  padding-top: 64px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.booking-main {
  display: grid;
  gap: 22px;
}

.owner-access-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(69, 255, 117, 0.3);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(69, 255, 117, 0.09) 0%, rgba(13, 24, 19, 0.8) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.owner-access-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.owner-access-bar span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.admin-toolbar {
  margin: 12px 0 18px;
  padding: 14px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(69, 255, 117, 0.14) 0%, rgba(0, 214, 179, 0.08) 100%);
  border: 1px solid rgba(69, 255, 117, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-size: 0.86rem;
  color: var(--text);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stepper li {
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.stepper li.active {
  color: #031008;
  background: var(--accent);
}

.booking-panel,
.booking-summary {
  padding: 24px;
  background: rgba(13, 22, 18, 0.82);
  backdrop-filter: blur(18px);
}

.booking-panel h2,
.booking-summary h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.calendar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calendar-controls strong {
  min-width: 148px;
  text-align: center;
}

.icon-btn {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar span,
.calendar button {
  min-height: 48px;
  border-radius: 8px;
}

.calendar span {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.calendar button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.calendar button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(69, 255, 117, 0.35);
}

.calendar button.selected {
  color: #031008;
  background: var(--accent);
}

.calendar button:disabled {
  color: rgba(255, 255, 255, 0.25);
  cursor: not-allowed;
}

.selected-date {
  color: var(--accent);
  font-weight: 950;
}

.slot-legend,
.slot-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.slot-legend {
  margin-bottom: 18px;
  color: var(--muted);
}

.slot-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.available {
  background: var(--accent);
}

.dot.booked {
  background: var(--danger);
}

.dot.selected {
  background: var(--gold);
}

.slot-groups {
  display: grid;
  gap: 22px;
}

.slot-group h3 {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.slot-button {
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.slot-button small {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.slot-button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(69, 255, 117, 0.35);
}

.slot-button.booked {
  opacity: 0.45;
  cursor: not-allowed;
}

.slot-button.selected {
  color: #031008;
  background: var(--accent);
}

.slot-button.selected small {
  color: #031008;
}

.details-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.details-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 850;
}

.details-form input,
.details-form select {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  padding: 0 14px;
  outline: none;
}

.details-form select option {
  color: #050806;
}

.details-form input:focus,
.details-form select:focus {
  border-color: rgba(69, 255, 117, 0.5);
  box-shadow: 0 0 0 3px rgba(69, 255, 117, 0.12);
}

.details-form small {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.78rem;
}

.booking-summary {
  position: sticky;
  top: 96px;
}

.booking-summary dl,
.confirmation-details {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.booking-summary dl div,
.confirmation-details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 24px 0;
}

.summary-total strong {
  color: var(--accent);
  font-size: 2.4rem;
  line-height: 1;
}

.summary-actions {
  display: grid;
  gap: 10px;
}

.mobile-booking-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 6, 0.9);
  backdrop-filter: blur(16px);
}

.mobile-booking-bar span,
.mobile-booking-bar strong {
  display: block;
}

.mobile-booking-bar span {
  color: var(--muted);
  font-size: 0.82rem;
}

.payment-modal {
  place-items: center;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
}

.modal-card {
  width: min(92vw, 420px);
  padding: 32px;
  text-align: center;
  background: var(--panel-strong);
}

.loader {
  width: 54px;
  height: 54px;
  margin: 24px auto;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.confirmation {
  place-items: center;
  overflow: auto;
  padding: 24px;
  background: #050806;
}

.confirmation-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.86)),
    url("../assets/images/turf-night-wide.webp") center / cover;
  opacity: 0;
  animation: fadeIn 500ms ease forwards;
}

.confirmation-card {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  padding: 34px;
  text-align: center;
  background: rgba(10, 18, 14, 0.9);
  backdrop-filter: blur(16px);
  transform: translateY(18px);
  opacity: 0;
  animation: riseIn 480ms 180ms ease forwards;
}

.success-ring {
  width: 94px;
  height: 94px;
  margin: 0 auto 18px;
}

.success-ring circle,
.success-ring path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-ring circle {
  opacity: 0.3;
}

.success-ring path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 560ms 420ms ease forwards;
}

.confirmation-card h2 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

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

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 680ms ease, transform 680ms ease;
}

@keyframes slowZoom {
  to {
    transform: scale(1);
  }
}

@keyframes pitchFloat {
  0% {
    transform: rotateX(calc((var(--pitch-rot-x) - 2) * 1deg)) rotateZ(calc((var(--pitch-rot-z) - 4) * 1deg)) translateY(0) translateX(0);
  }
  100% {
    transform: rotateX(calc((var(--pitch-rot-x) + 4) * 1deg)) rotateZ(calc((var(--pitch-rot-z) + 2) * 1deg)) translateY(-14px) translateX(8px);
  }
}

@keyframes ballOrbit {
  0%,
  100% {
    transform: translateZ(46px) translateX(0) translateY(0) scale(0.96);
  }
  50% {
    transform: translateZ(62px) translateX(-8px) translateY(-10px) scale(1.12);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: grid;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 8, 6, 0.94);
    backdrop-filter: blur(18px);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .split-layout,
  .booking-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .card-grid,
  .tournament-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid,
  .review-track,
  .details-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tournament-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .tournament-photo-large,
  .tournament-photo-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 76px 0;
  }

  .hero,
  .booking-hero {
    min-height: 720px;
  }

  .hero-title {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-actions .btn,
  .center-actions .btn,
  .confirmation-actions .btn {
    width: 100%;
  }

  .feature-grid,
  .card-grid,
  .pricing-grid,
  .tournament-grid,
  .stats-grid,
  .gallery-grid,
  .stepper {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .tournament-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-large {
    grid-row: span 1;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .owner-access-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .calendar-controls {
    width: 100%;
    justify-content: space-between;
  }

  .calendar {
    gap: 6px;
  }

  .calendar span,
  .calendar button {
    min-height: 42px;
  }

  .slot-button {
    width: 100%;
  }

  .booking-summary {
    margin-bottom: 88px;
  }

  .mobile-booking-bar {
    display: flex;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 24px;
  }
}

/* ==========================================================================
   ADMIN PORTAL & AUTH MODAL STYLES (HIGH AESTHETIC)
   ========================================================================== */

.admin-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-main {
  flex: 1;
  padding-top: 80px;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(69, 255, 117, 0.12);
  border: 1px solid rgba(69, 255, 117, 0.35);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(69, 255, 117, 0.15);
}

.admin-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 4px #fff;
  animation: pulseDot 2s infinite ease-in-out;
}

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

.btn-logout {
  background: rgba(255, 85, 113, 0.12);
  border: 1px solid rgba(255, 85, 113, 0.3);
  color: #ff7089;
  cursor: pointer;
  padding: 3px 8px;
  margin-left: 6px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 160ms ease;
}

.btn-logout:hover {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-sm {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn-text,
.btn-text-sm {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 0;
  font-weight: 800;
  text-decoration: underline;
  transition: opacity 160ms ease;
}

.btn-text-sm {
  font-size: 0.78rem;
}

.btn-text:hover,
.btn-text-sm:hover {
  opacity: 0.8;
}

.text-accent { color: var(--accent) !important; }
.text-danger { color: var(--danger) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--muted) !important; }

/* Modal Display & Pop-in Animation */
.admin-auth-modal,
.admin-modal {
  background: radial-gradient(circle at center, rgba(69, 255, 117, 0.08), rgba(0, 0, 0, 0.88) 70%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 20px;
  overflow-y: auto;
}

@keyframes modalPopIn {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Standalone Login Page */
.login-page-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #050806;
  position: relative;
  overflow-x: hidden;
}

.login-page-bg {
  position: fixed;
  inset: 0;
  background: 
    linear-gradient(rgba(5, 8, 6, 0.88), rgba(5, 8, 6, 0.96)),
    url("../assets/images/turf-match-night.webp") center / cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.login-page-glow {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 255, 117, 0.12) 0%, rgba(0, 214, 179, 0.04) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.login-page-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
}

.login-card-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.standalone-login-card {
  width: min(100%, 460px);
  margin: 0 auto;
  border-color: rgba(69, 255, 117, 0.4);
  box-shadow: 
    0 30px 90px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(69, 255, 117, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Glassmorphic Auth Card */
.admin-auth-card,
.admin-modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: 36px 32px;
  background: linear-gradient(165deg, rgba(16, 32, 24, 0.96) 0%, rgba(8, 17, 13, 0.98) 100%);
  border: 1px solid rgba(69, 255, 117, 0.32);
  border-radius: 16px;
  box-shadow: 
    0 24px 70px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(69, 255, 117, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: modalPopIn 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.admin-modal-card {
  width: min(100%, 540px);
}

.auth-card-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.brand-mark.sm {
  width: 28px;
  height: 28px;
  font-size: 0.78rem;
}

.admin-auth-card h2,
.admin-modal-card h3 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--text);
}

.auth-subtitle,
.modal-subtitle {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 22px;
}

.modal-subtitle {
  color: var(--accent);
  font-weight: 800;
}

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

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: all 160ms ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(69, 255, 117, 0.4);
}

/* Form Fields & Styled Inputs */
.admin-auth-form,
.modal-form,
.admin-login-form,
.settings-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
  transition: color 180ms ease;
}

.input-with-icon input {
  padding-left: 44px;
}

.input-with-icon:focus-within .field-icon {
  color: var(--accent);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 0.94rem;
  transition: all 180ms ease;
}

.form-field textarea {
  min-height: 80px;
  resize: vertical;
}

.form-field select option {
  background: #0b1712;
  color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 0 0 3px rgba(69, 255, 117, 0.18),
    0 0 20px rgba(69, 255, 117, 0.12);
}

.password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrap input {
  padding-right: 46px;
}

.toggle-password-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 6px;
  transition: all 160ms ease;
}

.toggle-password-btn:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--muted);
  text-transform: none;
  font-weight: 600;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.field-error {
  min-height: 16px;
  color: var(--danger);
  font-size: 0.78rem;
  text-transform: none;
}

.admin-auth-feedback,
.login-feedback,
.settings-feedback {
  padding: 11px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 750;
  display: none;
}

.admin-auth-feedback.error,
.login-feedback.error,
.settings-feedback.error {
  display: block;
  background: rgba(255, 85, 113, 0.15);
  border: 1px solid rgba(255, 85, 113, 0.45);
  color: #ff8599;
}

.admin-auth-feedback.success,
.login-feedback.success,
.settings-feedback.success {
  display: block;
  background: rgba(69, 255, 117, 0.15);
  border: 1px solid rgba(69, 255, 117, 0.45);
  color: var(--accent);
}

/* Modal Footer & Quick Credentials */
.auth-modal-footer {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.quick-creds-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px dashed rgba(69, 255, 117, 0.3);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.quick-creds-box code {
  color: var(--accent);
  font-weight: 800;
}

.dashboard-link {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 160ms ease;
}

.dashboard-link:hover {
  color: var(--accent);
}

/* Standalone Admin Login Page Card */
.admin-login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px);
}

.admin-login-card {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 38px 32px;
  background: linear-gradient(165deg, rgba(16, 32, 24, 0.96) 0%, rgba(8, 17, 13, 0.98) 100%);
  border: 1px solid rgba(69, 255, 117, 0.32);
  border-radius: 16px;
  box-shadow: 
    0 24px 80px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(69, 255, 117, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
}

.admin-login-header {
  text-align: center;
  margin-bottom: 24px;
}

.admin-login-header h1 {
  margin: 12px 0 6px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-transform: uppercase;
  font-weight: 1000;
}

.admin-login-header p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.admin-default-hint {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(69, 255, 117, 0.3);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  display: grid;
  gap: 4px;
}

.admin-default-hint strong {
  color: var(--text);
}

.admin-default-hint code {
  color: var(--accent);
  font-family: monospace;
}

/* Dashboard Header & Tabs */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.dashboard-header h2 {
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.dashboard-nav-tabs {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.tab-btn {
  padding: 9px 20px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
  font-size: 0.86rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 180ms ease;
}

.tab-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.tab-btn.active {
  background: var(--accent);
  color: #031008;
  box-shadow: 0 4px 16px rgba(69, 255, 117, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active,
.tab-content:not([hidden]) {
  display: block;
}

/* Admin Date Bar */
.admin-date-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 22px;
  background: var(--panel);
  border: 1px solid rgba(69, 255, 117, 0.22);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.date-picker-group {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.86rem;
}

.date-picker-group input[type="date"] {
  min-height: 44px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: inherit;
  font-weight: 800;
  outline: none;
  transition: border-color 160ms ease;
}

.date-picker-group input[type="date"]:focus {
  border-color: var(--accent);
}

.date-picker-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.quick-date-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-btn {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 160ms ease;
}

.pill-btn:hover {
  border-color: rgba(69, 255, 117, 0.5);
  color: var(--text);
  transform: translateY(-1px);
}

.pill-btn.active {
  background: var(--accent);
  color: #031008;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(69, 255, 117, 0.3);
}

/* Stats Cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat-card {
  padding: 22px;
  background: linear-gradient(160deg, rgba(13, 24, 19, 0.85), rgba(7, 14, 11, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.admin-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(69, 255, 117, 0.3);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 1000;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Bulk Actions Bar */
.admin-bulk-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.bulk-label {
  font-size: 0.86rem;
  font-weight: 850;
  color: var(--text);
}

.bulk-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Slots Management Grid */
.admin-slots-container {
  display: grid;
  gap: 30px;
}

.admin-slot-group {
  display: grid;
  gap: 14px;
}

.admin-slot-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.admin-slot-group-header h3 {
  margin: 0;
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: 0.5px;
}

.slot-count-badge {
  font-size: 0.75rem;
  font-weight: 850;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.admin-slot-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.admin-slot-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-slot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.admin-slot-card.is-booked {
  border-color: rgba(255, 85, 113, 0.45);
  background: linear-gradient(180deg, rgba(255, 85, 113, 0.09) 0%, rgba(13, 22, 18, 0.92) 100%);
  box-shadow: inset 0 0 20px rgba(255, 85, 113, 0.05);
}

.admin-slot-card.is-available {
  border-color: rgba(69, 255, 117, 0.35);
  background: linear-gradient(180deg, rgba(69, 255, 117, 0.06) 0%, rgba(13, 22, 18, 0.92) 100%);
  box-shadow: inset 0 0 20px rgba(69, 255, 117, 0.04);
}

.slot-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.slot-time-title {
  display: grid;
}

.time-text {
  font-size: 1.08rem;
  font-weight: 1000;
  color: var(--text);
}

.period-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 850;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.badge-booked {
  background: rgba(255, 85, 113, 0.18);
  color: #ff7089;
  border: 1px solid rgba(255, 85, 113, 0.45);
}

.badge-booked .badge-dot {
  background: var(--danger);
  box-shadow: 0 0 8px var(--danger);
}

.badge-available {
  background: rgba(69, 255, 117, 0.16);
  color: var(--accent);
  border: 1px solid rgba(69, 255, 117, 0.4);
}

.badge-available .badge-dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.slot-card-body {
  margin-bottom: 16px;
  min-height: 56px;
}

.slot-available-info p {
  margin: 0 0 6px;
  font-size: 0.84rem;
  color: var(--muted);
}

.slot-rate-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 950;
  color: var(--accent);
}

.slot-booking-info {
  display: grid;
  gap: 6px;
}

.booking-meta-row {
  font-size: 0.9rem;
  color: var(--text);
}

.booking-meta-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.chip-game {
  background: rgba(0, 214, 179, 0.15);
  color: var(--accent-2);
  border: 1px solid rgba(0, 214, 179, 0.3);
}

.chip-price {
  background: rgba(247, 199, 95, 0.15);
  color: var(--gold);
  border: 1px solid rgba(247, 199, 95, 0.3);
}

.chip-pay {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.booking-notes-snippet {
  margin: 4px 0 0;
  font-size: 0.76rem;
  color: var(--muted);
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.card-actions .btn {
  flex: 1;
}

/* Reservations Tab */
.reservations-card {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reservations-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.reservations-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.reservations-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.search-input {
  min-height: 40px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.86rem;
  min-width: 260px;
  outline: none;
}

.search-input:focus {
  border-color: var(--accent);
}

.table-responsive {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.table-empty-cell {
  text-align: center;
  padding: 38px 14px;
  color: var(--muted);
  font-style: italic;
}

/* Settings Tab */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.settings-card {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  align-content: start;
}

.settings-card h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.settings-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.input-readonly {
  opacity: 0.8;
  cursor: not-allowed;
}

.settings-system-info {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}

.settings-system-info h4 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

.settings-system-info p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

/* Toast Notifications */
.admin-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 120;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 850;
  color: #031008;
  background: var(--accent);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(69, 255, 117, 0.3);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.3, 1.2), opacity 260ms ease;
}

.admin-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.admin-toast.success {
  background: linear-gradient(135deg, #45ff75, #00d6b3);
  color: #031008;
}

.admin-toast.error {
  background: var(--danger);
  color: #fff;
}

.admin-toast.info {
  background: var(--panel-strong);
  color: var(--text);
  border: 1px solid var(--line);
}

/* Responsive Rules for Admin */
@media (max-width: 980px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  .admin-date-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .date-picker-group {
    width: 100%;
    justify-content: space-between;
  }
  .form-row,
  .modal-actions {
    grid-template-columns: 1fr;
  }
}



@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
