:root {
  --bg0: #07070a;
  --bg1: #0b0b0f;
  --panel: rgba(17, 17, 23, 0.72);
  --panel2: rgba(17, 17, 23, 0.9);
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.12);

  --text: #f4f4f7;
  --muted: rgba(244, 244, 247, 0.68);

  --red: #ff1e2d;
  --red2: #ff3b30;
  --redGlow: rgba(255, 30, 45, 0.55);

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow2: 0 10px 30px rgba(0, 0, 0, 0.42);

  --radius: 18px;
  --radiusLg: 26px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  /* Unified gradient background */
  background: #0d0a12;
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Unified glow + vignette directly on body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(60, 20, 40, 0.6), transparent 60%),
    radial-gradient(ellipse 100% 60% at 80% 10%, rgba(80, 25, 50, 0.4), transparent 50%),
    radial-gradient(ellipse 80% 50% at 20% 90%, rgba(50, 15, 35, 0.3), transparent 50%),
    linear-gradient(180deg, rgba(20, 12, 22, 1) 0%, rgba(13, 10, 18, 1) 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 30, 45, 0.12), transparent 50%);
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

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

/* (sr-only removed; no form fields in hero) */

.skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border2);
  transform: translateY(-180%);
  transition: transform 160ms ease;
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

/* (Background overlay div removed) */

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}
.topbar.is-scrolled {
  background: rgba(7, 7, 10, 0.62);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.topbar__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__logo {
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.brand__name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 23, 0.38);
  border: 1px solid var(--border);
}
.nav__link {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition:
    color 140ms ease,
    background 140ms ease;
}
.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--border);
  background: rgba(17, 17, 23, 0.4);
  color: var(--text);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 140ms ease,
    background 140ms ease,
    border-color 140ms ease,
    box-shadow 180ms ease;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: var(--border2);
  background: rgba(17, 17, 23, 0.7);
  box-shadow: var(--shadow2);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 2px solid rgba(255, 30, 45, 0.65);
  outline-offset: 2px;
}

.btn--primary {
  border-color: rgba(255, 30, 45, 0.45);
  background: linear-gradient(180deg, rgba(255, 30, 45, 0.9), rgba(255, 30, 45, 0.75));
  box-shadow:
    0 18px 40px rgba(255, 30, 45, 0.22),
    0 10px 25px rgba(0, 0, 0, 0.45);
}
.btn--primary:hover {
  border-color: rgba(255, 30, 45, 0.8);
  box-shadow:
    0 22px 54px rgba(255, 30, 45, 0.24),
    0 12px 30px rgba(0, 0, 0, 0.46);
}

.btn--ghost {
  background: rgba(17, 17, 23, 0.25);
}

.btn--lg {
  height: 48px;
  padding: 0 18px;
  font-size: 15px;
}
.btn--wide {
  min-width: 220px;
}
.btn--full {
  width: 100%;
}

/* (Burger/mobile menu styles removed intentionally) */

/* Hero */
.hero {
  padding: 32px 0 24px;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}
.hero__copy {
  padding-top: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  margin: 18px 0 14px;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.hero__sub {
  margin: 0;
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.grad {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 30, 45, 0.98));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__slideshow {
  margin-top: 0;
  margin-bottom: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Slideshow */
.slideshow {
  position: relative;
  width: 100%;
  border-radius: var(--radiusLg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(17, 17, 23, 0.4);
}
.slideshow__track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slideshow__slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}
.slideshow__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  aspect-ratio: auto;
  max-height: 400px;
}
.slideshow__link {
  display: block;
  width: 100%;
  transition: opacity 200ms ease;
}
.slideshow__link:hover {
  opacity: 0.92;
}

/* Slots strip under Sign Up */
.slotsstrip {
  margin-top: 18px;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.slotsstrip__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
  min-width: 0;
  box-sizing: border-box;
}
.slotsstrip__track::-webkit-scrollbar {
  display: none;
}
.slotsstrip::before,
.slotsstrip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  pointer-events: none;
  z-index: 2;
}
.slotsstrip::before {
  left: -2px;
  background: linear-gradient(90deg, rgba(7, 7, 10, 0.95), transparent);
}
.slotsstrip::after {
  right: -2px;
  background: linear-gradient(270deg, rgba(7, 7, 10, 0.95), transparent);
}
.slotcard {
  flex: 0 0 auto;
  width: 92px;
  height: 124px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  transition:
    transform 140ms ease,
    border-color 140ms ease;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slotcard:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 30, 45, 0.22);
}
.slotcard img {
  width: 100%;
  height: 100%;
}

