
:root {
  --bg: #030503;
  --bg-soft: #071007;
  --panel: rgba(7, 18, 8, 0.78);
  --panel-strong: rgba(10, 24, 12, 0.92);
  --text: #f3fff5;
  --muted: #b7c7bb;
  --green: #39ff14;
  --green-2: #00c853;
  --green-3: #0b7f28;
  --purple: #b58cff;
  --purple-2: #6e3cc9;
  --silver: #dce2e7;
  --line: rgba(57, 255, 20, 0.22);
  --shadow: 0 0 24px rgba(57, 255, 20, 0.22), 0 0 60px rgba(181, 140, 255, 0.08);
  --max: 1180px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(57, 255, 20, 0.14), transparent 34rem),
    radial-gradient(circle at 80% 0%, rgba(181, 140, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #000 0%, var(--bg) 50%, #010201 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  z-index: -1;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 1000;
  background: var(--green);
  color: #001400;
  padding: .75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 220px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 0 22px rgba(57,255,20,.4);
}

.brand-text {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand-text strong {
  font-size: .98rem;
  color: var(--green);
  text-shadow: 0 0 18px rgba(57,255,20,.55);
}

.brand-text span {
  font-size: .72rem;
  color: var(--silver);
  letter-spacing: .3em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav-menu a {
  color: var(--muted);
  padding: .7rem .9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  background: rgba(57,255,20,.1);
  box-shadow: inset 0 0 0 1px rgba(57,255,20,.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(57,255,20,.08);
  color: var(--text);
  border-radius: 12px;
  padding: .65rem .8rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(57,255,20,.42);
  background: rgba(57,255,20,.08);
  color: var(--text);
  font-weight: 900;
  letter-spacing: .015em;
  box-shadow: 0 0 0 transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: rgba(57,255,20,.14);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #001700;
  border-color: rgba(200,255,200,.8);
  text-shadow: none;
}

.btn-secondary {
  border-color: rgba(181,140,255,.55);
  background: rgba(181,140,255,.1);
}

.btn-ghost {
  border-color: rgba(255,255,255,.16);
  color: var(--muted);
  background: rgba(255,255,255,.04);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 7rem) 0 clamp(2.5rem, 6vw, 6rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10rem -20vw auto auto;
  width: min(760px, 82vw);
  height: min(760px, 82vw);
  background-image: url("../images/glow-mark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .72;
  transform: rotate(8deg);
  z-index: -1;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--green);
  background: rgba(57,255,20,.08);
  border: 1px solid rgba(57,255,20,.2);
  border-radius: 999px;
  padding: .42rem .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
}

.eyebrow::before {
  content: "";
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.75rem);
  margin-top: 1rem;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(90deg, #fff 0%, var(--green) 48%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 62ch;
  margin: 1.15rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.hero-card {
  position: relative;
  background: linear-gradient(145deg, rgba(57,255,20,.1), rgba(181,140,255,.08)), var(--panel);
  border: 1px solid rgba(57,255,20,.24);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(1rem, 2vw, 1.4rem);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(57,255,20,.5), transparent 28%, rgba(181,140,255,.35));
  opacity: .45;
  z-index: -1;
  filter: blur(14px);
}

.hero-logo {
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(57,255,20,.28);
  border: 1px solid rgba(255,255,255,.08);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}

.stat {
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: .9rem;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 1.25rem;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  position: relative;
}

.section-header {
  display: grid;
  gap: .85rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  text-transform: uppercase;
}

.section-header p,
.card p,
.rich-text p,
.list-muted li {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--panel);
  border: 1px solid rgba(57,255,20,.18);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  box-shadow: 0 12px 50px rgba(0,0,0,.28);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: .55rem;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(57,255,20,.18), rgba(181,140,255,.12));
  border: 1px solid rgba(57,255,20,.24);
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.game-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,255,20,.25), transparent 62%);
}

.game-card .btn {
  margin-top: 1rem;
}

