/* =============================================
   TEMPLATE 5 — Neon-Teal / Deep Space
   Fonts: Syne (headings) + DM Sans (body)
   Accent: #00e5c8 (neon teal) + #ff3d6b (neon pink CTA)
   BG: #0b0e1a (deep navy) + #111629 cards
   Style: futuristic, glassy, neon glow
   ============================================= */

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 10px; scroll-behavior: smooth; }
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.65;
  color: #e2e8f0;
  background: #0b0e1a;
  min-width: 36rem;
}
ul, ol { margin: 0; padding: 0; }
img { border-style: none; max-width: 100%; height: auto; display: block; }
a { background-color: transparent; }
h1,h2,h3,h4,h5,h6,p { margin: 0; }

.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; border: 0; clip: rect(0 0 0 0); }

:root {
  --teal:   #00e5c8;
  --teal-d: #00b8a0;
  --teal-g: rgba(0,229,200,.12);
  --pink:   #ff3d6b;
  --pink-d: #d42050;
  --navy:   #0b0e1a;
  --navy2:  #111629;
  --navy3:  #181e35;
  --card:   #131828;
  --brd:    rgba(255,255,255,.08);
  --brd2:   rgba(0,229,200,.25);
  --text:   #e2e8f0;
  --muted:  #7a88a8;
  --white:  #ffffff;
  --green:  #22c55e;
  --red:    #ef4444;
  --r:      0.8rem;
  --r2:     1.4rem;
  --sh:     0 4px 24px rgba(0,0,0,.4);
  --sh-t:   0 0 20px rgba(0,229,200,.15);
  --sh-p:   0 0 20px rgba(255,61,107,.2);
}

.container { width: 100%; max-width: 120rem; margin: 0 auto; padding: 0 1.6rem; }
.wrapper { flex: 1 0 auto; padding-top: 6.4rem; }

/* =============================================
   HEADER — glassy dark, teal underline
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: 6.4rem;
  background: rgba(11,14,26,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--brd);
}
.header__inner { display: flex; align-items: center; height: 100%; gap: 2rem; }

/* LOGO */
.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; flex-shrink: 0; }
.logo__dot {
  width: 1rem; height: 1rem;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal), 0 0 20px var(--teal);
  flex-shrink: 0;
}
.logo__name {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
}
.logo__name em { font-style: normal; color: var(--teal); }
.logo__name--lt { color: rgba(255,255,255,.8); }

/* NAV */
.header__nav { margin-left: auto; }
.header__nav ul { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.header__nav a {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.3rem;
  font-size: 1.4rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  border-radius: var(--r);
  transition: color 0.15s, background 0.15s;
}
.header__nav a:hover { color: var(--teal); background: var(--teal-g); }

/* ACTIONS */
.header__actions { display: flex; align-items: center; gap: 0.8rem; }
.hdr-search, .hdr-burger {
  width: 3.6rem; height: 3.6rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  cursor: pointer; color: var(--muted);
  transition: border-color 0.15s, color 0.15s;
}
.hdr-search svg, .hdr-burger svg { width: 1.8rem; height: 1.8rem; }
.hdr-search:hover, .hdr-burger:hover { border-color: var(--teal); color: var(--teal); }
.hdr-burger { display: none; }

.hdr-gift {
  position: relative; width: 3.6rem; height: 3.6rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.hdr-gift svg { width: 2.2rem; height: 2.2rem; color: var(--pink); }
.hdr-gift span {
  position: absolute; top: 1px; right: 1px;
  width: 1.6rem; height: 1.6rem;
  background: var(--pink); color: #fff;
  font-size: 0.9rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--navy);
}

/* =============================================
   HERO — asymmetric two-column
   ============================================= */
.hero {
  background: var(--navy);
  padding: 8rem 0 6rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  width: 80rem; height: 80rem;
  background: radial-gradient(circle, rgba(0,229,200,.08) 0%, transparent 65%);
  top: -30rem; left: -20rem;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 60rem; height: 60rem;
  background: radial-gradient(circle, rgba(255,61,107,.06) 0%, transparent 65%);
  bottom: -20rem; right: -10rem;
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: flex; gap: 6rem; align-items: center;
}

/* TEXT COL */
.hero__text-col { flex: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  background: var(--teal-g);
  border: 1px solid var(--brd2);
  border-radius: 10rem;
  font-size: 1.2rem; font-weight: 600;
  color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 2.4rem;
}
.hero__eyebrow svg { width: 1.4rem; height: 1.4rem; }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 6.4rem; font-weight: 800;
  line-height: 1.0; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: 2rem;
}
.hero h1 span { color: var(--teal); text-shadow: 0 0 30px rgba(0,229,200,.4); }
.hero__sub { font-size: 1.7rem; color: var(--muted); margin-bottom: 3.2rem; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 1.6rem; margin-bottom: 3.2rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.3rem 3rem;
  background: var(--teal); color: #0b0e1a;
  font-size: 1.5rem; font-weight: 700;
  text-decoration: none; border-radius: var(--r);
  transition: background 0.15s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 24px rgba(0,229,200,.35);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 0 36px rgba(0,229,200,.5); }
