:root {
  --green-deep: #0F2E2B;
  --green-secondary: #1C3F3A;
  --beige: #E8E1D8;
  --gold: #C9A15A;
  --gold-dark: #9C7A3C;
  --ink: #10211F;
  --white-soft: #F8F3EA;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--green-deep);
  color: var(--beige);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(15, 46, 43, 0.88);
  border-bottom: 1px solid rgba(201, 161, 90, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white-soft);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--green-secondary);
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 30px;
  box-shadow: 0 0 24px rgba(201, 161, 90, 0.35);
}

.brand-logo {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(201, 161, 90, 0.35));
}

.main-nav {
  display: flex;
  gap: clamp(22px, 4vw, 52px);
  color: var(--white-soft);
  font-size: 1.15rem;
  font-weight: 700;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

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

.main-nav a {
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.header-cta:hover {
  color: var(--gold);
}

.main-nav a.active {
  border-bottom-color: var(--gold);
}

.header-cta {
  padding: 10px 18px;
  border: 1px solid rgba(201, 161, 90, 0.65);
  color: var(--beige);
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  min-height: 86vh;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 72px) 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(15, 46, 43, 0.94), rgba(15, 46, 43, 0.58)),
    repeating-linear-gradient(90deg, rgba(201, 161, 90, 0.08) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(201, 161, 90, 0.25);
  transform: rotate(45deg);
  box-shadow: 0 0 70px rgba(201, 161, 90, 0.18);
}

.hero-content,
.hero-stage,
.section,
.stats-band,
.cta-section {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--white-soft);
  font-size: clamp(4.7rem, 13vw, 10rem);
  text-shadow:
    0 0 12px rgba(201, 161, 90, 0.55),
    0 0 34px rgba(201, 161, 90, 0.25);
}

h2 {
  margin-bottom: 18px;
  color: var(--white-soft);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--white-soft);
  font-size: 1.25rem;
}