.band {
  background:
    linear-gradient(90deg, rgba(57,255,20,.1), rgba(181,140,255,.08)),
    rgba(0,0,0,.28);
  border-block: 1px solid rgba(57,255,20,.16);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(57,255,20,.16), rgba(181,140,255,.12));
  border: 1px solid rgba(57,255,20,.24);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.steps {
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #001700;
  font-weight: 1000;
  box-shadow: 0 0 18px rgba(57,255,20,.38);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.contact-card a {
  color: var(--green);
  font-weight: 900;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: .35rem;
  font-weight: 800;
  color: var(--silver);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(57,255,20,.22);
  background: rgba(0,0,0,.42);
  color: var(--text);
  border-radius: 14px;
  padding: .9rem 1rem;
  font: inherit;
}

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

.alert {
  border: 1px solid rgba(181,140,255,.28);
  background: rgba(181,140,255,.08);
  color: var(--muted);
  border-radius: 18px;
  padding: 1rem;
}

.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.rich-text {
  max-width: 900px;
}

.rich-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.rich-text ul {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(57,255,20,.18);
  background: rgba(0,0,0,.76);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 2rem;
}

.footer-logo {
  width: min(360px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 30px rgba(57,255,20,.16);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: .5rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
  padding-top: 1.2rem;
  color: var(--muted);
  font-size: .9rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}

.badge {
  color: var(--silver);
  border: 1px solid rgba(57,255,20,.18);
  background: rgba(57,255,20,.07);
  border-radius: 999px;
  padding: .42rem .7rem;
  font-weight: 800;
  font-size: .82rem;
}


.game-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 45% 25%, rgba(57,255,20,.18), transparent 56%),
    rgba(0,0,0,.34);
  border: 1px solid rgba(57,255,20,.28);
  box-shadow:
    inset 0 0 22px rgba(57,255,20,.09),
    0 0 28px rgba(57,255,20,.18);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.game-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.game-icon img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(57,255,20,.28));
  transform: scale(1);
  transition: transform .18s ease, filter .18s ease;
}

.game-card:hover .game-icon img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 18px rgba(57,255,20,.42));
}

.game-card.featured {
  border-color: rgba(245,211,90,.28);
  background:
    linear-gradient(145deg, rgba(245,211,90,.08), rgba(57,255,20,.08)),
    var(--panel);
}


/* Animation upgrade */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(.6deg); }
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(57,255,20,.20),
      0 0 60px rgba(181,140,255,.08);
  }
  50% {
    box-shadow:
      0 0 34px rgba(57,255,20,.38),
      0 0 88px rgba(181,140,255,.20);
  }
}

@keyframes glowDrift {
  0% { transform: translate3d(0,0,0) rotate(8deg) scale(1); }
  50% { transform: translate3d(-22px,18px,0) rotate(13deg) scale(1.04); }
  100% { transform: translate3d(0,0,0) rotate(8deg) scale(1); }
}

@keyframes shineSweep {
  0% { transform: translateX(-140%) skewX(-18deg); opacity: 0; }
  25% { opacity: .75; }
  100% { transform: translateX(180%) skewX(-18deg); opacity: 0; }
}

@keyframes iconGlow {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 10px rgba(57,255,20,.22)); }
  50% { transform: translateY(-4px) scale(1.04); filter: drop-shadow(0 0 18px rgba(57,255,20,.42)); }
}

@keyframes statPop {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero::before {
  animation: glowDrift 12s ease-in-out infinite;
}

.hero-card {
  animation: heroFloat 6.5s ease-in-out infinite, neonPulse 4.5s ease-in-out infinite;
}

.hero-logo {
  transition: transform .28s ease, filter .28s ease;
}

.hero-card:hover .hero-logo {
  transform: scale(1.025);
  filter: saturate(1.12) contrast(1.05);
}

.stat {
  animation: statPop .7s ease both;
}

.stat:nth-child(2) {
  animation-delay: .12s;
}

.stat:nth-child(3) {
  animation-delay: .24s;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: -45%;
  left: 0;
  width: 42%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transform: translateX(-140%) skewX(-18deg);
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  animation: shineSweep .85s ease;
}

.game-icon img {
  animation: iconGlow 4s ease-in-out infinite;
}

.game-card:nth-child(2) .game-icon img {
  animation-delay: .35s;
}

.game-card:nth-child(3) .game-icon img {
  animation-delay: .7s;
}

.game-card:nth-child(4) .game-icon img {
  animation-delay: 1.05s;
}

.game-card:nth-child(5) .game-icon img {
  animation-delay: 1.4s;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-on-scroll.reveal-delay-2 {
  transition-delay: .16s;
}

.reveal-on-scroll.reveal-delay-3 {
  transition-delay: .24s;
}

.site-header {
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.header-scrolled {
  background: rgba(0,0,0,.90);
  box-shadow: 0 12px 40px rgba(0,0,0,.42), 0 0 22px rgba(57,255,20,.10);
  border-bottom-color: rgba(57,255,20,.32);
}

.card,
.game-card {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.card:hover,
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57,255,20,.38);
  box-shadow:
    0 18px 60px rgba(0,0,0,.36),
    0 0 28px rgba(57,255,20,.16);
}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: fixed;
    inset: 82px 16px auto 16px;
    background: rgba(0,0,0,.94);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: .75rem;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    border-radius: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-wrap,
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand-text {
    display: none;
  }

  .brand-link {
    min-width: auto;
  }

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

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}


/* Site logo icon upgrade */
.game-icon {
  width: 96px;
  height: 96px;
}

.game-icon img {
  width: 92px;
  height: 92px;
}

.game-card h3 {
  letter-spacing: -.015em;
}


/* Google Business Profile/local SEO card */
.gbp-card {
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(145deg, rgba(57,255,20,.12), rgba(181,140,255,.09)),
    var(--panel-strong);
  border: 1px solid rgba(57,255,20,.28);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.gbp-card .gbp-details {
  display: grid;
  gap: .7rem;
  color: var(--muted);
}

.gbp-card .gbp-details strong {
  color: var(--text);
}

.gbp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .4rem;
}

.local-map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 22px;
  filter: grayscale(.08) contrast(1.05);
  box-shadow: 0 18px 60px rgba(0,0,0,.36);
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  border: 1px solid rgba(57,255,20,.22);
  background: rgba(57,255,20,.08);
  color: var(--silver);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-weight: 900;
  font-size: .85rem;
}


