:root {
  --bg: #0f1220;
  --panel: #161a2b;
  --muted: #9aa4bf;
  --text: #e7ecff;
  --brand: #4ea8ff;
  --brand-2: #9b9bff;
  --ok: #46d39a;
  --warn: #ffd166;
  --border: #262c45;
  --ghost: #1b2138;
}
* {
  box-sizing: border-box;
}
html {
  background-color: var(--bg);
}
html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    "Noto Sans",
    sans-serif;
  line-height: 1.55;
}
body {
  min-height: 100vh;
  background-color: var(--bg);
  background-image: url("img-backdrop.webp");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
main,
.site-footer {
  background: transparent;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.compliance-bar {
  background: linear-gradient(90deg, #1a1020, #221018 45%, #1a1020);
  border-bottom: 1px solid rgba(255, 107, 122, 0.35);
}
.compliance-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.compliance-bar__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: #ff6b7a;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.compliance-bar p {
  margin: 0;
  font-size: 13px;
  color: #f0d4d8;
  line-height: 1.45;
}
.compliance-bar a {
  color: #ffc9d0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #161a2b, rgba(22, 26, 43, 0.96));
  backdrop-filter: saturate(140%) blur(6px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  flex-shrink: 0;
}
.logo img {
  display: block;
  width: 200px;
  height: auto;
  aspect-ratio: 1382 / 361;
  object-fit: contain;
  object-position: left center;
}
.top-nav ul {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.top-nav a {
  padding: 8px 10px;
  border-radius: 8px;
}
.top-nav a:hover {
  background: var(--ghost);
}
.op-info {
  color: var(--muted);
  font-size: 12px;
}
.hero {
  display: block;
  padding: 40px 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(24px, 3.6vw, 40px);
  margin: 0.2em 0;
}
.hero p {
  color: var(--muted);
  max-width: 64ch;
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #06121c;
}
.btn-outline {
  border-color: var(--brand);
  color: var(--text);
  background: transparent;
}
.btn-ghost {
  background: var(--ghost);
  color: var(--text);
  border-color: var(--border);
}
.cards {
  padding: 24px 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.cards .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: rgba(22, 26, 43, 0.82);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(6px);
}
.card header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 72px;
  padding: 12px 14px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.card-logo {
  display: block;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: 48px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.card h3 {
  margin: 0 0 4px;
}
.rating {
  display: flex;
  gap: 8px;
  align-items: center;
}
.stars {
  color: #ffd166;
}
.score {
  color: var(--muted);
}
.paylist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.paylist li {
  background: var(--ghost);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 14px;
}
.disclaimer {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}
.features {
  padding: 24px 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.features-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
}
.features-grid li {
  background: rgba(22, 26, 43, 0.82);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(6px);
}
.compare {
  padding: 24px 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
.caption {
  color: var(--muted);
  font-size: 12px;
  padding: 8px 4px;
}
.testimonials {
  padding: 24px 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.reviews {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.review {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.review img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ghost);
  border: 1px solid var(--border);
}
.regulators {
  padding: 24px 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.reg-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: center;
}
.reg-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0a0c14;
}
.reg-grid a:hover {
  background: #12162a;
  border-color: #3a4568;
  text-decoration: none;
}
.reg-grid img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.cta-resp {
  padding: 28px 16px;
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(78, 168, 255, 0.08),
    rgba(155, 155, 255, 0.08)
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 12px;
}
.site-footer {
  padding: 28px 16px 36px;
  border-top: 1px solid var(--border);
  background: rgba(13, 17, 32, 0.72);
  backdrop-filter: blur(8px);
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.site-footer__warning {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 209, 102, 0.28);
  background: rgba(255, 209, 102, 0.07);
}
.site-footer__warning p,
.legal-strong {
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
}
.site-footer__warning a {
  color: var(--warn);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  color: #c9d4ff;
  font-size: 13px;
  line-height: 1.3;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-nav a:hover {
  background: var(--ghost);
  color: var(--text);
  text-decoration: none;
}
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.site-footer__meta .op-info {
  margin: 0;
}
.site-footer__copy {
  color: var(--muted);
  font-size: 12px;
}
.site-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--ghost);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-footer .disclaimer {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 16px 56px;
}
.legal-page__header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-page__eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal-page__header h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.25;
}
.legal-page__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.legal-page__meta {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.legal-page h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--text);
}
.legal-page h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  color: var(--text);
}
.legal-page p,
.legal-page li {
  color: #d5dcf5;
}
.legal-page ul,
.legal-page ol {
  margin: 0 0 14px;
  padding-left: 1.25rem;
}
.legal-page li + li {
  margin-top: 6px;
}
.legal-page .legal-callout {
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(78, 168, 255, 0.08);
}
.legal-page .legal-callout p {
  margin: 0;
}
.legal-page .legal-callout p + p {
  margin-top: 8px;
}
.legal-page .contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(22, 26, 43, 0.92), rgba(15, 18, 32, 0.88));
}
.legal-page .contact-card strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal-page .contact-card a {
  font-size: 1.1rem;
  font-weight: 600;
}
.legal-page .back-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
}
@media (max-width: 640px) {
  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 2px;
  }
  .footer-nav a {
    padding: 8px 10px;
  }
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 1000;
}
.age-gate.modal-backdrop {
  background-color: var(--bg);
  background-image: url("img-backdrop.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.modal {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 440px;
  width: 100%;
  padding: 20px;
  text-align: center;
}
.age-gate-modal {
  max-width: 520px;
  padding: 28px 24px 22px;
  background: linear-gradient(165deg, rgba(22, 26, 43, 0.97), rgba(15, 18, 32, 0.98));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  animation: age-gate-in 0.35s ease both;
}
.age-gate-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.age-gate-brand img {
  width: min(280px, 78%);
  height: auto;
  aspect-ratio: 1382 / 361;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}
.age-gate-eyebrow {
  margin: 0 0 10px;
  color: #c9a227;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.age-gate-modal h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.25;
}
.age-gate-lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}
.age-gate-lead strong {
  color: var(--text);
}
.age-gate-points {
  margin: 0 0 16px;
  padding: 12px 14px 12px 28px;
  list-style: disc;
  text-align: left;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  background: rgba(27, 33, 56, 0.65);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.age-gate-points li + li {
  margin-top: 6px;
}
.age-gate-question {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 15px;
}
.modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0;
}
.age-gate-modal .modal-actions .btn {
  flex: 1 1 180px;
}
.modal .age-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  text-align: left;
  line-height: 1.5;
}
.modal .age-note a {
  color: var(--brand);
}
@keyframes age-gate-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-open .modal-backdrop {
  visibility: visible;
  opacity: 1;
}
.modal-open {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .cards .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .logo img {
    width: 150px;
  }
  .cards .grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .reg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  th,
  td {
    white-space: normal;
  }
}