.hero__link {
  font-size: 1.5rem; font-weight: 600;
  color: var(--muted); text-decoration: none;
  transition: color 0.15s;
}
.hero__link:hover { color: var(--teal); }
.hero__trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero__trust span { font-size: 1.3rem; color: var(--muted); font-weight: 500; }

/* CATS COL */
.hero__cats-col { flex-shrink: 0; width: 32rem; }
.hero__cats-title {
  font-size: 1.2rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1.2rem;
}
.hero__cats { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.hcat {
  display: flex; align-items: center; gap: 1.4rem;
  padding: 1.4rem 1.6rem;
  background: var(--navy2);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  text-decoration: none; color: var(--text);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.hcat:hover { border-color: var(--teal); background: var(--navy3); box-shadow: var(--sh-t); }
.hcat span { font-size: 2.2rem; flex-shrink: 0; }
.hcat b { font-size: 1.5rem; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--white); display: block; }
.hcat em { font-style: normal; font-size: 1.2rem; color: var(--muted); display: block; }

/* =============================================
   COLS
   ============================================= */
.cols { padding: 4.8rem 0; }
.cols__wrap { display: flex; gap: 2.8rem; align-items: flex-start; }
.cols__main { flex: 1 1 0; min-width: 0; }
.cols__sidebar { width: 28rem; flex-shrink: 0; }

/* SECTION HEAD */
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.4rem; flex-wrap: wrap; gap: 1rem; }
.sec-head__left { display: flex; align-items: baseline; gap: 1.2rem; }
.sec-num { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--teal); opacity: 0.6; }
.sec-head h2 { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.sec-pill {
  padding: 0.4rem 1.2rem;
  background: var(--teal-g);
  border: 1px solid var(--brd2);
  color: var(--teal);
  font-size: 1.2rem; font-weight: 700;
  border-radius: 10rem; text-transform: uppercase; letter-spacing: 0.05em;
  white-space: nowrap;
}

/* =============================================
   CASINO CARDS — glassy dark panels
   ============================================= */
.clist { list-style: none; }
.clist > li + li { margin-top: 1rem; }

.cc {
  display: flex; align-items: center; gap: 1.6rem;
  padding: 2rem 2.4rem;
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  box-shadow: var(--sh);
  position: relative; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cc:hover { transform: translateY(-2px); border-color: rgba(0,229,200,.3); box-shadow: var(--sh), var(--sh-t); }

.cc--gold  { border-color: rgba(0,229,200,.35); box-shadow: var(--sh), 0 0 30px rgba(0,229,200,.08); }
.cc--silver { border-color: rgba(180,180,200,.2); }
.cc--bronze { border-color: rgba(200,150,80,.2); }

/* top glow line */
.cc--gold::before  { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), transparent); }
.cc--silver::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #b0b8c8, transparent); }
.cc--bronze::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #c89050, transparent); }