/* Non-iframe map card fix */
.map-card {
  overflow: hidden;
  background: var(--panel-strong);
  border: 1px solid rgba(57,255,20,.28);
  border-radius: calc(var(--radius) + 4px);
  padding: 1rem;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.map-card-link {
  display: grid;
  color: inherit;
}

.map-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(57,255,20,.42);
  box-shadow:
    0 18px 60px rgba(0,0,0,.38),
    0 0 34px rgba(57,255,20,.20);
}

.map-preview-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(57,255,20,.20);
  background: #020702;
}

.map-fallback {
  display: grid;
  gap: .85rem;
  padding-top: 1rem;
}

.map-fallback h3 {
  font-size: 1.45rem;
}

.map-fallback p {
  color: var(--muted);
  margin: 0;
}

.map-card .btn {
  pointer-events: none;
}

@media (max-width: 980px) {
  .map-preview-image {
    min-height: 260px;
  }
}


/* Visible map card hard fix */
.map-card,
.map-card-link,
.map-preview-image {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none;
}

.map-card {
  background:
    radial-gradient(circle at 50% 15%, rgba(57,255,20,.20), transparent 45%),
    linear-gradient(145deg, rgba(22,77,27,.92), rgba(5,13,6,.96));
  min-height: 100%;
}

.map-preview-image {
  display: block !important;
  width: 100%;
  min-height: 360px;
  background: #123f18;
  border: 1px solid rgba(57,255,20,.42);
  box-shadow: inset 0 0 34px rgba(57,255,20,.16);
}

.map-fallback h3,
.map-fallback p {
  opacity: 1 !important;
  visibility: visible !important;
}


/* Distinct location cards */
.location-split-grid {
  align-items: stretch;
}

.business-info-card {
  background:
    linear-gradient(145deg, rgba(57,255,20,.13), rgba(8,24,10,.92)),
    var(--panel-strong);
}

.business-info-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.location-map-card {
  background:
    radial-gradient(circle at 50% 12%, rgba(57,255,20,.18), transparent 52%),
    rgba(3,12,4,.96);
}

.location-map-card .map-fallback h3 {
  color: var(--text);
}

.split-actions .btn-secondary {
  border-color: rgba(57,255,20,.36);
}

.business-info-card .btn-primary::before {
  content: "☎ ";
}

.business-info-card .btn-secondary::before {
  content: "☏ ";
}


/* Layout fixed after map-button update */
.location-map-card {
  display: grid;
}

.location-map-card .btn {
  pointer-events: auto !important;
}

.location-map-card .gbp-actions,
.location-map-card .split-actions {
  position: relative;
  z-index: 3;
}

.location-split-grid > .gbp-card,
.location-split-grid > .map-card {
  width: 100%;
}

.location-map-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57,255,20,.42);
  box-shadow:
    0 18px 60px rgba(0,0,0,.38),
    0 0 34px rgba(57,255,20,.20);
}


/* Header logo readability upgrade */
.nav-wrap {
  min-height: 104px;
}

.brand-link {
  gap: 1rem;
  min-width: 300px;
}

.brand-logo {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  box-shadow:
    0 0 26px rgba(57,255,20,.58),
    0 0 54px rgba(57,255,20,.20);
}

.brand-text {
  line-height: 1.08;
}

.brand-text strong {
  font-size: 1.18rem;
  letter-spacing: .12em;
  color: #39ff14;
  text-shadow:
    0 0 10px rgba(57,255,20,.72),
    0 0 24px rgba(57,255,20,.42);
}

.brand-text span {
  font-size: .86rem;
  color: #f3fff5;
  letter-spacing: .36em;
  text-shadow: 0 0 12px rgba(255,255,255,.16);
}

