:root {
  color-scheme: dark;
  --bg: #010402;
  --ink: #f7fff2;
  --muted: #c8d5c6;
  --soft: #7f917d;
  --green: #70ff21;
  --green-deep: #14d85b;
  --cyan: #30e7c6;
  --panel: rgba(4, 17, 8, 0.82);
  --panel-strong: rgba(2, 10, 5, 0.94);
  --line: rgba(112, 255, 33, 0.55);
  --line-soft: rgba(112, 255, 33, 0.24);
  --shadow: 0 0 34px rgba(112, 255, 33, 0.26);
  --max: 1120px;
  font-family: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(112, 255, 33, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(112, 255, 33, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: 88px 88px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), #010402 58%, #010402),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 6px);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 8vw, 108px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 204px;
  text-transform: uppercase;
  color: var(--green);
  font: 950 24px/1 "Arial Black", Impact, sans-serif;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(112, 255, 33, 0.55));
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.main-nav a { transition: color 0.2s ease; }
.main-nav a:hover, .main-nav .active { color: var(--green); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #020702;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
}

.btn, .header-cta, .instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid var(--green);
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover, .header-cta:hover, .instagram-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.header-cta {
  min-width: 170px;
  color: var(--green);
}
.btn-primary {
  color: #041002;
  background: linear-gradient(135deg, #baff59, var(--green) 52%, var(--green-deep));
  box-shadow: 0 0 28px rgba(112, 255, 33, 0.46);
}
.btn-ghost, .btn-outline {
  background: rgba(0, 0, 0, 0.56);
}
.btn-outline {
  min-height: 40px;
  padding: 0 22px;
  color: var(--green);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #010402;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("/assets/hero-bg.jpg") center right / cover no-repeat;
  transform: scale(1.01);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 32%, rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.74));
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  min-height: 580px;
  margin: 0 auto;
  padding: 56px clamp(20px, 6.8vw, 92px) 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 32px;
}

.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 650px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(58px, 8vw, 96px);
  line-height: 0.82;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  color: #fff;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.18);
}
.hero h1 { color: var(--green); }
.lead {
  max-width: 560px;
  margin: 28px 0 32px;
  color: #fff;
  font-size: 17px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 38px;
}
.hero-actions .btn {
  min-width: 205px;
  min-height: 54px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 18px;
  max-width: 760px;
}
.hero-points article {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-points strong {
  display: block;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}
.hero-points small {
  display: block;
  color: #fff;
  font-size: 12px;
}

.brand-orb {
  position: relative;
  justify-self: center;
  display: grid;
  place-items: center;
  width: min(460px, 40vw);
  aspect-ratio: 1;
  transform: translate(7%, -3%);
}
.brand-orb::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(112, 255, 33, 0.34);
  box-shadow: inset 0 0 56px rgba(112, 255, 33, 0.18), 0 0 70px rgba(112, 255, 33, 0.38);
}
.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(112, 255, 33, 0.72);
  box-shadow: 0 0 30px rgba(112, 255, 33, 0.55), inset 0 0 30px rgba(112, 255, 33, 0.26);
  animation: pulseRing 3.2s ease-in-out infinite;
}
.brand-orb img {
  position: relative;
  width: 60%;
  max-height: 60%;
  object-fit: contain;
  object-position: center;
  transform: translateY(-2%);
  filter: drop-shadow(0 0 30px rgba(112, 255, 33, 0.72));
}
@keyframes pulseRing {
  0%, 100% { opacity: 0.68; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

.stat-icon, .feature-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--green);
}
.stat-icon::before, .stat-icon::after, .feature-icon::before, .feature-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}
.monitor::before {
  width: 26px; height: 16px; border: 2px solid; border-radius: 2px;
}
.monitor::after {
  width: 12px; height: 6px; border-bottom: 2px solid; bottom: 3px;
}
.gamepad::before {
  width: 28px; height: 18px; border: 2px solid; border-radius: 10px 10px 8px 8px;
}
.gamepad::after {
  width: 18px; height: 8px; border-left: 2px solid; border-right: 2px solid;
}
.trophy::before {
  width: 17px; height: 16px; border: 2px solid; border-radius: 2px 2px 9px 9px;
}
.trophy::after {
  width: 20px; height: 15px; border-left: 2px solid; border-right: 2px solid; top: 6px;
}
.parking::before {
  width: 26px; height: 26px; border: 2px solid; border-radius: 50%;
}
.parking::after {
  content: "P";
  position: static;
  font-weight: 950;
  font-size: 17px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 20px;
  text-align: center;
}
h2 {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.14;
}
h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 15px;
  text-transform: uppercase;
}
p {
  color: var(--muted);
  line-height: 1.58;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.local-seo {
  max-width: 860px;
  padding-top: 12px;
  padding-bottom: 20px;
}
.local-seo p:last-child {
  margin: 0 auto;
  max-width: 760px;
  color: #e8f4e4;
}
.feature-grid article, .price-card, .reservation-panel, .admin-panel, .admin-login {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 30, 13, 0.88), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, transparent, rgba(48, 231, 198, 0.04), transparent);
  box-shadow: inset 0 0 34px rgba(112, 255, 33, 0.08);
}
.feature-grid article {
  min-height: 182px;
  padding: 28px 24px;
}
.feature-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
}
.lightning::before {
  width: 16px; height: 34px;
  background: currentColor;
  clip-path: polygon(52% 0, 100% 0, 62% 42%, 100% 42%, 35% 100%, 48% 56%, 8% 56%);
}
.aura::before, .headset::before {
  width: 34px; height: 34px; border: 4px solid; border-radius: 50%;
}
.aura::after {
  width: 14px; height: 14px; border: 3px solid; border-radius: 50%;
}
.crown::before {
  width: 34px; height: 24px; border-bottom: 4px solid;
  clip-path: polygon(0 100%, 0 48%, 24% 70%, 50% 16%, 76% 70%, 100% 48%, 100% 100%);
  background: currentColor;
}
.headset::before {
  border-bottom-color: transparent;
}
.headset::after {
  width: 42px; height: 18px; border-left: 5px solid; border-right: 5px solid; bottom: 8px;
}