.cc__rank { flex-shrink: 0; min-width: 4.4rem; text-align: center; }
.cc__num {
  display: block;
  font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: var(--teal); line-height: 1;
  text-shadow: 0 0 12px rgba(0,229,200,.5);
}
.cc__num--plain { color: rgba(255,255,255,.15); text-shadow: none; }
.cc__medal { font-size: 1.8rem; display: block; line-height: 1; }

.cc__logo {
  width: 8rem; height: 5.2rem; flex-shrink: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  padding: 0.6rem; overflow: hidden;
}
.cc__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.cc__mid { flex: 1 1 0; min-width: 0; }
.cc__name {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.4rem;
}

.cc__stars { display: flex; align-items: center; gap: 0.2rem; margin-bottom: 0.8rem; }
.cc__stars svg { width: 1.5rem; height: 1.5rem; color: var(--teal); }
.cc__stars .s-dim { opacity: 0.35; }
.cc__stars .s-empty { color: rgba(255,255,255,.1); }
.cc__stars b { font-size: 1.3rem; font-weight: 600; color: var(--muted); margin-left: 0.5rem; }

.cc__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.8rem; }
.cc__chips li {
  padding: 0.25rem 0.9rem;
  background: rgba(0,229,200,.1);
  border: 1px solid rgba(0,229,200,.2);
  color: var(--teal);
  font-size: 1.2rem; font-weight: 600;
  border-radius: 0.4rem; white-space: nowrap;
}
.cc__pays { display: flex; align-items: center; gap: 0.5rem; }
.cc__pays img {
  width: 2.8rem; height: 1.8rem;
  object-fit: contain;
  background: rgba(255,255,255,.07);
  border-radius: 0.3rem; padding: 0.2rem;
}

.cc__right { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.cc__bonus {
  text-align: center;
  padding: 1.2rem 1.6rem;
  background: rgba(0,229,200,.07);
  border: 1px solid rgba(0,229,200,.18);
  border-radius: var(--r);
  min-width: 11rem;
}
.cc__bonus strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem; font-weight: 800;
  color: var(--teal); line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 16px rgba(0,229,200,.4);
}
.cc__bonus strong small { font-size: 1.2rem; font-weight: 600; display: block; color: rgba(0,229,200,.65); }
.cc__bonus span { font-size: 1.1rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.3rem; display: block; }
.cc__review { font-size: 1.3rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.cc__review:hover { color: var(--teal); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 12rem; padding: 1.1rem 2rem;
  background: var(--pink); color: #fff;
  font-size: 1.5rem; font-weight: 700;
  border: none; border-radius: var(--r);
  cursor: pointer; text-decoration: none;
  transition: background 0.15s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(255,61,107,.3);
  letter-spacing: 0.01em;
}
.btn-cta:hover { background: var(--pink-d); transform: translateY(-1px); box-shadow: var(--sh-p); }

.button {
  display: block; padding: 1rem 1.8rem; text-align: center;
  color: #fff; font-size: 1.5rem; font-weight: 700;
  text-decoration: none; background: var(--pink);
  border-radius: var(--r); border: none; cursor: pointer;
  max-width: 100%; transition: background 0.15s;
}
.button:hover { background: var(--pink-d); }

/* =============================================
   SIDEBAR
   ============================================= */
.sb-block {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  overflow: hidden;
}
.sb-block__head {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.4rem 1.8rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--teal);
  background: rgba(0,229,200,.06);
  border-bottom: 1px solid rgba(0,229,200,.15);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.sb-block__head svg { width: 1.4rem; height: 1.4rem; }

.sbtop { list-style: none; counter-reset: sbc; }
.sbtop__item { counter-increment: sbc; border-bottom: 1px solid var(--brd); }
.sbtop__item:last-child { border-bottom: none; }
.sbtop__item--1 { background: rgba(0,229,200,.04); }

.sbtop__link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.6rem 1.2rem 3.8rem;
  text-decoration: none; position: relative;
  transition: background 0.15s;
}
.sbtop__link::before {
  content: counter(sbc);
  position: absolute; left: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: var(--teal); opacity: 0.7;
}
.sbtop__link:hover { background: var(--teal-g); }
.sbtop__logo {
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%; background: rgba(255,255,255,.07);
  border: 1px solid var(--brd); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0.3rem; overflow: hidden;
}
.sbtop__logo img { max-width: 80%; max-height: 80%; object-fit: contain; }
.sbtop__name { font-size: 1.4rem; font-weight: 600; color: var(--white); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sbtop__bonus { font-size: 1.2rem; color: var(--teal); font-weight: 500; margin: 0; }

.sblinks { list-style: none; }
.sblinks li { border-bottom: 1px solid rgba(255,255,255,.04); }
.sblinks li:last-child { border-bottom: none; }
.sblinks a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.6rem;
  font-size: 1.4rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.sblinks a::after { content: '›'; font-size: 1.8rem; color: rgba(255,255,255,.15); }
.sblinks a:hover { background: var(--teal-g); color: var(--teal); }
.sblinks a:hover::after { color: var(--teal); }

/* =============================================
   CONTENT
   ============================================= */
.content { padding: 0 0 5rem; }
.content .container > p { font-size: 1.65rem; color: var(--muted); line-height: 1.8; }
.content .container > p:not(:last-child) { margin-bottom: 2rem; }

.heading {
  display: flex; align-items: baseline; gap: 1rem;
  margin: 4rem 0 1.4rem;
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em;
}
.h-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--teal); opacity: 0.5;
}

