:root {
  --ink: #0b1f2a;
  --ink-soft: #143344;
  --surface: #f4f8fa;
  --surface-2: #e8f1f4;
  --teal: #2ec4b6;
  --teal-deep: #1a9e92;
  --amber: #ffb74d;
  --text: #1a2e38;
  --muted: #5a7380;
  --line: rgba(11, 31, 42, 0.1);
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 31, 42, 0.12);
  --radius: 18px;
  --max: 1120px;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html:not(.age-ok) {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(46, 196, 182, 0.18), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 183, 77, 0.14), transparent 55%),
    linear-gradient(180deg, #f7fbfc 0%, var(--surface) 40%, #eef5f7 100%);
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(244, 248, 250, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  list-style: none;
}

.nav-list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--teal-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: grid;
  align-items: center;
  padding: 3.25rem 0 2.75rem;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(8, 28, 38, 0.94) 0%, rgba(11, 31, 42, 0.82) 42%, rgba(11, 31, 42, 0.45) 100%),
    url("../images/img-10.webp") right center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  background: linear-gradient(transparent, var(--surface));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  animation: rise 0.9s ease both;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.65rem;
  background: linear-gradient(90deg, var(--white), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(46, 196, 182, 0.35);
}

.btn-primary:hover {
  background: #4ad4c7;
  color: var(--ink);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(11, 31, 42, 0.2);
}

.btn-secondary:hover {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.section-head p {
  color: var(--muted);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.platform-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: rise 0.7s ease both;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(11, 31, 42, 0.16);
}

.platform-card:nth-child(2) { animation-delay: 0.08s; }
.platform-card:nth-child(3) { animation-delay: 0.16s; }
.platform-card:nth-child(4) { animation-delay: 0.24s; }

.platform-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.platform-brand {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.platform-logo {
  width: auto;
  max-width: min(100%, 168px);
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.platform-top h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.stars {
  color: var(--amber);
  letter-spacing: 1px;
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}

.platform-card p {
  color: var(--muted);
  font-size: 0.96rem;
  flex: 1;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.why-item {
  background: linear-gradient(160deg, var(--white), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  transition: border-color 0.2s ease;
}

.why-item:hover {
  border-color: rgba(46, 196, 182, 0.45);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--teal);
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-weight: 800;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.compare-table th {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(46, 196, 182, 0.08);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--teal-deep);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-body {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

.regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.regulator-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  min-width: 140px;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.regulator-link img {
  width: auto;
  max-width: 148px;
  height: 40px;
  object-fit: contain;
}

.regulator-link:hover {
  border-color: var(--teal);
  background: #143344;
  transform: translateY(-2px);
  color: var(--ink);
}

.section-spaced {
  margin-top: 1.5rem;
}

.responsible {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  padding: 2.5rem 1.8rem;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 31, 42, 0.92), rgba(26, 158, 146, 0.75)),
    url("../images/img-11.webp") center / cover no-repeat;
}

.responsible h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.7rem;
  max-width: 20ch;
}

.responsible p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 42rem;
}

.content-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(11, 31, 42, 0.05);
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.content-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1rem 0 0.45rem;
}

.content-block p + p {
  margin-top: 0.75rem;
}

.content-block ul {
  margin: 0.7rem 0 0 1.1rem;
  color: var(--muted);
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--amber);
  background: rgba(255, 183, 77, 0.12);
  border-radius: 0 12px 12px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer {
  margin-top: 3rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  padding: 3rem 0 2rem;
}

.site-footer a {
  color: var(--teal);
}

.footer-warning {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal > h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-legal h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin: 1.25rem 0 0.5rem;
}

.footer-legal p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.65rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin: 1.75rem 0 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--teal);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  pointer-events: auto;
  width: min(100%, 720px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(46, 196, 182, 0.28);
  box-shadow: 0 18px 40px rgba(11, 31, 42, 0.35);
}

.cookie-banner-inner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.9rem;
}

.cookie-banner-inner a {
  color: var(--teal);
}

.compliance-bar {
  background: #7f1d1d;
  border-bottom: 1px solid rgba(248, 113, 113, 0.35);
  padding: 0.65rem 0;
}

.compliance-bar-inner {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.compliance-age {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #0b1f2a;
  color: #f87171;
  font-weight: 800;
  font-size: 0.85rem;
  font-family: var(--font-display);
}

.compliance-bar p {
  margin: 0;
  color: #fecaca;
  font-size: 0.82rem;
  line-height: 1.45;
}

.compliance-bar a {
  color: #fff;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.affiliate-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
  padding: 1.25rem 0 0;
}

.breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: var(--teal-deep);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .compliance-bar-inner {
    align-items: flex-start;
  }
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 14, 20, 0.78);
  backdrop-filter: blur(6px);
}

.age-overlay[hidden],
html.age-ok .age-overlay {
  display: none;
}

.age-modal {
  width: min(100%, 460px);
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  animation: pop 0.35s ease both;
}

.age-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
}

.age-modal h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

.age-modal p {
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.age-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 1.5rem;
  align-items: center;
}

.contact-email {
  font-size: 1.2rem;
  font-weight: 700;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(244, 248, 250, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    align-items: center;
    padding: 2.5rem 0 2.25rem;
    background-position: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .card-actions .btn,
  .age-actions .btn {
    width: 100%;
  }

  .age-actions {
    grid-template-columns: 1fr;
  }
}
