/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07070f;
  --bg2: #0d0d1f;
  --bg3: #12122a;
  --gold: #f5c518;
  --gold2: #ffdc6a;
  --green: #00e676;
  --green2: #00ff88;
  --purple: #7c3aed;
  --text: #ffffff;
  --text2: #b0b0cc;
  --border: rgba(255,255,255,0.08);
  --card: rgba(255,255,255,0.04);
  --radius: 12px;
  --radius2: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, 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%; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 4px;
  flex: 1;
}

.header__nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: all .2s;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--text);
  background: var(--card);
}

.header__nav a.active {
  color: var(--gold);
}

.header__actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  text-align: center;
}

.btn--outline {
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text2);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--gold {
  background: linear-gradient(135deg, #f5c518 0%, #e5a000 100%);
  color: #0a0a00;
  box-shadow: 0 4px 20px rgba(245,197,24,.35);
}

.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(245,197,24,.5);
}

.btn--green {
  background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
  color: #003300;
  box-shadow: 0 4px 20px rgba(0,230,118,.35);
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 14px;
}

.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,230,118,.5);
}

.btn--large {
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('background.webp');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,15,.7) 40%, rgba(124,58,237,.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero__text {
  flex: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__title span {
  background: linear-gradient(135deg, #f5c518, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(0,230,118,.5);
}

.hero__desc {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__bonus-card {
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(124,58,237,.25), rgba(245,197,24,.1));
  border: 1.5px solid rgba(245,197,24,.25);
  border-radius: var(--radius2);
  padding: 36px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  min-width: 220px;
}

.bonus-card__label {
  font-size: 13px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.bonus-card__amount {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, #f5c518, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-card__plus {
  font-size: 28px;
  color: var(--text2);
  margin: 4px 0;
}

.bonus-card__fs {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  text-shadow: 0 0 20px rgba(0,230,118,.4);
}

.bonus-card__sub {
  font-size: 12px;
  color: var(--text2);
  margin-top: 8px;
  margin-bottom: 18px;
}

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: linear-gradient(90deg, var(--bg2), var(--bg3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.wins-ticker__track {
  display: flex;
  gap: 40px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.wins-ticker__track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.win-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  flex-shrink: 0;
}

.win-item__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.win-item__name { color: var(--text2); }

.win-item__game { color: var(--text); font-weight: 500; }

.win-item__amount {
  color: var(--green);
  font-weight: 700;
}

.wins-ticker__label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--bg2) 70%, transparent);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.section__title {
  font-size: 24px;
  font-weight: 700;
}

.section__title span { color: var(--gold); }

.section__link {
  font-size: 14px;
  color: var(--text2);
  transition: color .2s;
}

.section__link:hover { color: var(--gold); }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  group: true;
}

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(245,197,24,.2);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.game-card:hover img { transform: scale(1.08); }

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity .25s;
}

.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #003300;
  margin: 0 auto 10px;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0,230,118,.5);
}

.game-card__name {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.game-card__hot {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff3d00, #ff6b35);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.game-card__new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #00e676, #00c853);
  color: #003300;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}

.feature-card:hover {
  border-color: rgba(245,197,24,.25);
  transform: translateY(-4px);
}

.feature-card__icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* ===== BONUS BANNER ===== */
.bonus-banner {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  padding: 48px 40px;
  background: linear-gradient(135deg, #1a0a3a 0%, #0d1a2a 50%, #1a1a00 100%);
  border: 1.5px solid rgba(245,197,24,.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245,197,24,.15) 0%, transparent 70%);
  border-radius: 50%;
}

.bonus-banner__text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
}

.bonus-banner__text h2 span { color: var(--gold); }

.bonus-banner__text p {
  color: var(--text2);
  font-size: 15px;
  max-width: 400px;
}

/* ===== WIN NOTIFICATION (toast) ===== */
#win-notifications {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}

.win-toast {
  background: linear-gradient(135deg, rgba(13,13,31,.97), rgba(18,18,42,.97));
  border: 1px solid rgba(0,230,118,.3);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 20px rgba(0,230,118,.15);
  animation: toastIn .35s cubic-bezier(.34,1.56,.64,1) forwards;
  pointer-events: auto;
}

.win-toast.removing {
  animation: toastOut .3s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-40px) scale(.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(-40px) scale(.9); }
}

.win-toast__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.win-toast__body { flex: 1; }

.win-toast__player {
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 2px;
}

.win-toast__player strong { color: var(--text); }

.win-toast__amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  text-shadow: 0 0 10px rgba(0,230,118,.4);
}

.win-toast__game {
  font-size: 11px;
  color: var(--text2);
}

/* ===== PROVIDER LOGOS ===== */
.providers-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px 0;
}

.provider-tag {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: all .2s;
}