.hero-text {
  max-width: 650px;
  color: rgba(232, 225, 216, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  font-weight: 800;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 28px rgba(201, 161, 90, 0.35);
}

.button-primary:hover {
  background: var(--gold-dark);
  color: var(--white-soft);
}

.button-secondary {
  color: var(--gold);
  background: rgba(28, 63, 58, 0.5);
}

.button-secondary:hover {
  background: var(--green-secondary);
}

.hero-stage {
  min-height: 560px;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed rgba(201, 161, 90, 0.8);
  background:
    linear-gradient(135deg, rgba(201, 161, 90, 0.16), rgba(28, 63, 58, 0.72)),
    var(--green-secondary);
  color: rgba(248, 243, 234, 0.74);
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-photo {
  display: block;
  width: min(100%, 460px);
  height: 560px;
  min-height: 560px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 0 72px 0 72px;
  border: 1px solid rgba(201, 161, 90, 0.8);
  box-shadow: var(--shadow), 0 0 40px rgba(201, 161, 90, 0.18);
}

.score-card {
  position: absolute;
  left: 0;
  bottom: 54px;
  min-width: 220px;
  padding: 18px 22px;
  background: rgba(232, 225, 216, 0.94);
  color: var(--ink);
  border-left: 6px solid var(--gold);
  box-shadow: var(--shadow);
}

.score-card span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.score-card strong {
  display: block;
  color: var(--green-deep);
  font-size: 2.4rem;
  line-height: 1;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--beige);
  color: var(--ink);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.stats-band div {
  padding: 26px clamp(18px, 5vw, 72px);
  border-right: 1px solid rgba(156, 122, 60, 0.26);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong {
  display: block;
  color: var(--green-deep);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

.stats-band span {
  color: var(--gold-dark);
  font-weight: 800;
}

.hours-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 58px) clamp(20px, 5vw, 72px);
  background: var(--green-secondary);
  border-bottom: 1px solid rgba(201, 161, 90, 0.28);
}

.hours-band h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.hours-list {
  display: grid;
  gap: 12px;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(15, 46, 43, 0.62);
}

.hours-list strong {
  color: var(--white-soft);
}

.hours-list span {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.section {
  padding: clamp(62px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.page-hero {
  position: relative;
  padding: clamp(70px, 11vw, 132px) clamp(20px, 5vw, 72px) clamp(54px, 8vw, 88px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(15, 46, 43, 0.96), rgba(28, 63, 58, 0.84)),
    repeating-linear-gradient(90deg, rgba(201, 161, 90, 0.08) 0 1px, transparent 1px 80px);
  border-bottom: 1px solid rgba(201, 161, 90, 0.28);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  top: 44px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 161, 90, 0.26);
  transform: rotate(45deg);
  box-shadow: 0 0 62px rgba(201, 161, 90, 0.18);
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(232, 225, 216, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.section-dark {
  background: var(--green-secondary);
}

.legal-section {
  background: var(--beige);
  color: var(--ink);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 44px;
  color: var(--green-deep);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: rgba(16, 33, 31, 0.82);
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.legal-placeholder {
  color: #8F2E1C;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.split-content p,
.cta-section p {
  color: rgba(232, 225, 216, 0.78);
}

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

.games-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.game-card {
  padding: 16px;
  background: rgba(15, 46, 43, 0.72);
  border: 1px solid rgba(201, 161, 90, 0.24);
}

.card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  object-fit: contain;
  border: 1px solid rgba(201, 161, 90, 0.42);
  background: var(--green-deep);
  margin-bottom: 18px;
}

.game-card p,
.event-panel p {
  margin-bottom: 0;
  color: rgba(232, 225, 216, 0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 800;
}

.text-link:hover {
  color: var(--white-soft);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  background: var(--beige);
  color: var(--ink);
}

.split-section h2 {
  color: var(--green-deep);
}

.split-content p {
  color: rgba(16, 33, 31, 0.76);
}

.photo-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.tall-photo {
  grid-row: span 2;
  min-height: 520px;
}

.small-photo {
  min-height: 252px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(15, 46, 43, 0.08);
  color: var(--green-deep);
  font-weight: 800;
}

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

.event-panel {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(201, 161, 90, 0.28);
  background:
    linear-gradient(180deg, rgba(201, 161, 90, 0.13), transparent),
    rgba(15, 46, 43, 0.56);
}

.event-number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.pricing-section {
  background: var(--beige);
  color: var(--ink);
}

.pricing-section h2 {
  color: var(--green-deep);
}

.pricing-section .section-heading p:not(.eyebrow) {
  color: rgba(16, 33, 31, 0.74);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(156, 122, 60, 0.28);
  background: rgba(15, 46, 43, 0.06);
  border-radius: 18px;
}

.pricing-group > h3 {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-secondary);
  color: var(--white-soft);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
}

.price-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(156, 122, 60, 0.28);
  background: rgba(15, 46, 43, 0.08);
  border-top: 6px solid var(--gold);
}

.price-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  color: var(--green-deep);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.price-card p {
  margin: 10px 0 0;
  color: rgba(16, 33, 31, 0.72);
  font-weight: 800;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 34px;
  align-items: center;
  padding: clamp(56px, 8vw, 94px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(15, 46, 43, 0.95), rgba(28, 63, 58, 0.92)),
    var(--green-deep);
  border-top: 1px solid rgba(201, 161, 90, 0.3);
}

.contact-box {
  padding: 26px;
  background: var(--beige);
  color: var(--ink);
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow);
}

.contact-box p {
  color: var(--ink);
}

.contact-box .button {
  width: 100%;
  margin-top: 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  background: var(--beige);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--green-secondary);
  border: 1px solid rgba(201, 161, 90, 0.32);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--gold);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 161, 90, 0.42);
  background: rgba(15, 46, 43, 0.72);
  color: var(--white-soft);
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(232, 225, 216, 0.52);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact-form .button {
  width: fit-content;
  cursor: pointer;
}

.contact-info {
  position: sticky;
  top: 98px;
}

.loyalty-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  background: var(--beige);
  color: var(--ink);
}

.loyalty-auth,
.loyalty-card,
.admin-panel {
  border: 1px solid rgba(156, 122, 60, 0.3);
  background: rgba(15, 46, 43, 0.08);
  box-shadow: var(--shadow);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid rgba(156, 122, 60, 0.3);
}

.auth-tab {
  min-height: 54px;
  border: 0;
  border-right: 1px solid rgba(156, 122, 60, 0.3);
  background: rgba(15, 46, 43, 0.08);
  color: var(--green-deep);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.auth-tab:last-child {
  border-right: 0;
}

.auth-tab.active {
  background: var(--green-secondary);
  color: var(--gold);
}

.loyalty-form {
  display: none;
  box-shadow: none;
}

.loyalty-form.active {
  display: grid;
}

.password-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

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

.form-message {
  min-height: 28px;
  margin: 0;
  padding: 16px clamp(22px, 4vw, 34px);
  color: var(--green-deep);
  font-weight: 800;
}

.form-message.error {
  color: #8F2E1C;
}

.contact-form #contactMessage:not(:empty) {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(156, 122, 60, 0.42);
  background: rgba(201, 161, 90, 0.16);
  color: var(--white-soft);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form #contactMessage.error {
  border-color: rgba(143, 46, 28, 0.45);
  background: rgba(143, 46, 28, 0.1);
}

.loyalty-card {
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(15, 46, 43, 0.95), rgba(28, 63, 58, 0.9)),
    var(--green-secondary);
  color: var(--beige);
}

.loyalty-card.hidden,
.loyalty-auth.hidden,
.admin-panel.hidden {
  display: none;
}

.loyalty-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.loyalty-card-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.loyalty-main {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.qr-card,
.points-panel,
.referral-panel {
  padding: 22px;
  border: 1px solid rgba(201, 161, 90, 0.32);
  background: rgba(15, 46, 43, 0.62);
}

.member-level {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.member-level span {
  min-width: 86px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 161, 90, 0.78);
  background: rgba(201, 161, 90, 0.2);
  color: var(--gold);
  text-align: center;
  font-weight: 900;
}

.member-level strong {
  color: var(--white-soft);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.qr-code {
  display: grid;
  width: 220px;
  min-height: 220px;
  place-items: center;
  margin: 0 auto 18px;
  padding: 12px;
  background: var(--white-soft);
}

.qr-code canvas,
.qr-code img {
  width: 196px;
  height: 196px;
}

.qr-token,
.scan-status {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  color: rgba(232, 225, 216, 0.78);
  text-align: center;
  font-weight: 800;
}

.scan-status {
  margin-top: 8px;
  color: var(--gold);
}

.points-count {
  display: block;
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.9;
}

.points-panel p {
  color: rgba(232, 225, 216, 0.78);
  font-weight: 900;
}

.progress-shell {
  width: 100%;
  height: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 90, 0.8);
  background: rgba(248, 243, 234, 0.12);
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--white-soft));
  transition: width 0.25s ease;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  color: rgba(232, 225, 216, 0.78);
  font-weight: 900;
}