.slotcard img {
  object-fit: contain;
  display: block;
  background: transparent;
}
/* (hero email input + trust chips + fineprint removed) */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(17, 17, 23, 0.38);
  color: rgba(244, 244, 247, 0.92);
  font-weight: 600;
  font-size: 13px;
  width: fit-content;
}
.pill--soft {
  background: rgba(17, 17, 23, 0.26);
}
.pill__sep {
  opacity: 0.35;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 30, 45, 0.95));
  box-shadow: 0 0 0 4px rgba(255, 30, 45, 0.12);
}

.stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.stat {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(17, 17, 23, 0.35);
}
.stat__value {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat__label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.orb {
  position: relative;
  width: min(420px, 92vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.orb__ring {
  position: absolute;
  inset: 8%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 30, 45, 0.22), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.12), transparent 55%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(255, 30, 45, 0.16),
    0 26px 90px rgba(0, 0, 0, 0.65);
  filter: saturate(1.1);
}
.orb__ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 40%, rgba(255, 30, 45, 0.22), transparent 65%);
  filter: blur(18px);
  opacity: 0.75;
}
.orb__logo {
  width: 64%;
  height: auto;
  border-radius: 26px;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.55));
}

.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 14, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  font-weight: 700;
  font-size: 13px;
}
.chip__icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 30, 45, 0.13);
  border: 1px solid rgba(255, 30, 45, 0.25);
  color: rgba(255, 255, 255, 0.92);
}
.chip--a {
  left: 6%;
  top: 10%;
}
.chip--b {
  right: 2%;
  top: 36%;
}
.chip--c {
  left: 10%;
  bottom: 10%;
}

/* (Ticker removed intentionally) */

.section__cta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Casino "game" grid */
.gamegrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.game {
  border-radius: var(--radiusLg);
  border: 1px solid var(--border);
  background: rgba(17, 17, 23, 0.38);
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background 140ms ease;
}
.game:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(17, 17, 23, 0.46);
}
.game__link {
  display: block;
}
.game__thumb {
  height: 170px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}
.game__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.28)),
    radial-gradient(600px 220px at 50% 20%, rgba(255, 30, 45, 0.10), transparent 65%);
  pointer-events: none;
}
.game__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}
.game:hover .game__img {
  transform: scale(1.04);
}
.game__meta {
  padding: 14px 14px 12px;
}
.game__title {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.game__sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 56px 0;
  position: relative;
  background: transparent;
}
.section--last {
  padding-bottom: 40px;
  background: transparent;
}

/* Cleaner section separators (soft fade instead of hard breaks) */
.section::before {
  content: none;
}
.section::after {
  content: none;
}

/* (old ticker.section overrides removed) */
.section__head {
  max-width: 66ch;
  margin-bottom: 18px;
}
.h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
}
.sub {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.card {
  border-radius: var(--radiusLg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 17, 23, 0.6), rgba(17, 17, 23, 0.35));
  padding: 18px 18px 16px;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 20% 10%, rgba(255, 30, 45, 0.22), transparent 55%);
  opacity: 0.55;
  filter: blur(14px);
  pointer-events: none;
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 30, 45, 0.22);
  background: rgba(255, 30, 45, 0.12);
  color: rgba(255, 255, 255, 0.92);
}
.card__title {
  margin: 12px 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 30, 45, 0.35);
  background: rgba(255, 30, 45, 0.16);
}
.tag--soft {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 244, 247, 0.86);
}

.mini {
  padding: 16px 16px 14px;
  border-radius: var(--radiusLg);
  border: 1px solid var(--border);
  background: rgba(17, 17, 23, 0.38);
  box-shadow: var(--shadow2);
}
.mini__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.mini__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 30, 45, 0.2);
  background: rgba(255, 30, 45, 0.1);
  color: rgba(255, 255, 255, 0.92);
}
.mini__title {
  margin: 12px 0 6px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.mini__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* Rewards panel */
.panel {
  border-radius: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 17, 23, 0.68), rgba(17, 17, 23, 0.34));
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 15% 20%, rgba(255, 30, 45, 0.26), transparent 55%);
  opacity: 0.65;
  filter: blur(18px);
  pointer-events: none;
}
.panel__copy {
  padding: 6px;
  position: relative;
  z-index: 1;
}
.panel__visual {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 10px;
}