.site-header {
  border-bottom-color: rgba(57,255,20,.34);
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 92px;
  }

  .brand-link {
    min-width: auto;
  }

  .brand-logo {
    width: 74px;
    height: 74px;
    border-radius: 20px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text span {
    font-size: .72rem;
    letter-spacing: .28em;
  }

  .nav-menu {
    inset: 92px 16px auto 16px;
  }
}

@media (max-width: 620px) {
  .brand-text {
    display: grid;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-text strong {
    font-size: .84rem;
    letter-spacing: .08em;
  }

  .brand-text span {
    font-size: .62rem;
    letter-spacing: .18em;
  }
}


/* Personalized No Limit Sweepstakes copy/layout update */
.location-split-grid {
  align-items: stretch;
}

.business-info-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.map-card,
.location-map-card {
  display: grid;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(57,255,20,.18), transparent 52%),
    rgba(3,12,4,.96);
  border: 1px solid rgba(57,255,20,.28);
  border-radius: calc(var(--radius) + 4px);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.map-preview-image {
  display: block;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(57,255,20,.30);
  background: #123f18;
}

.map-fallback {
  display: grid;
  gap: .85rem;
  padding-top: 1rem;
}

.map-fallback p {
  color: var(--muted);
  margin: 0;
}

.location-map-card .btn {
  pointer-events: auto !important;
}

.rich-text .btn {
  margin-top: .5rem;
}

@media (max-width: 980px) {
  .map-preview-image {
    min-height: 260px;
  }
}


/* Active homepage game links */
.badge-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.badge-link:hover,
.badge-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(57,255,20,.76);
  box-shadow: 0 0 18px rgba(57,255,20,.30);
}

.game-card-anchor {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.game-card-anchor:hover,
.game-card-anchor:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(57,255,20,.78);
  box-shadow:
    0 22px 55px rgba(0,0,0,.45),
    0 0 30px rgba(57,255,20,.20);
}

.game-card-anchor .btn {
  width: fit-content;
  pointer-events: none;
}


/* Active game link rollover upgrade */
.game-quick-links {
  align-items: center;
}

.badge-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .18s ease,
    color .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.badge-link::before {
  content: "";
  position: absolute;
  inset: -80% auto -80% -60%;
  width: 52%;
  transform: rotate(22deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.46),
    transparent
  );
  opacity: 0;
  transition: left .42s ease, opacity .18s ease;
  z-index: -1;
}

.badge-link:hover,
.badge-link:focus-visible {
  color: #061206;
  background:
    linear-gradient(135deg, rgba(57,255,20,.98), rgba(245,211,90,.94));
  border-color: rgba(245,211,90,.95);
  box-shadow:
    0 0 18px rgba(57,255,20,.45),
    0 0 38px rgba(245,211,90,.20);
  transform: translateY(-3px) scale(1.035);
}

.badge-link:hover::before,
.badge-link:focus-visible::before {
  left: 120%;
  opacity: 1;
}

.game-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(57,255,20,.24), transparent 48%),
    linear-gradient(135deg, rgba(57,255,20,.10), rgba(245,211,90,.06), transparent 62%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
  z-index: -1;
}

.game-card::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -65%;
  width: 44%;
  height: 170%;
  transform: rotate(24deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  opacity: 0;
  transition: left .55s ease, opacity .18s ease;
  pointer-events: none;
}

.game-card:hover,
.game-card:focus-within,
.game-card-anchor:hover,
.game-card-anchor:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(57,255,20,.82);
  box-shadow:
    0 24px 60px rgba(0,0,0,.52),
    0 0 24px rgba(57,255,20,.26),
    inset 0 0 0 1px rgba(245,211,90,.16);
}

.game-card:hover::before,
.game-card:focus-within::before,
.game-card-anchor:hover::before,
.game-card-anchor:focus-visible::before {
  opacity: 1;
}

.game-card:hover::after,
.game-card:focus-within::after,
.game-card-anchor:hover::after,
.game-card-anchor:focus-visible::after {
  left: 125%;
  opacity: 1;
}

.game-card:hover .game-icon,
.game-card:focus-within .game-icon,
.game-card-anchor:hover .game-icon,
.game-card-anchor:focus-visible .game-icon {
  transform: translateY(-4px) scale(1.06);
  filter:
    drop-shadow(0 0 14px rgba(57,255,20,.42))
    drop-shadow(0 0 24px rgba(245,211,90,.18));
}

.game-icon {
  transition: transform .2s ease, filter .2s ease;
}