.setup { padding-top: 18px; }
.setup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.setup-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #020402;
  text-align: left;
  box-shadow: 0 0 30px rgba(112, 255, 33, 0.12);
}
.setup-card.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.setup-card.reverse img { order: 2; }
.setup-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}
.setup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 38px rgba(112, 255, 33, 0.28);
}
.setup-copy {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 42px);
  align-self: center;
}
.setup-copy h3 { font-size: 24px; }
ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
li {
  margin: 9px 0;
  color: #fff;
  font-size: 14px;
}
li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
  font-weight: 950;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 930px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  min-height: 226px;
  padding: 26px 20px 24px;
}
.price-card.featured {
  box-shadow: 0 0 34px rgba(112, 255, 33, 0.36), inset 0 0 36px rgba(112, 255, 33, 0.1);
}
.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 178px;
  padding: 5px 14px;
  border-radius: 999px;
  color: #041002;
  background: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.price-card h3 {
  color: #fff;
  margin-bottom: 0;
  font-size: 22px;
}
.price-card .subtitle {
  margin: 0 0 8px;
  color: #fff;
  font-weight: 800;
}
.price {
  color: var(--green);
  font-size: 52px;
  font-weight: 950;
  line-height: 1;
}
.price-card p {
  margin: 7px 0 18px;
  color: #fff;
}

.reservation-section { padding-top: 16px; }
.reservation-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  padding: 30px;
  text-align: left;
}
.reservation-copy h2 { margin-bottom: 12px; }
.reservation-form, .admin-login form, .packages-form {
  display: grid;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(112, 255, 33, 0.42);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  padding: 13px 14px;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(112, 255, 33, 0.12);
}
textarea {
  min-height: 94px;
  resize: vertical;
}
.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.event-band {
  margin: 10px 0;
  padding: 52px 20px;
  text-align: center;
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.84), rgba(7, 36, 14, 0.72), rgba(0,0,0,0.84)),
    url("/assets/venue-wide.jpg") center / cover no-repeat;
}
.event-band h2 { margin-bottom: 0; }
.leaderboard-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 0 32px rgba(112, 255, 33, 0.16), inset 0 0 34px rgba(112, 255, 33, 0.08);
}
.leaderboard-panel h2 { margin-bottom: 8px; }
.leaderboard-panel p:not(.section-kicker) {
  margin: 0 auto 20px;
  max-width: 540px;
}
.leaderboard-list {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.leaderboard-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(112, 255, 33, 0.34);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.46);
}
.leaderboard-list li::before { content: none; }
.leaderboard-list span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #061004;
  background: var(--green);
  font-weight: 950;
}
.leaderboard-list strong {
  color: #fff;
  text-align: left;
}
.leaderboard-list small {
  color: var(--green);
  font-weight: 800;
}