/* =============================================
   CHECK LIST
   ============================================= */
.check-list { font-size: 1.6rem; margin-bottom: 3.6rem; }
.check-list ul, .check-list ol { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr)); gap: 1.2rem; }
.check-list li {
  padding: 2.2rem 2rem 2.2rem 5.6rem;
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.check-list li:hover { border-color: rgba(0,229,200,.3); box-shadow: var(--sh-t); }
.check-list li::before {
  content: '✓';
  position: absolute; top: 2.2rem; left: 1.8rem;
  width: 2.6rem; height: 2.6rem;
  background: var(--teal-g);
  border: 1px solid var(--brd2);
  color: var(--teal);
  font-size: 1.3rem; font-weight: 800;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.check-list h3 { font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.check-list p { color: var(--muted); font-size: 1.45rem; line-height: 1.65; }
.check-list a { color: var(--teal); text-decoration: underline; }
.check-list a:hover { text-decoration: none; }

/* =============================================
   RTP
   ============================================= */
.rtp-list { margin-bottom: 3.6rem; }
.rtp-list__items { list-style: none; display: flex; flex-direction: column; gap: 1.6rem; }
.rtp-card {
  display: flex; gap: 2.4rem;
  padding: 2.8rem;
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  position: relative; overflow: hidden;
}
.rtp-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--pink), transparent);
}
.rtp-card__col { flex: 1 1 50%; min-width: 0; }
.rtp-card__title { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }
.rtp-card__text { color: var(--muted); font-size: 1.5rem; line-height: 1.7; margin-bottom: 1.6rem; }
.rtp-card__list { list-style: none; margin-bottom: 2rem; }
.rtp-card__list li { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid var(--brd); font-size: 1.5rem; }
.rtp-card__list li:last-child { border-bottom: none; }
.rtp-card__list b { color: var(--muted); }
.rtp-card__list span { font-weight: 700; color: var(--white); }
.rtp-card__img { border-radius: var(--r); overflow: hidden; margin-bottom: 1.4rem; height: 18rem; background: var(--navy3); }
.rtp-card__img img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   LIST-TOPS
   ============================================= */
