/* ===========================
   ROOT & RESET
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #1E90FF;
  --blue-dk:   #0066cc;
  --blue-lt:   #55aaff;
  --cyan:      #00d4ff;
  --gold:      #FCD34D;
  --purple:    #7c3aed;
  --purple-lt: #a78bfa;
  --bg:        #080d18;
  --bg2:       #0c1220;
  --card:      #0f1a2e;
  --border:    #152540;
  --text:      #d8eaf8;
  --muted:     #557a99;
  --hdr:       68px;
  --r:         10px;
  --rl:        16px;
  --ease:      0.26s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.skip-link {
  position: absolute; top:-100%; left:16px;
  background: var(--blue); color: #fff;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-weight: 700; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
=========================== */
.text-grad {
  background: linear-gradient(120deg, var(--blue-lt), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }

.sec-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-lt);
  border: 1px solid rgba(85,170,255,.3);
  background: rgba(85,170,255,.06);
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 12px;
}

.sec-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 12px;
}

.sec-desc {
  font-size: .92rem; color: var(--muted);
  max-width: 540px; line-height: 1.7;
}

.sec-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 16px;
  margin-bottom: 36px;
}
.sec-head.center {
  flex-direction: column; align-items: center; text-align: center;
}
.sec-head.center .sec-desc { margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: #fff; border-radius: var(--r);
  font-size: .88rem; font-weight: 700; letter-spacing: .4px;
  transition: all var(--ease);
  box-shadow: 0 4px 18px rgba(30,144,255,.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-lt), var(--blue));
  box-shadow: 0 6px 28px rgba(30,144,255,.55);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 26px;
  background: rgba(0,212,255,.07);
  border: 1px solid rgba(0,212,255,.3);
  color: #fff; border-radius: var(--r);
  font-size: .88rem; font-weight: 600;
  transition: all var(--ease);
}
.btn-ghost:hover { background: rgba(0,212,255,.16); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 26px;
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue-lt); border-radius: var(--r);
  font-size: .88rem; font-weight: 600;
  transition: all var(--ease);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-outline-sm {
  display: inline-flex; align-items: center;
  padding: 7px 16px;
  background: transparent;
  border: 1px solid rgba(85,170,255,.35);
  color: var(--blue-lt); border-radius: var(--r);
  font-size: .78rem; font-weight: 600;
  transition: all var(--ease);
}
.btn-outline-sm:hover { border-color: var(--cyan); background: rgba(0,212,255,.08); }

.btn-sm  { padding: 7px 16px; font-size: .78rem; }
.btn-xl  { padding: 15px 36px; font-size: 1rem; }

.pulse { animation: pulseglow 2.4s ease-in-out infinite; }
@keyframes pulseglow {
  0%,100% { box-shadow: 0 4px 18px rgba(30,144,255,.35); }
  50%      { box-shadow: 0 4px 36px rgba(0,212,255,.65), 0 0 60px rgba(30,144,255,.2); }
}

