:root {
  --bg: #0b1120;
  --bg-2: #0f172a;
  --surface: #131c31;
  --surface-2: #1b263f;
  --border: rgba(255, 255, 255, 0.08);
  --text: #eef2ff;
  --muted: #9aa7c2;
  --teal: #2dd4bf;
  --teal-dark: #0d9488;
  --gold: #f5c451;
  --purple: #8b7bf0;
  --danger: #ef4444;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --maxw: 1180px;
  --grad: linear-gradient(135deg, var(--teal), var(--purple));
  --grad-gold: linear-gradient(135deg, var(--gold), #e8a13a);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
p { margin: 0 0 1em; color: var(--muted); }

.section { padding: 90px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head p { font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 600;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(139, 123, 240, 0.7);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 17, 32, 0.72);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand .op { font-size: 0.66rem; color: var(--muted); letter-spacing: 0.05em; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.6rem; cursor: pointer; }

.hero { position: relative; padding: 80px 0 70px; overflow: hidden; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  z-index: 0;
}
.hero::before { width: 420px; height: 420px; background: var(--purple); top: -120px; left: -120px; }
.hero::after { width: 460px; height: 460px; background: var(--teal); bottom: -160px; right: -120px; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-text h1 { margin-bottom: 18px; }
.hero-text p { font-size: 1.12rem; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .num { font-size: 1.7rem; font-weight: 700; color: var(--text); }
.hero-stats .lbl { font-size: 0.82rem; color: var(--muted); }
.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.badge-float {
  position: absolute;
  background: rgba(19, 28, 49, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.badge-float.a { top: 18px; left: -14px; color: var(--teal); }
.badge-float.b { bottom: 22px; right: -14px; color: var(--gold); }

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  justify-content: center;
  padding: 22px 20px;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.trust-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  opacity: 0.9;
}
.card:hover { transform: translateY(-6px); border-color: rgba(45, 212, 191, 0.4); box-shadow: var(--shadow); }
.card-top { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.card-logo {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem; color: #0b1120;
  background: var(--grad-gold);
}
.plat-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px;
  height: 50px; padding: 8px 14px; max-width: 160px;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,0.5);
}
.plat-logo img { max-height: 30px; width: auto; max-width: 130px; object-fit: contain; }
.plat-logo.lg { height: 74px; padding: 12px 22px; max-width: 230px; }
.plat-logo.lg img { max-height: 46px; max-width: 186px; }
.rating { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.95rem; }
.stars { color: var(--gold); letter-spacing: 1px; }
.card h3 { margin: 0; font-size: 1.25rem; }
.card .desc { color: var(--muted); font-size: 0.95rem; margin: 0; }
.pay { display: flex; flex-wrap: wrap; gap: 6px; }
.pay span {
  font-size: 0.72rem; color: var(--muted);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 4px 9px; background: rgba(255,255,255,0.02);
}
.card-actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.card-actions .btn { flex: 1 1 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s;
}
.feature:hover { transform: translateY(-4px); }
.feature .ico {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: rgba(45, 212, 191, 0.12); color: var(--teal);
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.15rem; }
.feature p { margin: 0; font-size: 0.95rem; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--surface); }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
table.compare thead th { background: var(--surface-2); color: var(--text); font-weight: 600; }
table.compare tbody tr:hover { background: rgba(255,255,255,0.02); }
table.compare td:first-child { font-weight: 600; color: var(--text); }
.badge-yes { color: var(--teal); font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.review .head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; color: #0b1120;
  background: var(--grad); flex: 0 0 auto;
}
.review .name { font-weight: 600; color: var(--text); font-size: 0.98rem; }
.review .date { font-size: 0.78rem; color: var(--muted); }
.review .stars { margin-bottom: 8px; }
.review p { margin: 0; font-size: 0.94rem; }

.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--text);
  font-family: inherit; font-size: 1.02rem; font-weight: 600; cursor: pointer;
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: transform 0.3s; color: var(--teal); flex: 0 0 auto; font-size: 1.3rem; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { margin: 0; padding: 0 22px 20px; font-size: 0.95rem; }

.regulators { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.reg-link {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 22px; color: var(--muted); font-weight: 600; font-size: 0.92rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.reg-link:hover { border-color: var(--teal); color: var(--text); transform: translateY(-3px); }
.reg-link .rico { font-size: 1.2rem; }

.reg-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; }
.reg-tile {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 30px; min-height: 96px; min-width: 190px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.reg-tile:hover { border-color: var(--teal); transform: translateY(-3px); }
.reg-tile img { max-height: 48px; width: auto; opacity: 0.92; }

.responsible {
  background: linear-gradient(135deg, rgba(45,212,191,0.12), rgba(139,123,240,0.12));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.responsible-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.responsible-grid img { border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.responsible ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.responsible li { display: flex; gap: 12px; color: var(--text); font-weight: 500; }
.responsible li::before { content: "✓"; color: var(--teal); font-weight: 800; }
.resp-callout {
  margin-top: 24px; padding: 18px 20px; border-radius: var(--radius-sm);
  background: rgba(245, 196, 81, 0.1); border: 1px solid rgba(245, 196, 81, 0.35);
  color: var(--text); font-weight: 600; font-size: 0.95rem;
}

.site-footer { background: #070c18; border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.footer-legal .warn { color: #ffd7d7; font-weight: 600; margin-bottom: 8px; display: block; }
.footer-legal a { color: var(--teal); }
.footer-op { margin-top: 14px; font-weight: 600; color: var(--muted); }
.age-tag {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--danger); color: #ffb4b4; font-weight: 800; font-size: 0.85rem;
  margin-bottom: 12px;
}

.disclaimer {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: #ffd7d7;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.disclaimer strong { color: #fff; }

.page-hero {
  padding: 60px 0 30px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--teal); }
.content { padding: 60px 0; }
.content-narrow { max-width: 820px; margin: 0 auto; }
.content h2 { margin-top: 40px; }
.content h3 { margin-top: 28px; font-size: 1.2rem; }
.content ul, .content ol { color: var(--muted); padding-left: 22px; }
.content li { margin-bottom: 8px; }
.info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; margin: 24px 0;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-row { display: flex; flex-wrap: wrap; gap: 28px; margin: 20px 0; }
.stat-row .num { font-size: 1.8rem; font-weight: 700; color: var(--teal); }
.stat-row .lbl { font-size: 0.85rem; color: var(--muted); }
.email-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 12px 22px; font-weight: 600; color: var(--text);
}
.email-link:hover { border-color: var(--teal); color: var(--teal); }

.product-head { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.product-head .card-logo { width: 70px; height: 70px; font-size: 1.4rem; }
.rating-big { display: flex; align-items: baseline; gap: 8px; }
.rating-big .score { font-size: 2.4rem; font-weight: 800; color: var(--text); }
.rating-big .out { color: var(--muted); }

.popup {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 18, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.popup[hidden] { display: none; }
.popup-content {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 34px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow);
  animation: pop 0.35s ease;
}
@keyframes pop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-content .age-circle {
  width: 76px; height: 76px; margin: 0 auto 18px;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 1.6rem; font-weight: 800; color: #fff;
  background: var(--grad);
}
.popup-content h2 { font-size: 1.5rem; }
.popup-content p { font-size: 0.94rem; }
.popup-actions { display: flex; gap: 12px; margin-top: 24px; }
.popup-actions .btn { flex: 1; }
.popup-note { font-size: 0.76rem; color: var(--muted); margin-top: 18px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

.compliance-bar {
  background: rgba(34, 201, 168, 0.08);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  padding: 8px 0;
}
.compliance-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.45;
}
.compliance-bar a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.compliance-bar .age-tag { font-size: 0.72rem; padding: 2px 8px; }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.compliance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.compliance-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.compliance-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.compliance-card a { color: var(--teal); }
.compliance-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(34, 201, 168, 0.12);
  color: var(--teal); font-weight: 700;
  margin-bottom: 14px; font-size: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.97), rgba(11, 17, 32, 1));
  border-top: 1px solid var(--border);
  padding: 18px 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.cookie-inner a { color: var(--teal); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 480px; margin: 0 auto; }
  .responsible-grid { grid-template-columns: 1fr; }
  .responsible-grid img { max-width: 460px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .popup-actions { flex-direction: column; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
