:root {
  --bg: #07130d;
  --bg-soft: #0d2015;
  --card: #102719;
  --card-strong: #15351f;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f2fff6;
  --muted: #b8d3c0;
  --green: #16c56f;
  --gold: #f7c948;
  --blue: #54c7ec;
  --danger: #ffcf70;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(22, 197, 111, 0.26), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(84, 199, 236, 0.18), transparent 24%),
    linear-gradient(135deg, #06110b 0%, #0d2015 48%, #06140f 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

strong {
  color: #ffffff;
}

.page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #149954, #f7c948);
  color: #06110b;
  box-shadow: 0 12px 26px rgba(22, 197, 111, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  gap: 34px;
  align-items: center;
  padding: 44px 0 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(22, 197, 111, 0.35);
  border-radius: 999px;
  background: rgba(22, 197, 111, 0.1);
  color: #dfffea;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 740px;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
}

.button.primary {
  border: 0;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #06110b;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portrait-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(5, 15, 9, 0.78);
  backdrop-filter: blur(14px);
}

.portrait-note p {
  margin: 4px 0 0;
  font-size: 0.94rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0 0;
}

.stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.stat span {
  display: block;
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.stat small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 58px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.card.featured {
  border-color: rgba(247, 201, 72, 0.38);
  background:
    linear-gradient(180deg, rgba(247, 201, 72, 0.13), rgba(255, 255, 255, 0.04)),
    var(--card);
}

.card p:last-child {
  margin-bottom: 0;
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  padding: 18px;
  border-left: 3px solid var(--green);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.platform-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 0 0, rgba(22, 197, 111, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.platform-logo {
  display: grid;
  min-height: 190px;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(22, 197, 111, 0.2), rgba(84, 199, 236, 0.16));
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -0.07em;
}

.notice {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 207, 112, 0.4);
  border-radius: 20px;
  background: rgba(255, 207, 112, 0.09);
  color: #ffe4a3;
  font-size: 0.96rem;
}

.footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.footer a {
  color: #ddffe8;
}

.article-wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 58px;
}

.article-card {
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(22, 197, 111, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.article-card h1 {
  font-size: clamp(2.2rem, 6vw, 4.45rem);
}

.article-card h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
}

.article-card h3 {
  color: #fff8d2;
}

.article-card ul,
.article-card ol {
  margin: 0 0 18px 22px;
  padding: 0;
  color: var(--muted);
}

.article-card li {
  margin-bottom: 9px;
}

.article-card a {
  color: #e8ffb5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meta-line {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  background: rgba(247, 201, 72, 0.08);
  color: #dceccd;
  font-size: 0.94rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.article-box {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.metric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.metric div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: 1.28rem;
}

.article-note {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 207, 112, 0.4);
  border-radius: 20px;
  background: rgba(255, 207, 112, 0.09);
  color: #ffe4a3;
}

.article-table-wrap {
  width: 100%;
  margin: 20px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: #fff8d2;
  background: rgba(247, 201, 72, 0.08);
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.quote-card {
  margin: 22px 0;
  padding: 20px;
  border-left: 4px solid var(--green);
  border-radius: 20px;
  background: rgba(22, 197, 111, 0.09);
  color: #ddffe8;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.related-grid a {
  display: block;
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  text-decoration: none;
}

.related-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-list details {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  color: #ffffff;
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin-top: 10px;
  margin-bottom: 0;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 28px auto 46px;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(5, 16, 10, 0.58);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer-badges,
.payment-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.age-badge {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 8px solid #e11d48;
  border-radius: 50%;
  background: #ffffff;
  color: #e11d48;
  font-size: 18px;
  font-weight: 950;
}

.support-link,
.pay-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: #e9ffe9;
  font-weight: 850;
}

.pay-chip {
  min-width: 88px;
  color: #cfe5d0;
}

.footer-note {
  max-width: 790px;
  margin: 0 auto 10px;
}

.footer-small {
  margin: 8px auto 0;
  color: #91aa98;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .hero,
  .story,
  .platform-card,
  .split {
    grid-template-columns: 1fr;
  }

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

  .article-grid,
  .metric,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 22px;
  }
}

@media (max-width: 660px) {
  .page {
    width: min(100% - 22px, 1160px);
  }

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

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
  }

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

  .portrait-note {
    position: static;
    border-radius: 0;
  }

  .section {
    padding: 38px 0;
  }
}

.legal-wrap {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 58px;
}

.legal-card {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-bottom: 6px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.legal-card .legal-updated {
  margin: 0 0 22px;
  color: #91aa98;
  font-size: 0.88rem;
}

.legal-card h2 {
  margin: 28px 0 10px;
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal-card p {
  margin: 0 0 14px;
  color: #cfe5d0;
  line-height: 1.75;
  font-size: 0.98rem;
}

.legal-card ul,
.legal-card ol {
  margin: 8px 0 18px 22px;
  padding: 0;
  color: #cfe5d0;
}

.legal-card li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.legal-card a {
  color: #e8ffb5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card .disclaimer-box {
  margin: 18px 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 207, 112, 0.4);
  border-radius: 18px;
  background: rgba(255, 207, 112, 0.09);
  color: #ffe4a3;
}

.legal-card .legal-foot {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #91aa98;
  font-size: 0.85rem;
}

#jdt-cookie-consent {
  position: fixed;
  z-index: 10050;
  right: 16px;
  bottom: 16px;
  left: auto;
  width: min(360px, calc(100% - 32px));
  padding: 18px 18px 16px;
  border: 1px solid rgba(247, 201, 72, 0.35);
  border-radius: 22px;
  background: rgba(7, 19, 13, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
  color: #f2fff6;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(24px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

#jdt-cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

#jdt-cookie-consent p {
  margin: 0 0 14px;
  color: #dceccd;
}

#jdt-cookie-consent a {
  color: #f7c948;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#jdt-cookie-consent .consent-actions {
  display: grid;
  gap: 8px;
}

#jdt-cookie-consent button {
  appearance: none;
  cursor: pointer;
  width: 100%;
  padding: 11px 16px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#jdt-cookie-consent .consent-accept {
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #06110b;
  box-shadow: 0 14px 30px rgba(247, 201, 72, 0.18);
}

#jdt-cookie-consent .consent-reject {
  background: rgba(255, 255, 255, 0.06);
  color: #e9ffe9;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

#jdt-cookie-consent button:hover {
  transform: translateY(-1px);
}

@media (max-width: 540px) {
  #jdt-cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    padding: 16px;
  }
}