.list {
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(244, 244, 247, 0.84);
}
.tick {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  margin-right: 10px;
  background: rgba(255, 30, 45, 0.14);
  border: 1px solid rgba(255, 30, 45, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
}

.tiers {
  display: grid;
  gap: 10px;
}
.tier {
  padding: 12px 12px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 14, 0.45);
}
.tier__name {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.tier__meta {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.tier__bar {
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.tier__bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 30, 45, 0.85), rgba(255, 255, 255, 0.22));
  box-shadow: 0 0 18px rgba(255, 30, 45, 0.25);
}
.tier--mid {
  border-color: rgba(255, 30, 45, 0.2);
}
.tier--top {
  border-color: rgba(255, 30, 45, 0.35);
  background: rgba(255, 30, 45, 0.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 30, 45, 0.28);
  background: rgba(255, 30, 45, 0.1);
  width: fit-content;
}
.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 4px rgba(255, 30, 45, 0.16),
    0 0 18px rgba(255, 30, 45, 0.35);
}
.badge__text {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Split section (sports) */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}
.split__copy {
  padding: 6px 0;
}
.split__card {
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(17, 17, 23, 0.38);
  box-shadow: var(--shadow2);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.split__card::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 30, 45, 0.22), transparent 55%);
  filter: blur(14px);
  opacity: 0.75;
  pointer-events: none;
}
.bet {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 14, 0.55);
  padding: 16px;
}
.bet__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bet__title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.bet__odds {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.odd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}
.odd__k {
  font-weight: 800;
}
.odd__v {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}
.bet__cta {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
}