.reward-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.reward-step {
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(201, 161, 90, 0.24);
  background: rgba(248, 243, 234, 0.08);
}

.reward-step strong,
.reward-step span {
  display: block;
}

.reward-step strong {
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.reward-step span {
  margin-top: 8px;
  color: rgba(232, 225, 216, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.reward-step.unlocked {
  border-color: rgba(201, 161, 90, 0.78);
  background: rgba(201, 161, 90, 0.2);
}

.reward-step.unlocked span {
  color: var(--white-soft);
}

.reward-step.next {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.referral-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
}

.referral-panel h3 {
  margin-bottom: 8px;
  color: var(--white-soft);
  font-size: clamp(2rem, 4vw, 3rem);
}

.referral-panel p:not(.eyebrow),
.referral-box label,
.referral-box p {
  color: rgba(232, 225, 216, 0.76);
  font-weight: 800;
}

.referral-box {
  display: grid;
  gap: 10px;
}

.referral-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.referral-copy input {
  min-width: 0;
  border: 1px solid rgba(201, 161, 90, 0.5);
  background: rgba(248, 243, 234, 0.1);
  color: var(--white-soft);
  font: inherit;
  font-weight: 800;
  padding: 13px 14px;
}

.referral-box p {
  margin-bottom: 0;
  color: var(--gold);
}

.admin-panel {
  position: sticky;
  top: 98px;
  padding: clamp(22px, 4vw, 34px);
}

.admin-panel:not(.hidden) {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  margin: 0 auto;
}

.admin-panel h2 {
  color: var(--green-deep);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.admin-panel p:not(.eyebrow) {
  color: rgba(16, 33, 31, 0.72);
}

.admin-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.scanner-video {
  display: block;
  width: 100%;
  margin-top: 18px;
  border: 1px solid rgba(156, 122, 60, 0.35);
  background: var(--green-deep);
}

.scanner-video.hidden {
  display: none;
}

.admin-panel .form-message {
  padding: 14px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, 0.7fr) minmax(240px, 0.8fr);
  gap: 28px;
  align-items: start;
  padding: clamp(34px, 6vw, 58px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(15, 46, 43, 0.98), rgba(10, 28, 26, 1)),
    var(--green-deep);
  border-top: 1px solid rgba(201, 161, 90, 0.42);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white-soft);
  font-size: 1.15rem;
}

.footer-brand p,
.footer-contact p {
  margin-bottom: 0;
  color: rgba(232, 225, 216, 0.72);
}

.footer-contact strong {
  color: var(--white-soft);
}

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

.footer-links a {
  color: rgba(232, 225, 216, 0.76);
  font-weight: 800;
}

.footer-links a:hover,
.footer-cta:hover {
  color: var(--white-soft);
}

.footer-cta {
  display: inline-flex;
  margin-top: 18px;
  padding: 11px 16px;
  border: 1px solid rgba(201, 161, 90, 0.72);
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero,
  .split-section,
  .hours-band,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-photo {
    min-height: 360px;
    margin-left: 0;
  }

  .score-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -42px;
    margin-left: 22px;
  }

  .game-grid,
  .event-layout,
  .games-catalog,
  .pricing-grid,
  .contact-section,
  .loyalty-section,
  .loyalty-main,
  .referral-panel,
  .reward-steps {
    grid-template-columns: 1fr;
  }

  .games-catalog {
    gap: 18px;
  }

  .contact-info {
    position: static;
  }

  .admin-panel {
    position: static;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(156, 122, 60, 0.26);
  }

  .stats-band div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: sticky;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    flex: 1;
  }

  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201, 161, 90, 0.7);
    background: rgba(28, 63, 58, 0.85);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    order: 2;
  }

  .nav-toggle-label:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .nav-toggle-label span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white-soft);
    border-radius: 10px;
  }

  .nav-toggle:checked + .nav-toggle-label {
    transform: rotate(90deg);
    border-color: var(--gold);
  }

  .main-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(201, 161, 90, 0.18);
  }

  .nav-toggle:checked + .nav-toggle-label + .main-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-actions,
  .admin-actions,
  .button,
  .contact-form .button,
  .loyalty-card-head .button {
    width: 100%;
  }

  .loyalty-form-grid,
  .loyalty-card-head,
  .referral-copy,
  .progress-label {
    grid-template-columns: 1fr;
    display: grid;
  }

  .qr-code {
    width: min(100%, 220px);
  }

  .photo-wall {
    grid-template-columns: 1fr;
  }

  .hours-list p {
    display: grid;
    gap: 4px;
  }

  .tall-photo,
  .small-photo {
    grid-row: auto;
    min-height: 240px;
  }
}