.page-platform {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--brand);
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--border);
}
.platform-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(78, 168, 255, 0.08), transparent 55%),
    var(--panel);
}
.platform-hero-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.platform-hero .card-logo-frame {
  max-width: 260px;
  height: 80px;
}
.platform-hero .card-logo {
  max-height: 56px;
}
.platform-hero h1 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
}
.platform-lead {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  font-size: 17px;
}
.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.platform-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(15, 18, 32, 0.55);
}
.platform-side h2 {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
}
.platform-side dl {
  margin: 0;
  display: grid;
  gap: 10px;
}
.platform-side dt {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.platform-side dd {
  margin: 2px 0 0;
  font-weight: 600;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.facts li {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
}
.facts .label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.facts strong {
  font-size: 18px;
}
.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: start;
}
.platform-content > section {
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
}
.platform-content h2 {
  margin: 0 0 12px;
  font-size: 22px;
}
.platform-content h3 {
  margin: 18px 0 8px;
  font-size: 17px;
}
.platform-content p {
  margin: 0 0 12px;
  color: var(--text);
}
.platform-content p:last-child {
  margin-bottom: 0;
}
.platform-content ul,
.platform-content ol {
  margin: 0 0 12px;
  padding-left: 1.2em;
  color: var(--text);
}
.platform-content li + li {
  margin-top: 6px;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.pros-cons > div {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--ghost);
}
.pros-cons h3 {
  margin: 0 0 10px;
  font-size: 15px;
}
.pros-cons .pros h3 {
  color: var(--ok);
}
.pros-cons .cons h3 {
  color: var(--warn);
}
.pros-cons ul {
  margin: 0;
  padding-left: 1.1em;
}
.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.pay-grid li {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--ghost);
}
.pay-grid strong {
  display: block;
  margin-bottom: 4px;
}
.pay-grid span {
  color: var(--muted);
  font-size: 14px;
}
.platform-reviews {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.platform-reviews li {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--ghost);
}
.platform-reviews header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  margin-bottom: 6px;
}
.platform-reviews time {
  color: var(--muted);
  font-size: 13px;
}
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--ghost);
  padding: 12px 14px;
}
.faq-list details + details {
  margin-top: 10px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}
.faq-list details p {
  margin: 10px 0 0;
  color: var(--muted);
}
.platform-toc {
  position: sticky;
  top: 84px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
}
.platform-toc h2 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.platform-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.platform-toc li + li {
  margin-top: 8px;
}
.platform-toc a {
  color: var(--text);
  font-size: 14px;
}
.platform-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(78, 168, 255, 0.12), rgba(155, 155, 255, 0.08));
}
.platform-cta p {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
}
.platform-cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 900px) {
  .platform-hero {
    grid-template-columns: 1fr;
  }
  .platform-layout {
    grid-template-columns: 1fr;
  }
  .platform-toc {
    position: static;
    order: -1;
  }
  .facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .pros-cons,
  .pay-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .platform-hero {
    padding: 18px;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .platform-content > section {
    padding: 18px;
  }
}