.game-card .btn,
.game-card-anchor .btn {
  position: relative;
  overflow: hidden;
  transition:
    transform .18s ease,
    color .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.game-card:hover .btn,
.game-card:focus-within .btn,
.game-card-anchor:hover .btn,
.game-card-anchor:focus-visible .btn {
  color: #061206;
  background:
    linear-gradient(135deg, rgba(57,255,20,.98), rgba(245,211,90,.96));
  border-color: rgba(245,211,90,.96);
  box-shadow:
    0 0 18px rgba(57,255,20,.38),
    0 0 28px rgba(245,211,90,.18);
  transform: translateY(-1px);
}

.game-card h3,
.game-card-anchor h3 {
  transition: color .18s ease, text-shadow .18s ease;
}

.game-card:hover h3,
.game-card:focus-within h3,
.game-card-anchor:hover h3,
.game-card-anchor:focus-visible h3 {
  color: #39ff14;
  text-shadow:
    0 0 10px rgba(57,255,20,.62),
    0 0 22px rgba(57,255,20,.28);
}

.game-card a:focus-visible,
.game-card-anchor:focus-visible,
.badge-link:focus-visible {
  outline: 3px solid rgba(245,211,90,.92);
  outline-offset: 4px;
}

@media (hover: none) {
  .badge-link:hover,
  .game-card:hover,
  .game-card-anchor:hover {
    transform: none;
  }
}


/* Match hero game pill rollovers to primary action buttons */
.hero .game-quick-links,
.hero .badge-row {
  gap: .8rem;
}

.hero .game-pill-link,
.hero .badge-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #f3fff5;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(57,255,20,.36);
  background:
    radial-gradient(circle at 50% 0%, rgba(57,255,20,.16), transparent 55%),
    rgba(7,36,9,.82);
  box-shadow:
    inset 0 0 0 1px rgba(57,255,20,.10),
    0 0 0 rgba(57,255,20,0);
  transition:
    transform .18s ease,
    color .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    text-shadow .18s ease;
}

.hero .game-pill-link::before,
.hero .badge-link::before {
  content: "";
  position: absolute;
  inset: -90% auto -90% -70%;
  width: 58%;
  transform: rotate(24deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.58),
    transparent
  );
  opacity: 0;
  z-index: -1;
  transition: left .48s ease, opacity .18s ease;
}

.hero .game-pill-link::after,
.hero .badge-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.22), transparent 48%),
    linear-gradient(135deg, rgba(57,255,20,.92), rgba(245,211,90,.92));
  opacity: 0;
  z-index: -2;
  transition: opacity .18s ease;
}

.hero .game-pill-link:hover,
.hero .game-pill-link:focus-visible,
.hero .badge-link:hover,
.hero .badge-link:focus-visible {
  color: #061206;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.34), transparent 50%),
    linear-gradient(135deg, #39ff14, #f5d35a);
  border-color: rgba(245,211,90,.98);
  box-shadow:
    0 0 16px rgba(57,255,20,.62),
    0 0 34px rgba(57,255,20,.28),
    0 0 52px rgba(245,211,90,.18),
    inset 0 0 0 1px rgba(255,255,255,.22);
  text-shadow: none;
  transform: translateY(-4px) scale(1.045);
}

.hero .game-pill-link:hover::before,
.hero .game-pill-link:focus-visible::before,
.hero .badge-link:hover::before,
.hero .badge-link:focus-visible::before {
  left: 125%;
  opacity: 1;
}

.hero .game-pill-link:hover::after,
.hero .game-pill-link:focus-visible::after,
.hero .badge-link:hover::after,
.hero .badge-link:focus-visible::after {
  opacity: 1;
}

.hero .game-pill-link:active,
.hero .badge-link:active {
  transform: translateY(-1px) scale(.99);
  box-shadow:
    0 0 12px rgba(57,255,20,.42),
    inset 0 0 12px rgba(0,0,0,.20);
}

.hero .game-pill-link:focus-visible,
.hero .badge-link:focus-visible {
  outline: 3px solid rgba(245,211,90,.98);
  outline-offset: 4px;
}

@media (hover: none) {
  .hero .game-pill-link:hover,
  .hero .badge-link:hover {
    transform: none;
  }
}


/* Strong hero game pill rollover fix - matches main button feel */
.hero .badge-row.game-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem !important;
  align-items: center;
}

.hero .badge-row.game-quick-links a.badge,
.hero .badge-row a.hero-game-link,
.hero a.game-pill-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.08rem !important;
  border-radius: 999px !important;
  color: #f3fff5 !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  letter-spacing: .02em;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
  cursor: pointer;
  border: 1px solid rgba(57,255,20,.42) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(57,255,20,.17), transparent 55%),
    linear-gradient(135deg, rgba(7,55,12,.96), rgba(3,18,5,.92)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(57,255,20,.10),
    0 0 0 rgba(57,255,20,0) !important;
  transition:
    transform .18s ease,
    color .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    text-shadow .18s ease !important;
}