.list-tops { margin-bottom: 3.2rem; }
.list-tops ol { list-style: none; counter-reset: lt; display: flex; flex-direction: column; gap: 0.8rem; }
.list-tops li {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem;
  padding: 1.6rem 2rem;
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  counter-increment: lt;
  transition: border-color 0.2s;
}
.list-tops li:hover { border-color: rgba(0,229,200,.25); }
.list-tops li::before {
  content: counter(lt);
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: rgba(0,229,200,.2); min-width: 2.4rem; text-align: center;
}
.list-tops li:first-child { background: var(--navy3); border-color: rgba(0,229,200,.3); }
.list-tops li:first-child::before { color: var(--teal); }
.list-tops li:first-child span { color: rgba(255,255,255,.7); }
.list-tops li:first-child .referral-btn { background: var(--teal); color: var(--navy); box-shadow: 0 0 16px rgba(0,229,200,.3); }
.list-tops li:first-child .referral-btn:hover { background: var(--teal-d); }
.list-tops span { font-size: 1.4rem; font-weight: 500; color: var(--muted); flex-shrink: 0; }
.list-tops__logo {
  width: 6rem; height: 3.8rem;
  background: rgba(255,255,255,.07);
  border-radius: 0.6rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 0.4rem;
}
.list-tops__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.list-tops .referral-btn {
  margin-left: auto; padding: 0.9rem 2rem;
  background: var(--pink); color: #fff;
  font-size: 1.4rem; font-weight: 700;
  border: none; border-radius: var(--r);
  cursor: pointer; white-space: nowrap;
  transition: background 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 14px rgba(255,61,107,.25);
}
.list-tops .referral-btn:hover { background: var(--pink-d); }

/* =============================================
   PROS / CONS
   ============================================= */
.pros-cons { display: flex; gap: 1.6rem; margin-bottom: 3.6rem; }
.pros-cons__item {
  flex: 1; padding: 2.4rem;
  border-radius: var(--r2); border: 1px solid;
}
.pros-cons__item--pros { background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.2); }
.pros-cons__item--cons { background: rgba(239,68,68,.06); border-color: rgba(239,68,68,.2); }
.pros-cons__title { font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 700; margin-bottom: 1.6rem; }
.pros-cons__item--pros .pros-cons__title { color: #4ade80; }
.pros-cons__item--cons .pros-cons__title { color: #f87171; }
.pros-cons__list { list-style: none; }
.pros-cons__list li { font-size: 1.5rem; color: var(--muted); padding: 0.7rem 0 0.7rem 2rem; position: relative; }
.pros-cons__list li + li { border-top: 1px solid rgba(255,255,255,.04); }
.pros-cons__list li::before { position: absolute; left: 0; top: 0.9rem; font-size: 0.9rem; content: '●'; }
.pros-cons__item--pros .pros-cons__list li::before { color: var(--green); }
.pros-cons__item--cons .pros-cons__list li::before { color: var(--red); }

/* =============================================
   TABLE
   ============================================= */
.table {
  margin-bottom: 3.6rem;
  background: var(--card);
  border-radius: var(--r2);
  overflow-x: auto;
  border: 1px solid var(--brd);
}
.table table { width: 100%; min-width: 80rem; border-collapse: collapse; }
.table table thead { background: var(--navy3); }
.table table th {
  padding: 1.6rem 1.2rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--teal); opacity: 0.8;
  text-align: center;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(0,229,200,.15);
}
.table table tbody tr:nth-child(odd) { background: rgba(255,255,255,.015); }
.table table tbody tr:not(:last-child) { border-bottom: 1px solid var(--brd); }
.table table td { padding: 1.2rem 1rem; font-size: 1.5rem; text-align: center; color: var(--text); }
.table table .button { width: auto; padding: 0.7rem 1.6rem; font-size: 1.3rem; margin: 0 auto; display: inline-block; }

/* =============================================
   PAYMENT INFO
   ============================================= */
.payment-info { margin-bottom: 3.6rem; }
.payment-info ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.6rem; }
.payment-info li {
  flex: 1 1 28rem; padding: 2.4rem;
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  transition: border-color 0.2s;
}
.payment-info li:hover { border-color: rgba(0,229,200,.25); }
.payment-info__head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.2rem; }
.payment-info__img {
  width: 6rem; height: 3.8rem;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--brd);
  border-radius: var(--r); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; padding: 0.4rem;
}
.payment-info__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.payment-info h3 { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--white); }
.payment-info p { font-size: 1.5rem; color: var(--muted); line-height: 1.7; }

