@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #f5b942;
  --gold-dark: #d4962e;
  --gold-light: #ffd47a;
  --bg: #0c0c0e;
  --bg2: #141416;
  --bg3: #1c1c20;
  --bg4: #242428;
  --text: #e8e8e8;
  --text-muted: #888;
  --green: #2ecc71;
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 185, 66, 0.15);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 38px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 4px;
  flex: 1;
}

.header__nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s, background .2s;
  letter-spacing: .3px;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--gold);
  background: rgba(245, 185, 66, 0.08);
}

.header__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .5px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: filter .2s, transform .15s;
  white-space: nowrap;
}

.btn-gold:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1.5px solid rgba(245, 185, 66, 0.4);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(245, 185, 66, 0.08);
}

/* ── TICKER ── */
.ticker {
  background: var(--bg2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding: 10px 0;
}

.ticker__track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}

.ticker__track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.07);
}

.ticker__item .icon { font-size: 16px; }
.ticker__item strong { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,185,66,.07) 0%, transparent 70%),
              var(--bg);
}

.hero--bg {
  background:
    linear-gradient(to right, rgba(12,12,14,.97) 0%, rgba(12,12,14,.85) 45%, rgba(12,12,14,.3) 75%, rgba(12,12,14,.1) 100%),
    linear-gradient(to bottom, rgba(12,12,14,.2) 0%, rgba(12,12,14,.5) 100%),
    url('../guest_banner.webp') center right / cover no-repeat;
  min-height: 520px;
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero--bg .hero__inner {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0;
}

.hero__badge {
  display: inline-block;
  background: rgba(245,185,66,.12);
  border: 1px solid rgba(245,185,66,.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero__title span { color: var(--gold); }

.hero__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 420px;
}

.hero__bonus {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.bonus-pill {
  background: linear-gradient(135deg, rgba(245,185,66,.15), rgba(245,185,66,.05));
  border: 1px solid rgba(245,185,66,.3);
  border-radius: var(--radius);
  padding: 12px 20px;
  text-align: center;
}

.bonus-pill__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.bonus-pill__label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__btn-main {
  padding: 14px 32px;
  font-size: 16px;
}

.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(245,185,66,.08);
}

.hero__glow {
  position: absolute;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(245,185,66,.25) 0%, transparent 70%);
  top: 20%;
  left: 10%;
  pointer-events: none;
  filter: blur(40px);
}

/* ── SECTION ── */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section__title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--gold);
  border-radius: 2px;
}

.section__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  opacity: .8;
  transition: opacity .2s;
}
.section__link:hover { opacity: 1; }

/* ── GAMES GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  aspect-ratio: 1 / 1.1;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(245,185,66,.2);
}

.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.game-card:hover .game-card__img { transform: scale(1.06); }

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity .25s;
}

.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  font-size: 13px;
  border-radius: 6px;
  padding: 8px;
}

.game-card__hot {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e74c3c;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

.game-card__new {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ── WINS FEED ── */
.wins-section {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 40px 0;
}

.wins-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.wins-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 320px;
  overflow: hidden;
}

.win-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  animation: slideIn .4s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.win-item__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #111;
  flex-shrink: 0;
}

.win-item__info { flex: 1; min-width: 0; }

.win-item__name {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-item__game {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.win-item__amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.win-item__time {
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ── FEATURES ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 0;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}

.feature-card:hover {
  border-color: rgba(245,185,66,.25);
  transform: translateY(-2px);
}

.feature-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.feature-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SEO TEXT ── */
.seo-section {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 60px 20px;
}

.seo-inner {
  max-width: 860px;
  margin: 0 auto;
}

.seo-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.seo-inner h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--gold);
}

.seo-inner p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.seo-inner ul {
  margin: 8px 0 10px 20px;
}

.seo-inner li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── SEO ARTICLE ── */
.seo-article h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 36px 0 12px;
  color: var(--text);
}

.seo-article h2:first-child { margin-top: 0; }

.seo-article p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 10px;
}

.seo-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.seo-link:hover { opacity: .75; }

/* ── FAQ ── */
.seo-faq {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.seo-faq__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-faq__title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 10px;
  transition: border-color .2s;
}

.faq-item:hover { border-color: rgba(245,185,66,.2); }

.faq-item__question {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-item__answer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── SEO NAV ── */
.seo-nav {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.seo-nav__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
}

.seo-nav__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-nav__link {
  display: inline-block;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}

.seo-nav__link:hover {
  border-color: rgba(245,185,66,.35);
  color: var(--gold);
}

.seo-disclaimer {
  margin-top: 32px;
  font-size: 11px;
  color: #555;
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 20px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__logo img { height: 32px; opacity: .7; }

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }

.footer__disclaimer {
  font-size: 11px;
  color: #555;
  max-width: 600px;
  line-height: 1.7;
}

.footer__copy {
  font-size: 12px;
  color: #444;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(to bottom, rgba(245,185,66,.05), transparent);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 50px 20px 40px;
  text-align: center;
}

.page-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 10px;
}

.page-hero__title span { color: var(--gold); }

.page-hero__sub {
  font-size: 15px;
  color: var(--text-muted);
}

/* ── BONUS CARDS ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg3);
  border: 1px solid rgba(245,185,66,.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(245,185,66,.25);
}

.bonus-card__header {
  background: linear-gradient(135deg, rgba(245,185,66,.18), rgba(245,185,66,.05));
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(245,185,66,.1);
}

.bonus-card__tag {
  display: inline-block;
  background: rgba(245,185,66,.15);
  border: 1px solid rgba(245,185,66,.3);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.bonus-card__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.bonus-card__name {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.bonus-card__body {
  padding: 20px 24px;
}

.bonus-card__features {
  list-style: none;
  margin-bottom: 20px;
}

.bonus-card__features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-card__features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── LIVE TABLES ── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.live-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.live-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}

.live-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.live-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.live-card:hover .live-card__img-wrap img { transform: scale(1.06); }

.live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e74c3c;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.live-card__info {
  padding: 12px 14px;
}

.live-card__name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.live-card__players {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── NOTIFICATION ── */
.win-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.win-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid rgba(46, 204, 113, .3);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  animation: toastIn .4s ease, toastOut .4s ease 3.6s forwards;
  pointer-events: all;
  max-width: 300px;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-30px); }
}

.win-toast__icon { font-size: 22px; }

.win-toast__text { flex: 1; }

.win-toast__name { font-size: 12px; color: var(--text-muted); }

.win-toast__amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--green);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero--bg {
    background:
      linear-gradient(to bottom, rgba(12,12,14,.92) 0%, rgba(12,12,14,.75) 60%, rgba(12,12,14,.95) 100%),
      url('../guest_banner.webp') center / cover no-repeat;
  }
  .hero--bg .hero__inner {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header__nav { display: none; }
  .header__cta .btn-outline { display: none; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero { padding: 36px 16px; }
  .section { padding: 40px 16px; }
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-tab {
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
  background: transparent;
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,185,66,.08);
}

/* Mobile nav hamburger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

@media (max-width: 640px) {
  .header__burger { display: flex; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(12,12,14,.97);
  border-bottom: 1px solid rgba(245,185,66,.15);
  padding: 16px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(245,185,66,.08);
  color: var(--gold);
}