.hero .badge-row.game-quick-links a.badge::before,
.hero .badge-row a.hero-game-link::before,
.hero a.game-pill-link::before {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -70%;
  width: 60%;
  transform: rotate(24deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.62),
    transparent
  );
  opacity: 0;
  z-index: -1;
  transition: left .48s ease, opacity .18s ease;
}

.hero .badge-row.game-quick-links a.badge::after,
.hero .badge-row a.hero-game-link::after,
.hero a.game-pill-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.28), transparent 48%),
    linear-gradient(135deg, #39ff14 0%, #1ee94a 42%, #f5d35a 100%);
  opacity: 0;
  z-index: -2;
  transition: opacity .18s ease;
}

.hero .badge-row.game-quick-links a.badge:hover,
.hero .badge-row.game-quick-links a.badge:focus-visible,
.hero .badge-row a.hero-game-link:hover,
.hero .badge-row a.hero-game-link:focus-visible,
.hero a.game-pill-link:hover,
.hero a.game-pill-link:focus-visible {
  color: #061206 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.34), transparent 50%),
    linear-gradient(135deg, #39ff14, #f5d35a) !important;
  border-color: rgba(245,211,90,.98) !important;
  box-shadow:
    0 0 16px rgba(57,255,20,.70),
    0 0 34px rgba(57,255,20,.32),
    0 0 54px rgba(245,211,90,.20),
    inset 0 0 0 1px rgba(255,255,255,.28) !important;
  text-shadow: none !important;
  transform: translateY(-4px) scale(1.055) !important;
}

.hero .badge-row.game-quick-links a.badge:hover::before,
.hero .badge-row.game-quick-links a.badge:focus-visible::before,
.hero .badge-row a.hero-game-link:hover::before,
.hero .badge-row a.hero-game-link:focus-visible::before,
.hero a.game-pill-link:hover::before,
.hero a.game-pill-link:focus-visible::before {
  left: 125%;
  opacity: 1;
}

.hero .badge-row.game-quick-links a.badge:hover::after,
.hero .badge-row.game-quick-links a.badge:focus-visible::after,
.hero .badge-row a.hero-game-link:hover::after,
.hero .badge-row a.hero-game-link:focus-visible::after,
.hero a.game-pill-link:hover::after,
.hero a.game-pill-link:focus-visible::after {
  opacity: 1;
}

.hero .badge-row.game-quick-links a.badge:active,
.hero .badge-row a.hero-game-link:active,
.hero a.game-pill-link:active {
  transform: translateY(-1px) scale(.99) !important;
  box-shadow:
    0 0 12px rgba(57,255,20,.45),
    inset 0 0 14px rgba(0,0,0,.28) !important;
}

.hero .badge-row.game-quick-links a.badge:focus-visible,
.hero .badge-row a.hero-game-link:focus-visible,
.hero a.game-pill-link:focus-visible {
  outline: 3px solid rgba(245,211,90,.98) !important;
  outline-offset: 4px;
}

@media (hover: none) {
  .hero .badge-row.game-quick-links a.badge:hover,
  .hero .badge-row a.hero-game-link:hover,
  .hero a.game-pill-link:hover {
    transform: none !important;
  }
}


/* premium header composition */
.site-header {
  overflow: visible !important;
  background:
    radial-gradient(circle at 18% 50%, rgba(57,255,20,.16), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,.98), rgba(1,8,2,.97)) !important;
  border-bottom: 1px solid rgba(57,255,20,.46) !important;
  box-shadow:
    0 0 34px rgba(57,255,20,.10),
    inset 0 -1px 0 rgba(245,211,90,.10);
}

.nav-wrap {
  width: min(1540px, calc(100% - 48px));
  min-height: 170px !important;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: minmax(560px, 790px) 1fr auto;
  align-items: center !important;
  gap: clamp(1.25rem, 2.2vw, 2.6rem) !important;
  overflow: visible !important;
}

.brand-link.nls-luxury-brand {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  min-width: 0 !important;
  text-decoration: none;
  overflow: visible !important;
}