/* =============================================
   STEPPER
   ============================================= */
.stepper { margin-bottom: 3.6rem; }
.stepper__list { list-style: none; counter-reset: sc; display: flex; flex-direction: column; gap: 0.8rem; }
.stepper__list li {
  padding: 2.2rem 2.4rem 2.2rem 7rem;
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  position: relative; counter-increment: sc;
  transition: border-color 0.2s;
}
.stepper__list li:hover { border-color: rgba(0,229,200,.25); }
.stepper__list li::before {
  content: counter(sc);
  position: absolute; top: 50%; left: 2rem;
  transform: translateY(-50%);
  width: 3.4rem; height: 3.4rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  background: var(--teal-g);
  border: 1px solid var(--brd2);
  color: var(--teal);
  border-radius: var(--r);
}
.stepper__list li:last-child::before { background: rgba(255,61,107,.1); border-color: rgba(255,61,107,.3); color: var(--pink); }
.stepper__title { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.stepper__list p { font-size: 1.5rem; color: var(--muted); }

/* =============================================
   FAQ
   ============================================= */
.faq { margin-bottom: 3.6rem; }
.faq__card {
  background: var(--card);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  margin-bottom: 0.8rem; overflow: hidden;
  transition: border-color 0.2s;
}
.faq__card:has(.faq__input:checked) { border-color: rgba(0,229,200,.3); }
.faq__input:checked + .faq__label { color: var(--teal); }
.faq__input:checked ~ .faq__body { max-height: 60rem; padding: 0 2.4rem 2rem; opacity: 1; }
.faq__label {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 2.4rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.65rem; font-weight: 700; color: var(--white);
  cursor: pointer; user-select: none; gap: 1rem;
  transition: color 0.15s;
}
.faq__label:hover { color: var(--teal); }
.faq__label::after {
  content: '+';
  flex-shrink: 0;
  width: 2.6rem; height: 2.6rem;
  background: var(--teal-g);
  border: 1px solid var(--brd2);
  color: var(--teal);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 400; line-height: 1;
  transition: background 0.15s;
}
.faq__input:checked + .faq__label::after { content: '−'; background: var(--teal); color: #0b0e1a; border-color: var(--teal); }
.faq__body { max-height: 0; opacity: 0; margin: 0; padding: 0 2.4rem; font-size: 1.55rem; color: var(--muted); line-height: 1.8; transition: max-height 0.25s, opacity 0.2s, padding 0.2s; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #060810;
  color: rgba(255,255,255,.4);
  padding: 5.6rem 0 2.4rem;
  border-top: 1px solid rgba(0,229,200,.15);
  flex-shrink: 0;
}
.footer a { color: inherit; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer__brand .logo__dot { box-shadow: 0 0 8px var(--teal); }
.footer__tagline { margin-top: 1rem; font-size: 1.3rem; opacity: 0.4; }
.footer__badges { display: flex; gap: 1rem; margin-top: 2rem; }
.footer__badges img { height: 3.4rem; width: auto; border-radius: 0.5rem; opacity: 0.7; }
.footer__col h4 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.4rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer__col a { font-size: 1.4rem; text-decoration: none; transition: color 0.15s; }
.footer__col a:hover { color: var(--teal); }
.footer__helplink { display: block; font-size: 1.4rem; text-decoration: underline; margin-bottom: 0.8rem; transition: color 0.15s; }
.footer__helplink:hover { color: var(--teal); }
.footer__tel { display: flex; align-items: center; gap: 0.6rem; font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--white); }
.footer__tel svg { width: 1.8rem; height: 1.8rem; color: var(--teal); }
.footer__disc { font-size: 1.2rem; color: rgba(255,255,255,.22); line-height: 1.8; margin-bottom: 2.4rem; max-width: 80rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.4rem;
  font-size: 1.2rem; color: rgba(255,255,255,.22);
  border-top: 1px solid rgba(255,255,255,.05); padding-top: 1.6rem;
}
.footer__bottom a { text-decoration: none; transition: color 0.15s; }
.footer__bottom a:hover { color: var(--teal); }

/* =============================================
   SCROLL-UP
   ============================================= */
.btn-up {
  position: fixed; bottom: 9rem; right: 2rem;
  z-index: 90; width: 4.4rem; height: 4.4rem;
  background: var(--teal-g);
  border: 1px solid var(--brd2);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, box-shadow 0.2s;
}
.btn-up svg { width: 2rem; height: 2rem; color: var(--teal); }
.btn-up:hover { background: var(--teal); box-shadow: var(--sh-t); }
.btn-up:hover svg { color: var(--navy); }

/* =============================================
   STICKY BAR
   ============================================= */
.sbar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: rgba(11,14,26,.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,229,200,.2);
  padding: 1rem 0; display: none;
}
.sbar__inner { display: flex; align-items: center; gap: 1.2rem; }
.sbar__logo {
  width: 4rem; height: 4rem;
  background: rgba(255,255,255,.07);
  border-radius: 0.6rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; padding: 0.4rem;
}
.sbar__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sbar__name { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin: 0; }
.sbar__deal { font-size: 1.2rem; color: var(--teal); font-weight: 500; margin: 0; }

/* =============================================
   MEDIA QUERIES
   ============================================= */
@media screen and (min-width: 992px) {
  .hdr-burger { display: none; }
  .cols__sidebar { display: block; }
}

@media screen and (max-width: 991px) {
  .hdr-search { display: none; }
  .hdr-burger { display: flex; }
  .header__nav {
    position: absolute; top: 6.4rem; left: 0; right: 0;
    background: rgba(11,14,26,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,229,200,.15);
    padding: 1.2rem 1.6rem; display: none;
  }
  .header__nav--active { display: block; }
  .header__nav ul { flex-direction: column; gap: 0.3rem; }
  .header__nav a { font-size: 1.6rem; justify-content: flex-start; }
  .cols__wrap { flex-direction: column; }
  .cols__sidebar { display: none; width: 100%; }
  .hero__inner { flex-direction: column; gap: 4rem; }
  .hero__cats-col { width: 100%; }
  .hero__cats { flex-direction: row; flex-wrap: wrap; }
  .hcat { flex: 1 1 14rem; }
  .hero h1 { font-size: 5rem; }
  .pros-cons { flex-direction: column; }
  .rtp-card { flex-direction: column; }
  .check-list ul, .check-list ol { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: 3.2rem; }
}

@media screen and (max-width: 767px) {
  .hero h1 { font-size: 3.8rem; }
  .cc { flex-wrap: wrap; gap: 1rem; }
  .cc__pays { display: none; }
  .cc__bonus { min-width: auto; }
  .payment-info ul { flex-direction: column; }
  .payment-info li { flex: none; }
  .list-tops li { gap: 0.8rem; }
  .list-tops span:nth-child(n+5) { display: none; }
  .sbar { display: block; }
  .wrapper { padding-bottom: 7.2rem; }
  .table table { min-width: 60rem; }
}

@media screen and (max-width: 575px) {
  .hero h1 { font-size: 3.2rem; }
  .hero__cats { flex-direction: column; }
  .hcat { flex: none; }
  .heading { font-size: 2.4rem; }
  .footer__grid { grid-template-columns: 1fr; }
}