:root {
  --ink: #142624;
  --ink-soft: #3a524f;
  --teal-900: #0b3d3a;
  --teal-700: #1a6b66;
  --teal-400: #5eb7b0;
  --teal-100: #e8f4f2;
  --sand: #f5f8f7;
  --paper: #ffffff;
  --gold: #c9a227;
  --gold-soft: #f3e8c0;
  --line: rgba(11, 61, 58, 0.12);
  --shadow: 0 18px 40px rgba(11, 61, 58, 0.12);
  --radius: 18px;
  --max: 1120px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(94, 183, 176, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(201, 162, 39, 0.12), transparent 50%),
    linear-gradient(180deg, #f7fbfa 0%, var(--sand) 40%, #eef5f3 100%);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--teal-900);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--teal-900);
  font-weight: 600;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-900);
  color: #fff;
  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(247, 251, 250, 0.88);
  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.65rem;
  text-decoration: none;
  color: var(--teal-900);
}

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

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

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

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(1.75rem, 4vw, 3rem);
  min-height: min(56vh, 520px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(94, 183, 176, 0.36), transparent 30%),
    radial-gradient(circle at 85% 22%, rgba(201, 162, 39, 0.28), transparent 34%),
    radial-gradient(circle at 50% 88%, rgba(94, 183, 176, 0.2), transparent 35%),
    linear-gradient(118deg, #0b3d3a 0%, #1a6b66 52%, #0f514d 100%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy {
  color: #f4faf9;
  max-width: 34rem;
  animation: rise 0.8s var(--ease) both;
}

.brand-signal {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: #fff;
}

.brand-signal em {
  font-style: normal;
  color: var(--gold);
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 550;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: rgba(244, 250, 249, 0.88);
  font-size: 1.05rem;
  max-width: 32ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--teal-900);
}

.btn-primary:hover {
  background: #dcb438;
  color: var(--teal-900);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(11, 61, 58, 0.25);
  color: var(--teal-900);
}

.btn-secondary:hover {
  border-color: var(--teal-700);
  background: var(--teal-100);
  color: var(--teal-900);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-sm {
  padding: 0.65rem 1.05rem;
  font-size: 0.88rem;
}

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

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

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

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

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

.platform-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  animation: rise 0.7s var(--ease) both;
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 61, 58, 0.16);
}

.platform-body {
  padding: 1.25rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

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

.platform-top h3 {
  margin: 0;
  font-size: 1.35rem;
}

.platform-name-logo {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.compare-logo {
  width: auto;
  max-width: 120px;
  max-height: 30px;
  object-fit: contain;
}

.meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

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

.pay-methods span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  background: var(--teal-100);
  color: var(--teal-900);
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

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

.why-item {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: background 0.3s, transform 0.3s var(--ease);
}

.why-item:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.why-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.why-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

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

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

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

.compare-table th {
  background: var(--teal-900);
  color: #fff;
  font-weight: 700;
}

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

.compare-table tbody tr {
  transition: background 0.2s;
}

.compare-table tbody tr:hover {
  background: var(--teal-100);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 800px;
}

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

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

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

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.25s;
}

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

.faq-item .faq-body {
  padding: 0 1.2rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.regulators a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 112px;
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  background: #123f3c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.reg-logo {
  width: auto;
  max-width: 88px;
  height: auto;
  max-height: 26px;
  object-fit: contain;
  background: transparent;
  flex: 0 0 auto;
}

.regulators a:hover {
  border-color: var(--teal-400);
  transform: translateY(-2px);
  background: #18524d;
}

.responsible {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  background: var(--teal-900);
}

.responsible-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.responsible h2 {
  color: #fff;
}

.responsible p {
  color: rgba(255, 255, 255, 0.88);
}

.responsible img {
  border-radius: 16px;
  width: 100%;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, 0.08);
  border-radius: 0 12px 12px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

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

.content-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(11, 61, 58, 0.06);
}

.content-block h2 {
  font-size: 1.35rem;
}

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

.method-grid .content-block {
  margin-bottom: 0;
}

.method-grid .content-block h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

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

.step-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.3rem;
  box-shadow: 0 8px 24px rgba(11, 61, 58, 0.06);
}

.step-index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.step-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal-900);
  font-weight: 700;
}

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

.site-footer h3,
.site-footer h4 {
  color: #fff;
  font-size: 1.05rem;
}

.footer-risk {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.footer-grid p,
.footer-legal p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

.footer-legal h4 {
  margin-top: 1.25rem;
}

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

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

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

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

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 28, 27, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  backdrop-filter: blur(6px);
}

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

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

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.age-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.age-modal p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.age-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.age-actions .btn {
  min-width: 110px;
}

body.age-locked {
  overflow: hidden;
}

.redirect-gate {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 28, 27, 0.82);
  backdrop-filter: blur(6px);
}

.redirect-gate[hidden] {
  display: none;
}

.redirect-gate__card {
  width: min(100%, 420px);
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.redirect-gate__status {
  margin: 0 0 0.45rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.redirect-gate__title {
  margin: 0 0 0.85rem;
  font-size: 1.28rem;
}

.redirect-gate__captcha {
  min-height: 72px;
  display: flex;
  justify-content: center;
  margin-bottom: 0.9rem;
}

body.redirect-gate-open {
  overflow: hidden;
}

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

@media (max-width: 900px) {
  .hero-grid,
  .responsible-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .method-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(44vh, 380px);
  }

  .hero-copy p {
    max-width: none;
  }
}

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 251, 250, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
    display: none;
  }

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

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

  .nav-list a {
    padding: 0.7rem 0.25rem;
  }

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

  .age-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