.nls-luxury-logo {
  display: block;
  width: clamp(620px, 44vw, 820px) !important;
  height: auto !important;
  max-height: 148px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 26px;
  border: 1px solid rgba(57,255,20,.62);
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 0 30px rgba(57,255,20,.60),
    0 0 92px rgba(57,255,20,.25),
    0 0 34px rgba(180,156,255,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.brand-link.nls-luxury-brand:hover .nls-luxury-logo,
.brand-link.nls-luxury-brand:focus-visible .nls-luxury-logo {
  transform: translateY(-2px) scale(1.008);
  border-color: rgba(245,211,90,.80);
  box-shadow:
    0 0 0 1px rgba(245,211,90,.18) inset,
    0 0 38px rgba(57,255,20,.82),
    0 0 110px rgba(57,255,20,.36),
    0 0 40px rgba(180,156,255,.16);
}

.brand-logo-wide,
.brand-logo,
.brand-text,
.brand-built-logo,
.brand-mark-wrap,
.brand-wordmark,
.brand-rectangle-logo,
.brand-masterpiece-image {
  display: none !important;
}

.nav-menu {
  justify-self: center;
  gap: .5rem !important;
}

.nav-menu a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  letter-spacing: .015em;
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  transform: translateY(-2px);
  color: #061206 !important;
  background: linear-gradient(135deg, var(--nls-lime), var(--nls-gold)) !important;
  border-color: rgba(245,211,90,.90) !important;
  box-shadow: 0 0 18px rgba(57,255,20,.48), 0 0 34px rgba(245,211,90,.18);
}

.header-actions {
  justify-self: end;
}

.header-actions .btn,
.header-actions .btn-primary {
  min-height: 62px;
  padding-inline: 2.05rem !important;
  border-radius: 999px !important;
  box-shadow: 0 0 20px rgba(57,255,20,.44), 0 0 44px rgba(57,255,20,.18);
}

/* hero luxury layout */
.hero {
  position: relative;
  padding-top: clamp(5rem, 7.5vw, 7.25rem) !important;
  padding-bottom: clamp(4rem, 6.5vw, 6.5rem) !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(57,255,20,.13), transparent 34%),
    radial-gradient(circle at 82% 42%, rgba(57,255,20,.18), transparent 36%),
    radial-gradient(circle at 62% 14%, rgba(180,156,255,.08), transparent 34%);
}

.hero-grid {
  align-items: center !important;
  gap: clamp(3rem, 5vw, 6rem) !important;
}

.hero h1 {
  line-height: .88 !important;
  letter-spacing: -.058em;
  text-shadow:
    0 0 26px rgba(57,255,20,.16),
    0 8px 36px rgba(0,0,0,.48);
}

.hero p {
  max-width: 780px;
}

.hero-actions .btn {
  min-height: 64px;
  padding-inline: 2rem !important;
}

.hero-card {
  border: 1px solid rgba(57,255,20,.48) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(57,255,20,.18), transparent 45%),
    linear-gradient(180deg, rgba(8,34,9,.96), rgba(2,8,4,.98)) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 0 38px rgba(57,255,20,.36),
    0 0 104px rgba(57,255,20,.17),
    0 32px 82px rgba(0,0,0,.54) !important;
}

.hero-card .hero-logo {
  content: url("../images/nls-luxury-hero-logo.jpg");
  width: 100%;
  height: auto;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 26px !important;
  border: 1px solid rgba(57,255,20,.42);
  box-shadow: 0 0 24px rgba(57,255,20,.25), inset 0 0 0 1px rgba(255,255,255,.04);
}

/* trust strip */
.nls-trust-strip {
  position: relative;
  padding: 1.25rem 0 0;
  margin-top: -2.25rem;
  z-index: 2;
}

.nls-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.nls-trust-item {
  padding: 1.15rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(57,255,20,.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(57,255,20,.11), transparent 52%),
    rgba(2, 10, 4, .84);
  box-shadow: 0 0 24px rgba(57,255,20,.10), inset 0 0 0 1px rgba(255,255,255,.03);
}

.nls-trust-item strong {
  display: block;
  color: #f3fff5;
  font-weight: 900;
  margin-bottom: .35rem;
}

.nls-trust-item span {
  display: block;
  color: var(--muted);
  font-size: .96rem;
}

/* premium game link rollovers */
.hero .badge-row.game-quick-links a.badge,
.hero .badge-row a.hero-game-link,
.hero a.game-pill-link,
.game-card-anchor,
.game-card {
  will-change: transform, box-shadow;
}

.hero .badge-row.game-quick-links a.badge:hover,
.hero .badge-row a.hero-game-link:hover,
.hero a.game-pill-link:hover {
  color: #061206 !important;
  background: linear-gradient(135deg, var(--nls-lime), var(--nls-gold)) !important;
  border-color: rgba(245,211,90,.95) !important;
  box-shadow:
    0 0 18px rgba(57,255,20,.68),
    0 0 44px rgba(57,255,20,.28),
    0 0 60px rgba(245,211,90,.18) !important;
}

.card,
.game-card {
  border-color: rgba(57,255,20,.24) !important;
  box-shadow: 0 20px 54px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.025);
}

.footer-logo {
  content: url("../images/nls-luxury-header-logo.jpg");
  max-width: 440px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(57,255,20,.36);
  box-shadow: 0 0 28px rgba(57,255,20,.20);
}