/* ===========================
   WIN BAR
=========================== */
.win-bar {
  background: linear-gradient(90deg, #03080f, #060d1a, #03080f);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  height: 34px; overflow: hidden;
}
.win-bar__label {
  background: var(--gold);
  color: #000;
  padding: 0 14px; height: 100%;
  display: flex; align-items: center;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .5px; flex-shrink: 0;
}
.win-bar__track {
  display: flex; white-space: nowrap;
  animation: tickerscroll 28s linear infinite;
  padding-left: 24px;
}
.win-bar__track span { padding-right: 60px; font-size: .78rem; color: #99c0d8; }
.win-bar__track b { color: var(--gold); }
@keyframes tickerscroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  /* offset for win-bar */
  margin-top: 34px;
  height: var(--hdr);
  background: rgba(8,13,24,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 900;
  transition: background var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  background: rgba(3,6,12,.97);
  box-shadow: 0 2px 24px rgba(30,144,255,.15);
}

.header__inner {
  height: 100%;
  display: flex; align-items: center; gap: 24px;
}

/* Logo */
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  letter-spacing: 1px; flex-shrink: 0;
  display: flex; align-items: center; gap: 2px;
}
.logo__text { color: #fff; }
.logo__num  { color: var(--cyan); text-shadow: 0 0 14px rgba(0,212,255,.5); }
.logo__drop { font-size: 1.2rem; }

/* Nav */
.nav { flex: 1; }
.nav ul { display: flex; gap: 2px; }
.nav__link {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 11px;
  font-size: .78rem; font-weight: 500;
  color: var(--muted); border-radius: var(--r);
  transition: all var(--ease);
}
.nav__link span { font-size: .9rem; }
.nav__link:hover { color: #fff; background: rgba(30,144,255,.1); }
.nav__link--promo { color: var(--gold); }
.nav__link--promo:hover { background: rgba(252,211,77,.1); }
.nav__link--rtp { color: var(--blue-lt); border: 1px solid rgba(30,144,255,.25); }
.nav__link--rtp:hover { background: rgba(30,144,255,.12); }

.header__auth { display: flex; gap: 8px; flex-shrink: 0; }

.btn-login {
  padding: 7px 18px;
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue-lt); border-radius: var(--r);
  font-size: .8rem; font-weight: 600;
  transition: all var(--ease);
}
.btn-login:hover { background: var(--blue); color: #fff; }

.btn-reg {
  padding: 7px 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: #fff; border-radius: var(--r);
  font-size: .8rem; font-weight: 700;
  transition: all var(--ease);
  box-shadow: 0 2px 12px rgba(30,144,255,.3);
}
.btn-reg:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(30,144,255,.5); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; width: 36px; height: 36px;
  background: none; padding: 4px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
=========================== */
/* compensate for win-bar + header */
.hero {
  min-height: 100vh;
  padding-top: calc(34px + var(--hdr) + 20px);
  padding-bottom: 60px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(30,80,200,.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(0,80,160,.12) 0%, transparent 60%),
    linear-gradient(180deg, #040c1a 0%, #080d18 100%);
}
.hero__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  width: 100%;
}

.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,144,255,.1);
  border: 1px solid rgba(30,144,255,.3);
  padding: 5px 16px; border-radius: 24px;
  font-size: .78rem; font-weight: 700;
  color: var(--blue-lt); margin-bottom: 18px;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pdot 1.5s ease-in-out infinite;
}
@keyframes pdot { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero__title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero__sub {
  font-size: 1rem; color: #88aac8;
  line-height: 1.7; margin-bottom: 24px; max-width: 520px;
}
.hero__sub strong { color: var(--cyan); }

/* Bonus pills */
.bonus-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.bonus-pill {
  padding: 5px 14px; border-radius: 20px;
  font-size: .75rem; font-weight: 600;
  border: 1px solid;
}
.bonus-pill--gold   { background: rgba(252,211,77,.12); border-color: rgba(252,211,77,.4); color: var(--gold); }
.bonus-pill--blue   { background: rgba(30,144,255,.12); border-color: rgba(30,144,255,.4); color: var(--blue-lt); }
.bonus-pill--purple { background: rgba(124,58,237,.12); border-color: rgba(124,58,237,.4); color: var(--purple-lt); }
.bonus-pill--green  { background: rgba(0,180,80,.12);  border-color: rgba(0,180,80,.4);  color: #4ade80; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* Stats */
.hero__stats {
  display: flex; align-items: center; gap: 20px;
  background: rgba(15,26,46,.7);
  border: 1px solid var(--border);
  border-radius: var(--rl); padding: 18px 22px;
  backdrop-filter: blur(8px);
}
.hstat { text-align: center; }
.hstat strong, .hstat__num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--cyan); display: inline;
}
.hstat span { font-size: 1.1rem; color: var(--cyan); font-weight: 700; }
.hstat p { font-size: .68rem; color: var(--muted); margin-top: 2px; }
.hstat__sep { width: 1px; height: 38px; background: var(--border); flex-shrink: 0; }

/* Hero visual */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.hero-card { position: relative; width: 300px; height: 340px; }

.hcard {
  position: absolute; border-radius: var(--rl);
  border: 1px solid var(--border);
  transition: transform .5s ease;
}
.hcard--back {
  width: 210px; height: 250px;
  background: linear-gradient(135deg, #040e1e, #091c38);
  top: 70px; left: 50px;
  transform: rotate(-8deg); opacity: .45;
}
.hcard--mid {
  width: 240px; height: 275px;
  background: linear-gradient(135deg, #060f20, #0b1e3d);
  top: 36px; left: 28px;
  transform: rotate(-3deg);
  border-color: rgba(30,144,255,.25);
}
.hcard--front {
  width: 270px; height: 305px;
  background: linear-gradient(135deg, #07101e, #0d2045);
  top: 0; left: 0;
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 20px 60px rgba(0,80,200,.3), 0 0 0 1px rgba(0,212,255,.1);
}
.hcard--front:hover { transform: translateY(-8px) rotate(0deg); }

.hcard__body { padding: 22px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.hcard__emoji { font-size: 3rem; margin-bottom: 4px; }
.hcard__name { font-size: .95rem; font-weight: 700; color: #cce6f8; margin-bottom: 8px; }
.hcard__win, .hcard__jackpot {
  background: rgba(0,20,40,.6); border: 1px solid rgba(30,144,255,.2);
  border-radius: 8px; padding: 10px 14px;
}
.hcard__win span, .hcard__jackpot span {
  font-size: .62rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 3px;
}
.hcard__win b, .hcard__jackpot b {
  font-family: 'Orbitron', sans-serif;
  font-size: .95rem; color: var(--cyan); font-weight: 700;
}
.hcard__rtp {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; color: var(--muted); margin-top: 8px;
}
.rtp-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; display: inline-block;
  box-shadow: 0 0 6px #22c55e;
  animation: pdot 1.2s ease-in-out infinite;
}

.hfloat {
  position: absolute; border-radius: 20px;
  font-size: .72rem; font-weight: 700;
  padding: 5px 12px;
  animation: floatup 3s ease-in-out infinite;
}
.hfloat--1 { background: var(--blue); color: #fff; top: -12px; right: 20px; animation-delay: 0s; }
.hfloat--2 { background: rgba(0,212,255,.12); border: 1px solid var(--cyan); color: var(--cyan); bottom: 30px; right: -16px; animation-delay: 1s; }
.hfloat--3 { background: rgba(252,211,77,.12); border: 1px solid var(--gold); color: var(--gold); bottom: -8px; left: 10px; animation-delay: 2s; }

@keyframes floatup {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

.hero__wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero__wave svg { display: block; width: 100%; height: 72px; }

/* ===========================
   TRUST BAR
=========================== */
.trustbar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trustbar__list {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 12px 36px;
}
.tb-item { display: flex; align-items: center; gap: 10px; }
.tb-item > span { font-size: 1.3rem; }
.tb-item b { display: block; font-size: .82rem; color: #cce0f0; }
.tb-item p { font-size: .7rem; color: var(--muted); }

/* ===========================
   CAT TABS
=========================== */
.cat-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.cat-tabs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 18px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px;
  font-size: .78rem; font-weight: 600;
  color: var(--muted); white-space: nowrap;
  transition: all var(--ease); flex-shrink: 0;
}
.cat-tab:hover { border-color: var(--blue); color: #fff; }
.cat-tab.active {
  background: var(--blue); border-color: var(--blue);
  color: #fff; box-shadow: 0 0 16px rgba(30,144,255,.4);
}

/* ===========================
   GAMES SECTION
=========================== */
.games-section { padding: 60px 0 48px; background: var(--bg); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}

.gcard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: all var(--ease);
}
.gcard:hover {
  border-color: var(--blue); transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.5), 0 0 0 1px rgba(30,144,255,.25);
}

.gcard__thumb {
  aspect-ratio: 3/4; display: flex;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.gcard__emoji { font-size: 3.8rem; transition: transform var(--ease); }
.gcard:hover .gcard__emoji { transform: scale(1.1); }

.gcard__hover {
  position: absolute; inset: 0;
  background: rgba(0,8,20,.78);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity var(--ease);
}
.gcard:hover .gcard__hover { opacity: 1; }

.gcard__badge {
  position: absolute; top: 8px; left: 8px;
  padding: 2px 8px; border-radius: 4px;
  font-size: .6rem; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase;
}
.badge--hot    { background: var(--blue); color: #fff; }
.badge--new    { background: #15803d; color: #bbf7d0; }
.badge--jackpot{ background: var(--gold); color: #000; }
.badge--live   { background: #7c3aed; color: #e9d5ff; animation: liveblink 1.2s ease-in-out infinite; }
@keyframes liveblink { 0%,100%{opacity:1} 50%{opacity:.4} }

.gcard__prov {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,10,24,.8);
  border: 1px solid rgba(30,144,255,.2);
  color: var(--muted); padding: 2px 6px;
  border-radius: 4px; font-size: .58rem; font-weight: 700;
}

.gcard__info { padding: 10px 12px; }
.gcard__name { font-size: .8rem; font-weight: 700; color: #bdd8ee; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gcard__meta { display: flex; align-items: center; gap: 8px; font-size: .68rem; color: var(--muted); }

.rtp-live {
  color: #22c55e; font-weight: 700; font-size: .65rem;
  animation: liveblink 1.2s ease-in-out infinite;
}

.games-more { text-align: center; margin-top: 36px; }

/* ===========================
   RTP SECTION
=========================== */
.rtp-section { padding: 60px 0; background: var(--bg2); border-top: 1px solid var(--border); }

.rtp-updated {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; color: var(--muted);
}
.rtp-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.rtp-dot.anim { box-shadow: 0 0 8px #22c55e; animation: pdot 1.2s ease-in-out infinite; }

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

.rtp-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  transition: all var(--ease);
}
.rtp-card:hover { border-color: var(--blue); }

.rtp-card__game {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.rtp-card__game > span { font-size: 2rem; }
.rtp-name { font-size: .88rem; font-weight: 700; color: #bdd8ee; }
.rtp-prov { font-size: .7rem; color: var(--muted); }

.rtp-bar-wrap {
  background: rgba(0,20,50,.6); border-radius: 4px;
  height: 7px; overflow: hidden; margin-bottom: 10px;
}
.rtp-bar {
  height: 100%; width: var(--pct);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 4px;
  animation: rtpfill 1.2s ease forwards;
}
@keyframes rtpfill { from { width: 0; } }

.rtp-val { display: flex; align-items: center; justify-content: space-between; }
.rtp-val b { font-family: 'Orbitron', sans-serif; font-size: 1rem; color: var(--cyan); }
.rtp-status { font-size: .72rem; font-weight: 700; }
.rtp-status.hot { color: #f97316; }

/* ===========================
   PROMO SECTION
=========================== */
.promo-section { padding: 60px 0; background: var(--bg); }

.promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 16px; align-items: start;
}

.promo-card {
  border-radius: var(--rl); padding: 26px 22px;
  border: 1px solid rgba(30,144,255,.1);
  position: relative; overflow: hidden;
  transition: all var(--ease);
}
.promo-card::before {
  content: '';
  position: absolute; top: -40%; right: -40%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(0,212,255,.05) 0%, transparent 70%);
  pointer-events: none;
}
.promo-card:hover { transform: translateY(-5px); border-color: rgba(30,144,255,.35); box-shadow: 0 14px 40px rgba(0,20,60,.5); }
.promo-card--main { border-color: rgba(30,144,255,.3); box-shadow: 0 0 0 1px rgba(30,144,255,.15), 0 8px 32px rgba(0,50,120,.25); }

.promo-tag {
  position: absolute; top: -1px; right: 16px;
  background: linear-gradient(135deg, var(--blue), #00aadd);
  color: #fff; font-size: .62rem; font-weight: 800;
  padding: 3px 12px; border-radius: 0 0 8px 8px;
  letter-spacing: .5px;
}

.promo-icon { font-size: 2.2rem; margin-bottom: 10px; }
.promo-card h3 { font-size: .95rem; font-weight: 700; color: #cce0ee; margin-bottom: 4px; }
.promo-amount { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--cyan); margin-bottom: 10px; }
.promo-card > p { font-size: .8rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

.promo-card ul { margin-bottom: 18px; }
.promo-card ul li { font-size: .76rem; color: #6ab0cc; margin-bottom: 4px; }

/* ===========================
   HOW TO
=========================== */
.howto-section { padding: 60px 0; background: var(--bg2); border-top: 1px solid var(--border); }

.howto-grid {
  display: flex; align-items: flex-start;
  gap: 0; justify-content: center;
}

.howto-item { text-align: center; flex: 1; max-width: 280px; padding: 0 20px; }
.howto-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem; font-weight: 900;
  color: rgba(30,144,255,.15); line-height: 1; margin-bottom: -8px;
}
.howto-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.howto-item h3 { font-size: 1rem; font-weight: 700; color: #cce0ee; margin-bottom: 8px; }
.howto-item p  { font-size: .82rem; color: var(--muted); line-height: 1.65; }

.howto-arr { font-size: 2rem; color: var(--blue); padding-top: 40px; opacity: .5; flex-shrink: 0; }

.howto-cta { text-align: center; margin-top: 44px; }

/* ===========================
   PAYMENT
=========================== */
.pay-section { padding: 56px 0; background: var(--bg); border-top: 1px solid var(--border); }

.pay-grid {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
  margin-top: 8px;
}

.pay-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 14px 18px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); min-width: 90px;
  transition: all var(--ease); cursor: pointer;
}
.pay-item:hover { border-color: var(--blue); transform: translateY(-2px); }
.pay-item--highlight {
  border-color: var(--gold);
  background: rgba(252,211,77,.07);
  box-shadow: 0 0 0 1px rgba(252,211,77,.2);
}
.pay-icon { font-size: 1.5rem; }
.pay-item span { font-size: .72rem; font-weight: 700; color: var(--muted); }
.pay-item--highlight span { color: var(--gold); }

/* ===========================
   FAQ
=========================== */
.faq-section { padding: 60px 0; background: var(--bg2); border-top: 1px solid var(--border); }

.faq-inner {
  display: grid; grid-template-columns: 1fr 1.7fr;
  gap: 60px; align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--blue); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px;
  background: none; color: #bdd8ee;
  font-size: .88rem; font-weight: 600; text-align: left; gap: 10px;
  transition: color var(--ease);
}
.faq-q:hover { color: #fff; }

.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--blue); font-weight: 300;
  transition: all var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(45deg); }

.faq-a { padding: 0 18px 16px; font-size: .83rem; color: var(--muted); line-height: 1.7; }
.faq-a strong { color: var(--blue-lt); }

/* ===========================
   CTA SECTION
=========================== */
.cta-section { padding: 60px 0; background: var(--bg); border-top: 1px solid var(--border); }

.cta-box {
  position: relative;
  background: linear-gradient(135deg, #061628, #0a2046);
  border: 1px solid rgba(30,144,255,.25);
  border-radius: 20px; padding: 56px 48px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,60,180,.2);
}
.cta-glow {
  position: absolute; top: -50%; left: -20%;
  width: 60%; height: 150%;
  background: radial-gradient(ellipse, rgba(30,144,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }

.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 14px;
}

.cta-desc { font-size: .95rem; color: #7aaccf; line-height: 1.7; margin-bottom: 32px; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }

.btn-tg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px;
  background: rgba(30,144,255,.1);
  border: 1px solid rgba(30,144,255,.3);
  color: #fff; border-radius: var(--r);
  font-size: .95rem; font-weight: 600;
  transition: all var(--ease);
}
.btn-tg:hover { background: rgba(30,144,255,.22); }

.cta-badges {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.cta-badges span {
  font-size: .77rem; color: #6ab0cc;
  background: rgba(30,144,255,.08);
  border: 1px solid rgba(30,144,255,.18);
  padding: 4px 12px; border-radius: 12px;
}

/* ===========================
   FOOTER
=========================== */
.footer { background: #030912; border-top: 1px solid #0c1a2a; padding: 52px 0 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 44px; padding-bottom: 44px;
}

.footer__brand p { font-size: .8rem; color: #2a4a5e; line-height: 1.7; margin: 12px 0 14px; max-width: 300px; }
.footer__brand address a { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: #2a4a5e; transition: color var(--ease); }
.footer__brand address a:hover { color: var(--blue-lt); }

.footer__col h3 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #6ab0cc; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid #0c1a2a; }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { font-size: .8rem; color: #2a4a5e; transition: color var(--ease); }
.footer__col a:hover { color: #8ab8cc; }

.footer-provs, .footer-certs {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.footer-provs span, .footer-certs span {
  font-size: .7rem; font-weight: 600; padding: 3px 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; color: #3a6070;
}

.footer__bottom { border-top: 1px solid #0c1a2a; padding: 18px 0; text-align: center; }
.footer__bottom p { font-size: .73rem; color: #1e3040; margin-bottom: 5px; }
.footer-disc { max-width: 560px; margin: 0 auto; line-height: 1.5; }

/* ===========================
   FLOATING BUTTONS
=========================== */
.float-wrap {
  position: fixed; left: 14px; bottom: 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 800;
}
.float-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.3rem; text-decoration: none;
  transition: transform var(--ease);
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.float-btn:hover { transform: scale(1.12); }
.float-lbl { font-size: .5rem; font-weight: 800; margin-top: 2px; letter-spacing: .3px; }
.float-tg  { background: linear-gradient(135deg, #0088cc, #006699); color: #fff; }
.float-cs  { background: linear-gradient(135deg, #1E90FF, #005599); color: #fff; }
.float-reg { background: linear-gradient(135deg, var(--gold), #e09b00); color: #000; }

/* ===========================
   PARTICLES
=========================== */
.particle {
  position: absolute; border-radius: 50%;
  background: var(--cyan); opacity: 0;
  animation: pfloat linear infinite;
}
@keyframes pfloat {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: .5; }
  90%  { opacity: .08; }
  100% { opacity: 0; transform: translateY(-80vh) scale(.3); }
}

/* fade-up */
.fadein { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.fadein.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1060px) {
  .hero__inner   { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__visual  { order: -1; }
  .hero__sub, .sec-desc { margin: 0 auto; }
  .hero__actions, .bonus-pills { justify-content: center; }
  .hero__stats   { justify-content: center; }
  .promo-grid    { grid-template-columns: 1fr 1fr; }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 28px; }
  .faq-inner     { grid-template-columns: 1fr; gap: 28px; }
  .rtp-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav { display: none; position: fixed; top: calc(34px + var(--hdr)); left: 0; right: 0; background: rgba(3,6,12,.98); border-bottom: 1px solid var(--border); backdrop-filter: blur(14px); padding: 16px 24px; z-index: 899; }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav__link { padding: 13px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .header__auth { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .games-grid    { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .promo-grid    { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; }
  .howto-grid    { flex-direction: column; align-items: center; }
  .howto-arr     { transform: rotate(90deg); padding: 0; }
  .cta-box       { padding: 36px 22px; }
}

@media (max-width: 480px) {
  .hero__title   { font-size: 1.9rem; }
  .hero__actions { flex-direction: column; }
  .hero__stats   { flex-direction: column; gap: 14px; }
  .hstat__sep    { width: 40px; height: 1px; }
  .games-grid    { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero__pill    { font-size: .7rem; }
  .hero-card     { width: 250px; height: 290px; }
  .hcard--front  { width: 230px; height: 270px; }
  .hcard--mid, .hcard--back { display: none; }
  .rtp-grid      { grid-template-columns: 1fr; }
}