.provider-tag:hover {
  border-color: rgba(245,197,24,.3);
  color: var(--gold);
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg2);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tab {
  padding: 9px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  background: transparent;
  transition: all .2s;
  cursor: pointer;
  border: none;
}

.tab.active,
.tab:hover {
  background: var(--bg3);
  color: var(--text);
}

.tab.active { color: var(--gold); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  gap: 12px;
  transition: color .2s;
  user-select: none;
}

.faq-item__q:hover { color: var(--gold); }

.faq-item__icon {
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--gold);
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-item__a { max-height: 400px; }

.faq-item__a-inner {
  padding: 0 24px 20px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== BONUS CARDS ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.bonus-item {
  background: linear-gradient(145deg, var(--bg2), var(--bg3));
  border: 1.5px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}

.bonus-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,.3);
}

.bonus-item::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: .1;
}

.bonus-item.welcome::before { background: radial-gradient(circle, #f5c518, transparent); }
.bonus-item.reload::before { background: radial-gradient(circle, #00e676, transparent); }
.bonus-item.cashback::before { background: radial-gradient(circle, #7c3aed, transparent); }
.bonus-item.vip::before { background: radial-gradient(circle, #ff6b35, transparent); }

.bonus-item__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.bonus-item__tag.gold { background: rgba(245,197,24,.15); color: var(--gold); }
.bonus-item__tag.green { background: rgba(0,230,118,.15); color: var(--green); }
.bonus-item__tag.purple { background: rgba(124,58,237,.2); color: #a78bfa; }
.bonus-item__tag.orange { background: rgba(255,107,53,.15); color: #ff6b35; }

.bonus-item__amount {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-item.welcome .bonus-item__amount { color: var(--gold); }
.bonus-item.reload .bonus-item__amount { color: var(--green); }
.bonus-item.cashback .bonus-item__amount { color: #a78bfa; }
.bonus-item.vip .bonus-item__amount { color: #ff6b35; }

.bonus-item__desc {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 8px;
  line-height: 1.5;
}

.bonus-item__sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

/* ===== LIVE TABLE CARDS ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.live-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}

.live-card__thumb {
  position: relative;
  height: 140px;
  background: linear-gradient(135deg, #1a0a3a, #0d1a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.live-card__live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53e3e;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}

.live-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.live-card__players {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  color: var(--text2);
  background: rgba(0,0,0,.6);
  padding: 3px 8px;
  border-radius: 50px;
}

.live-card__info {
  padding: 14px 16px;
}

.live-card__name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.live-card__limits {
  font-size: 12px;
  color: var(--text2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 20px 30px;
  margin-top: 60px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand img { height: 36px; margin-bottom: 16px; }

.footer__brand p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 260px;
}

.footer__col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 14px;
  color: var(--text2);
  transition: color .2s;
}

.footer__col ul li a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text2);
}

.footer__badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer__badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
}

/* ===== SUPPORT WIDGET ===== */
.support-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #5b21b6);
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(124,58,237,.5);
  z-index: 999;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: none;
}

.support-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(124,58,237,.7);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg2) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  font-size: 16px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: repeat(2, 1fr); }
  .hero__bonus-card { display: none; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__actions .btn--outline { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .bonus-banner { padding: 32px 24px; }
  .hero { min-height: 440px; }
  .hero__content { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13,13,31,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 200;
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
}

.mobile-nav__inner {
  display: flex;
  justify-content: space-around;
}

.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 10px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s;
}

.mobile-nav__item.active { color: var(--gold); }

.mobile-nav__item:hover { color: var(--gold); }

.mobile-nav__icon { font-size: 20px; }

@media (max-width: 768px) {
  .mobile-nav { display: block; }
  body { padding-bottom: 70px; }
}

/* ===== SEO ARTICLE ===== */
.seo-article__inner {
  max-width: 860px;
}

.seo-article__heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 36px;
  color: var(--text);
}

.seo-article__heading:first-child { margin-top: 0; }

.seo-article__text {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.seo-article__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.seo-article__link:hover { color: var(--gold2); }

/* ===== SEO FAQ SECTION ===== */
.seo-faq__inner { max-width: 860px; }

/* ===== SEO NAV ===== */
.seo-nav__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.seo-nav__title span { color: var(--gold); }

.seo-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-nav__link {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--text2);
  transition: all .2s;
}

.seo-nav__link:hover {
  border-color: rgba(245,197,24,.3);
  color: var(--gold);
}

/* ===== COUNTER ANIMATION ===== */
.count-up { display: inline-block; }

/* ===== GLOW EFFECTS ===== */
.glow-green { text-shadow: 0 0 20px rgba(0,230,118,.6); }
.glow-gold { text-shadow: 0 0 20px rgba(245,197,24,.6); }