/* FAQ */
.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.faq__item {
  width: 100%;
  text-align: left;
  padding: 16px 16px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(17, 17, 23, 0.38);
  color: var(--text);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.faq__q {
  display: block;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.faq__icon {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 244, 247, 0.9);
  font-weight: 900;
  transition: transform 140ms ease;
}
.faq__a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 220ms ease,
    opacity 220ms ease;
}
.faq__item[aria-expanded="true"] .faq__a {
  max-height: 220px;
  opacity: 1;
}
.faq__item[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

/* CTA + footer */
.cta {
  border-radius: 34px;
  border: 1px solid rgba(255, 30, 45, 0.22);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 30, 45, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(17, 17, 23, 0.7), rgba(17, 17, 23, 0.35));
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: rgba(244, 244, 247, 0.86);
}
.footer__apps {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer__app-badge {
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer__app-badge:hover {
  opacity: 0.85;
  transform: scale(1.02);
}
.footer__app-badge img {
  height: 50px;
  width: auto;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .footer__app-badge img {
    height: 44px;
  }
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__links a {
  color: var(--muted);
  font-size: 13px;
}
.footer__links a:hover {
  color: rgba(244, 244, 247, 0.9);
}
.footer__meta {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__company {
  font-size: 12px;
  opacity: 0.7;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-section__title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.03em;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(17, 17, 23, 0.4);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  border-color: rgba(255, 30, 45, 0.3);
  background: rgba(17, 17, 23, 0.5);
}

.faq__item.is-open {
  border-color: rgba(255, 30, 45, 0.4);
  background: rgba(17, 17, 23, 0.6);
}

.faq__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq__question:hover {
  color: rgba(244, 244, 247, 0.95);
}

.faq__question span {
  flex: 1;
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--muted);
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
  color: var(--red);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq__item.is-open .faq__answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq__answer p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq__question {
    padding: 16px 20px;
    font-size: 15px;
  }
  
  .faq__answer {
    padding: 0 20px;
  }
  
  .faq__item.is-open .faq__answer {
    padding: 0 20px 20px;
  }
}

/* (toast removed) */

/* Modern Signup Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(22, 22, 30, 0.98), rgba(14, 14, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: translateY(20px) scale(0.96);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 140ms ease;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
}

.modal__header {
  text-align: center;
  margin-bottom: 28px;
}

.signup-bonus-banner {
  margin: -4px 0 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.signup-bonus-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.signup-mobile-intro {
  display: none;
  margin: 0 0 14px;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
}

.signup-mobile-intro__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.signup-mobile-intro__actions {
  padding: 14px 0 0;
  border-top: none;
}

.signup-mobile-intro__terms {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(244, 244, 247, 0.52);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .signup-mobile-intro {
    display: block;
  }

  .modal.is-mobile-gate {
    padding: 0 0 16px;
    overflow: hidden;
  }

  .modal.is-mobile-gate .modal__close {
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(11, 11, 15, 0.72);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .modal.is-mobile-gate .signup-mobile-intro {
    margin: 0;
    border-radius: 0;
  }

  .modal.is-mobile-gate .signup-mobile-intro__image {
    width: 100%;
    border-radius: 0;
  }

  .modal.is-mobile-gate .signup-mobile-intro__actions {
    padding: 14px 16px 0;
  }
}

.modal__logo {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}

.modal__title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal__subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.modal__form {
  display: grid;
  gap: 18px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
}

.form-group .required {
  color: var(--red);
}

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

.input-icon {
  position: absolute;
  left: 14px;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transition: color 140ms ease;
}

.input-wrapper:focus-within .input-icon {
  color: rgba(255, 30, 45, 0.8);
}

.input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  padding-left: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: all 180ms ease;
}

.input-wrapper .input:not([class*="input-icon"]) {
  padding-left: 44px;
}

.form-group:not(:has(.input-icon)) .input,
.input:only-child {
  padding-left: 16px;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.input:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.input:focus {
  outline: none;
  border-color: rgba(255, 30, 45, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 30, 45, 0.1);
}

.input-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -4px;
}

/* Clean inline field errors - simple thin red outline + small red text only */
.input.is-error,
.input-wrapper.has-error .input,
.country-select.is-error,
.phone-input-group.has-error .input,
.phone-input-group.has-error .country-select,
.phone-input-group.has-error .country-code-trigger {
  border-color: #dc2626 !important;
  border-width: 1px;
  box-shadow: none;
}
.form-group:has(.is-error) .input-icon,
.input-wrapper.has-error .input-icon {
  color: #dc2626;
}
.field-error {
  font-size: 11px;
  color: #dc2626;
  margin-top: 4px;
  display: none;
  line-height: 1.35;
  font-weight: 500;
}
.field-error.is-visible {
  display: block;
}

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

/* Phone input with country code */
.phone-input-group {
  display: flex;
  gap: 10px;
}

.country-select {
  width: 110px;
  flex-shrink: 0;
  height: 50px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 180ms ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.country-select:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.06);
}

.country-select:focus {
  outline: none;
  border-color: rgba(255, 30, 45, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 30, 45, 0.1);
}

.country-select option {
  background: #1a1a24;
  color: var(--text);
  padding: 10px;
}

.phone-wrapper {
  flex: 1;
}

.phone-wrapper .input {
  padding-left: 16px;
}

/* Searchable country code picker */
.country-code-picker {
  position: relative;
  width: 120px;
  flex-shrink: 0;
}
.country-code-trigger {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 36px 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 180ms ease;
}
.country-code-picker:hover .country-code-trigger {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.country-code-input {
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}
.country-code-input:focus {
  outline: none;
  box-shadow: none;
}
.country-code-trigger::after {
  content: '';
  position: absolute;
  right: 12px;
  width: 10px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}
.country-code-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(18, 18, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: none;
}
.country-code-dropdown.is-open {
  display: block;
}
.country-code-search {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
}
.country-code-search::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.country-code-search:focus {
  outline: none;
}
.country-code-list {
  max-height: 200px;
  overflow-y: auto;
  padding: 6px 0;
}
.country-code-option {
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 120ms ease;
}
.country-code-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.modal__message {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
  margin-bottom: 8px;
}

.modal__message.is-visible {
  display: block;
}

.modal__message--error {
  background: transparent;
  border: 1px solid #dc2626;
  color: #dc2626;
  font-size: 12px;
  padding: 10px 14px;
}

.modal__message--success {
  background: rgba(46, 213, 115, 0.12);
  border: 1px solid rgba(46, 213, 115, 0.25);
  color: #2ed573;
}

.btn--full {
  width: 100%;
  margin-top: 8px;
}

.btn__loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  animation: spin 1s linear infinite;
}

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

.modal__footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.modal__link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

/* Credential Fields for Success View */
.credential-field {
  margin-bottom: 16px;
}

.credential-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.credential-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.credential-value {
  flex: 1;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
}

.copy-btn {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.copy-btn.copied {
  background: #00c853;
  border-color: #00c853;
  transition: color 140ms ease;
}

.modal__link:hover {
  color: #ff4757;
  text-decoration: underline;
}

/* Scrollbar styling for modal */
.modal::-webkit-scrollbar {
  width: 6px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--d, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  main {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }
  .nav {
    display: none;
  }
  .hero {
    padding: 20px 0 24px;
  }
  .hero__inner {
    max-width: 100%;
    gap: 20px;
  }
  .hero__visual {
    min-height: 320px;
  }
  .hero__slideshow {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .slideshow__slide img {
    max-height: 280px;
  }
  .hero__copy {
    padding-top: 0;
  }
  .hero__title {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .hero__cta {
    margin-top: 18px;
  }
  .slotsstrip {
    margin-top: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .slotsstrip__track {
    padding-left: 0;
    padding-right: 20px;
    min-width: 0;
  }
  .slotcard {
    width: 88px;
    height: 120px;
    flex-shrink: 0;
    padding: 0;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .panel {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .gamegrid {
    grid-template-columns: 1fr;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer {
    align-items: flex-start;
    text-align: left;
  }
  .footer__brand {
    align-self: flex-start;
  }
  .footer__apps {
    justify-content: flex-start;
    align-self: flex-start;
  }
  .footer__links {
    justify-content: flex-start;
    align-self: flex-start;
  }
  .footer__meta {
    align-self: flex-start;
  }
  .chip--a {
    left: 6%;
    top: 2%;
  }
  .chip--b {
    right: 2%;
    top: 58%;
  }
  .chip--c {
    left: 6%;
    bottom: 4%;
  }
}

@media (max-width: 520px) {
  .btn--wide {
    width: 100%;
  }
  .stats {
    grid-template-columns: 1fr;
  }
}

/* Feature Section - Sticky Scroll */
.feature-section {
  position: relative;
  height: 200vh;
}

.feature-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  box-sizing: border-box;
}

.feature-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 700px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Text ABOVE Phone - Centered */
.feature-text {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
  min-height: 150px;
}

.feature-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 350ms ease;
}

.feature-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.feature-num {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.feature-title {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.feature-desc {
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}

/* Phone BELOW Text - Centered */
.feature-phone {
  position: relative;
  width: 240px;
  flex-shrink: 0;
}

.feature-phone::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -50%;
  right: -50%;
  bottom: -5%;
  background: radial-gradient(ellipse 55% 50% at 50% 50%, rgba(255, 30, 45, 0.18), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

.feature-phone__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border-radius: 36px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 350ms ease;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.feature-phone__img:first-child {
  position: relative;
}

.feature-phone__img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-section {
    height: 180vh;
  }

  .feature-sticky {
    padding-top: 80px;
  }

  .feature-text {
    min-height: 150px;
    margin-bottom: 30px;
  }

  .feature-phone {
    width: 200px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .feature-sticky {
    padding-top: 70px;
  }

  .feature-text {
    min-height: 160px;
    margin-bottom: 25px;
  }

  .feature-phone {
    width: 180px;
  }

  .feature-phone__img {
    border-radius: 30px;
  }

  .feature-title {
    font-size: 18px;
  }
}

/* Mobile bottom navigation */
.bottomnav {
  display: none;
}
@media (max-width: 980px) {
  .bottomnav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 7, 10, 0.76);
    backdrop-filter: blur(18px);
    box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.55);
    z-index: 80;
  }
  .bottomnav__item {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 8px 6px 10px;
    border-radius: 14px;
    border: 1px solid transparent;
    color: rgba(244, 244, 247, 0.62);
    transition:
      background 140ms ease,
      color 140ms ease,
      border-color 140ms ease;
  }
  .bottomnav__item:hover {
    color: rgba(244, 244, 247, 0.88);
  }
  .bottomnav__item--active {
    color: rgba(255, 255, 255, 0.94);
  }
  .bottomnav__icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
  }
  .bottomnav__icon svg {
    display: block;
    width: 20px;
    height: 20px;
    shape-rendering: geometricPrecision;
  }
  .bottomnav__label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    line-height: 1;
  }

  /* little active pill like the reference */
  .bottomnav__active {
    width: 18px;
    height: 6px;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
  }
  .bottomnav__item--active .bottomnav__active {
    background: rgba(255, 30, 45, 0.92);
    box-shadow: 0 10px 22px rgba(255, 30, 45, 0.16);
  }
}