/* responsive controls */
@media (max-width: 1500px) {
  .nav-wrap {
    grid-template-columns: minmax(520px, 700px) 1fr auto;
  }

  .nls-luxury-logo {
    width: clamp(540px, 42vw, 720px) !important;
    max-height: 136px !important;
  }

  .nav-wrap {
    min-height: 158px !important;
  }
}

@media (max-width: 1250px) {
  .nav-wrap {
    grid-template-columns: minmax(430px, 560px) auto auto;
    gap: 1rem !important;
  }

  .nls-luxury-logo {
    width: clamp(410px, 43vw, 560px) !important;
    max-height: 118px !important;
    border-radius: 20px;
  }

  .header-actions .btn,
  .header-actions .btn-primary {
    min-height: 54px;
    padding-inline: 1.35rem !important;
  }

  .nav-wrap {
    min-height: 138px !important;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    display: flex !important;
    min-height: 118px !important;
    width: min(100% - 32px, 1540px);
  }

  .nls-luxury-logo {
    width: clamp(320px, 56vw, 470px) !important;
    max-height: 100px !important;
    border-radius: 16px;
  }

  .nav-menu {
    inset: 118px 16px auto 16px;
  }

  .nls-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nls-luxury-logo {
    width: clamp(272px, 78vw, 392px) !important;
    max-height: 86px !important;
    border-radius: 14px;
  }

  .nav-wrap {
    min-height: 106px !important;
  }

  .nav-menu {
    inset: 106px 16px auto 16px;
  }

  .hero-actions {
    gap: .8rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .nls-luxury-logo {
    width: 270px !important;
    max-height: 78px !important;
  }
}


/* Rounded logo corner correction */
.brand-link.nls-luxury-brand {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  min-width: 0 !important;
  text-decoration: none;
  overflow: visible !important;
  background: transparent !important;
}

.nls-luxury-logo {
  display: block;
  width: clamp(620px, 42vw, 820px) !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  border: none !important;
  outline: none !important;
  border-radius: 28px !important;
  background: transparent !important;
  box-shadow:
    0 0 18px rgba(57,255,20,.24),
    0 0 48px rgba(57,255,20,.10) !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.brand-link.nls-luxury-brand:hover .nls-luxury-logo,
.brand-link.nls-luxury-brand:focus-visible .nls-luxury-logo {
  transform: translateY(-2px) scale(1.006);
  box-shadow:
    0 0 24px rgba(57,255,20,.36),
    0 0 64px rgba(57,255,20,.15) !important;
}

.brand-logo-wide,
.brand-logo,
.brand-text,
.brand-built-logo,
.brand-mark-wrap,
.brand-wordmark,
.brand-rectangle-logo,
.brand-masterpiece-image {
  display: none !important;
}

.nav-wrap {
  width: min(1540px, calc(100% - 48px));
  min-height: 210px !important;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: minmax(560px, 840px) 1fr auto;
  align-items: center !important;
  gap: clamp(1rem, 1.8vw, 2rem) !important;
  overflow: visible !important;
}

.site-header {
  overflow: visible !important;
}

.hero-card .hero-logo {
  content: url("../images/nls-logo-rounded-hero.png");
  width: 100%;
  height: auto;
  object-fit: contain !important;
  object-position: center !important;
  border: none !important;
  outline: none !important;
  border-radius: 28px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-logo {
  content: url("../images/nls-logo-rounded-header.png");
  max-width: 470px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: none !important;
  outline: none !important;
  border-radius: 20px !important;
  box-shadow: 0 0 20px rgba(57,255,20,.12);
}

@media (max-width: 1500px) {
  .nls-luxury-logo {
    width: clamp(560px, 42vw, 740px) !important;
    border-radius: 24px !important;
  }

  .nav-wrap {
    grid-template-columns: minmax(500px, 760px) 1fr auto;
    min-height: 194px !important;
  }
}

@media (max-width: 1250px) {
  .nls-luxury-logo {
    width: clamp(410px, 43vw, 600px) !important;
    border-radius: 20px !important;
  }

  .nav-wrap {
    grid-template-columns: minmax(400px, 580px) auto auto;
    min-height: 164px !important;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    display: flex !important;
    min-height: 132px !important;
    width: min(100% - 32px, 1540px);
  }

  .nls-luxury-logo {
    width: clamp(320px, 58vw, 500px) !important;
    border-radius: 16px !important;
  }

  .nav-menu {
    inset: 132px 16px auto 16px;
  }
}

@media (max-width: 680px) {
  .nls-luxury-logo {
    width: clamp(275px, 80vw, 405px) !important;
    border-radius: 14px !important;
  }

  .nav-wrap {
    min-height: 116px !important;
  }

  .nav-menu {
    inset: 116px 16px auto 16px;
  }
}

@media (max-width: 430px) {
  .nls-luxury-logo {
    width: 282px !important;
    border-radius: 12px !important;
  }
}