.gallery { padding-top: 22px; }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(112, 255, 33, 0.12);
}
.gallery-strip img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-right: 1px solid rgba(112, 255, 33, 0.44);
}
.gallery-strip img:last-child { border-right: 0; }

.reviews {
  padding-top: 14px;
}
.reviews-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(5, 20, 10, 0.9), rgba(0, 0, 0, 0.78));
  box-shadow: inset 0 0 34px rgba(112, 255, 33, 0.08);
  text-align: left;
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
}
.google-badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #061004;
  background: #fff;
  font: 950 28px/1 Arial, sans-serif;
}
.reviews-summary strong {
  display: block;
  color: #fff;
  font-size: 22px;
}
.reviews-summary p {
  margin: 3px 0;
}
.reviews-summary small {
  color: var(--green);
  font-weight: 800;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card, .review-empty {
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(112, 255, 33, 0.26);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.42);
}
.review-card p, .review-empty p {
  margin: 8px 0 14px;
}
.review-card strong {
  color: #fff;
}
.stars {
  color: var(--green);
  font-size: 15px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 18px;
}
.footer > div + div {
  border-left: 1px solid rgba(112, 255, 33, 0.34);
  padding-left: 52px;
}
.footer h3 { color: var(--green); }
.instagram-button {
  min-height: 40px;
  padding: 0 18px;
  color: var(--green);
}
.instagram-button span {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
  position: relative;
}
.instagram-button span::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.instagram-button span::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0;
  font-size: 13px;
  color: #93a090;
}

.admin-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-shell { width: min(1180px, 100%); }
.admin-login {
  max-width: 440px;
  margin: auto;
  padding: 28px;
}
.admin-login img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(112, 255, 33, 0.5));
}
.admin-login h1, .admin-topbar h1 { margin: 8px 0 20px; }
.hidden { display: none !important; }
.admin-dashboard { display: grid; gap: 20px; }
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.admin-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
.admin-panel {
  padding: 22px;
  text-align: left;
}
.reservation-list {
  display: grid;
  gap: 12px;
}
.reservation-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(112, 255, 33, 0.26);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.36);
}
.reservation-item strong { color: #fff; }
.reservation-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
.package-editor {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(112, 255, 33, 0.28);
  border-radius: 6px;
}
.content-editor {
  display: grid;
  gap: 10px;
}
.content-editor .editor-row {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 8px;
}
.content-editor fieldset {
  margin: 0;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.checkbox-row input { width: auto; }

@media (max-width: 980px) {
  .site-header {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    padding: 8px 18px;
  }
  .brand { min-width: auto; }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px 0;
  }
  .main-nav.open { display: grid; }
  .header-cta { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }
  .brand-orb {
    width: min(370px, 78vw);
    margin-top: 8px;
    transform: none;
  }
  .hero-points, .feature-grid, .pricing-grid, .reservation-panel, .footer, .admin-panels {
    grid-template-columns: 1fr;
  }
  .review-cards {
    grid-template-columns: 1fr;
  }
  .setup-card, .setup-card.reverse {
    grid-template-columns: 1fr;
  }
  .setup-card.reverse img { order: 0; }
  .footer > div + div {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(112, 255, 33, 0.28);
    padding-top: 20px;
  }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .brand span { font-size: 20px; }
  .brand img { width: 48px; height: 48px; }
  .hero h1 { font-size: 46px; }
  .hero-actions .btn { width: 100%; }
  .hero-points { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .leaderboard-panel { padding: 22px 16px; }
  .leaderboard-list li { grid-template-columns: 36px 1fr; }
  .leaderboard-list small { grid-column: 2; justify-self: start; }
  .reviews-summary { align-items: flex-start; }
  .gallery-strip { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 150px; }
}
