:root {
  --bg: #121212;
  --surface: #171717;
  --surface-strong: #212121;
  --text: #ffffff;
  --muted: #b7b7b7;
  --line: #313131;
  --accent: #fce403;
  --accent-strong: #fff974;
  --accent-soft: rgba(240, 221, 33, 0.12);
  --warning: #f9ae41;
  --danger: #ff8d7b;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max: 1240px;
  --font-heading: "Trebuchet MS", Verdana, sans-serif;
  --font-body: "Trebuchet MS", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(252, 228, 3, 0.14), transparent 24%),
    linear-gradient(180deg, #1b1b1b 0%, #111111 34%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

a:hover,
a:focus-visible {
  color: var(--accent-strong);
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.site-header {
  padding: 0 1rem 0;
}

.header-shell,
.content-shell,
.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark img {
  display: block;
  height: 28px;
  width: auto;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.topnav a {
  text-decoration: none;
  font-size: 0.82rem;
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-link {
  font-size: 0.88rem;
  color: #ffffff;
  text-decoration: none;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.header-btn.login {
  background: #2b2b2b;
  color: #ffffff;
}

.header-btn.register {
  background: var(--accent);
  color: #111111;
}

.promo-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1rem 0.9rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.promo-strip a {
  color: var(--accent);
  text-decoration: none;
}

.sticky-affiliate {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: min(360px, calc(100vw - 2rem));
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(252, 228, 3, 0.24);
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(18, 18, 18, 0.98)),
    var(--surface);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.sticky-affiliate strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.sticky-affiliate p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.sticky-affiliate .cta-button {
  width: 100%;
}

.age-gate-open {
  overflow: hidden;
}

.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.age-gate {
  width: min(680px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(252, 228, 3, 0.18);
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(17, 17, 17, 0.98)),
    var(--surface);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.age-gate__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.age-gate__brand img {
  height: 28px;
  width: auto;
}

.age-gate__brand span {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.age-gate__body {
  padding: 2rem 1.5rem 1.6rem;
  text-align: center;
}

.age-gate__body h2 {
  margin-bottom: 1rem;
}

.age-gate__body p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
}

.age-gate__actions {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  margin-top: 1.6rem;
}

.age-gate__button {
  min-width: min(100%, 430px);
  min-height: 56px;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.age-gate__button--confirm {
  background: linear-gradient(135deg, #fce403 0%, #fff974 100%);
  color: #111111;
}

.age-gate__button--confirm:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.age-gate__button--leave {
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.age-gate__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.2rem;
  color: #f3f3f3;
  font-weight: 700;
}

.age-gate__check input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.age-gate__note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.product-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 1.5rem;
  padding: 1.25rem 1rem 1rem;
}

.hero-card,
.panel,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2.4rem;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(255, 255, 255, 0.02) 100%),
    url("/20260313015008227/1920x1200_3-optimised.jpg") center/cover no-repeat,
    var(--surface);
  min-height: 500px;
  align-content: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.8rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  margin-top: 1rem;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.08rem;
  color: #f4f4f4;
  max-width: 58ch;
}

.hero-points,
.pros-cons,
.icon-list,
.faq-list,
.link-grid {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hero-points,
.icon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.hero-points li,
.icon-list li {
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.88), rgba(33, 33, 33, 0.75));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.aside-card {
  padding: 1.7rem;
  display: grid;
  gap: 1rem;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(252, 228, 3, 0.98), rgba(243, 214, 0, 0.92));
  color: #111111;
}

.rating {
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
}

.muted {
  color: var(--muted);
}

.aside-card .muted,
.aside-card p,
.aside-card h2 {
  color: #111111;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fce403 0%, #fff974 100%);
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 28px rgba(240, 221, 33, 0.22);
  text-align: center;
}

.cta-button.secondary {
  background: rgba(0, 0, 0, 0.06);
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: none;
}

main {
  padding: 0 1rem 4rem;
}

.section-grid {
  display: grid;
  gap: 1.25rem;
}

.section {
  margin-top: 1.5rem;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.96), rgba(19, 19, 19, 0.96));
}

.section p + p {
  margin-top: 0.9rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.4rem;
  overflow: hidden;
  border-radius: 16px;
  table-layout: fixed;
}

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

.data-table th {
  width: 30%;
  background: rgba(252, 228, 3, 0.12);
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pros-cons li {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(240, 221, 33, 0.08), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
}

.pros::before,
.cons::before {
  display: inline-block;
  margin-right: 0.6rem;
  font-weight: 700;
}

.pros::before {
  content: "+";
  color: var(--accent);
}

.cons::before {
  content: "-";
  color: var(--danger);
}

.cta-panel {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.7rem;
  background: linear-gradient(135deg, rgba(252, 228, 3, 0.22) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.faq-item {
  padding: 1.2rem 1.25rem;
}

.faq-item + .faq-item {
  margin-top: 0.9rem;
}

.related-links {
  display: grid;
  gap: 0.9rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.link-grid a {
  display: block;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(240, 221, 33, 0.06), rgba(255, 255, 255, 0.02));
  text-decoration: none;
}

.site-footer {
  padding: 0 1rem 2.5rem;
}

.footer-shell {
  padding: 2rem 0 0;
  background: rgba(16, 16, 16, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.footer-topline {
  width: 72px;
  height: 4px;
  margin-bottom: 1.5rem;
  background: var(--accent);
}

.footer-inner {
  padding: 0 0 1.8rem;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: flex-start;
}

.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 6px;
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 700;
}

.footer-flag {
  width: 34px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(180deg, #cc4b55 0 33%, #ffffff 33% 66%, #314d98 66% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.footer-menu {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 1rem;
  background: #1d1d1d;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  gap: 1rem;
}

.footer-menu a::after {
  content: "›";
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.9;
}

.footer-links {
  display: none;
}

.footer-copy {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-copy a {
  color: var(--accent);
  text-decoration: none;
}

.footer-legal {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.4rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.4rem;
  background: #1b1b1b;
}

.footer-badge {
  min-height: 116px;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-badge strong,
.footer-badge span {
  display: block;
}

.footer-badge strong {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-badge span {
  margin-top: 0.35rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-legal-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-legal-text a {
  color: var(--accent);
  text-decoration: none;
}

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

  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .brand-mark,
  .header-actions {
    width: 100%;
    justify-content: center;
  }

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

  .footer-grid,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .sticky-affiliate {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    padding-bottom: calc(0.95rem + env(safe-area-inset-bottom, 0px));
  }

  .age-gate__body {
    padding: 1.7rem 1.1rem 1.3rem;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 7.8rem;
  }

  h1 {
    font-size: 2.15rem;
    line-height: 1.02;
    letter-spacing: 0;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .site-header,
  main,
  .site-footer {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .promo-strip {
    padding: 0.65rem 0.8rem 0.85rem;
    font-size: 0.77rem;
    line-height: 1.45;
  }

  .hero-card,
  .section,
  .aside-card,
  .cta-panel {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .hero {
    padding: 1rem 0 0.75rem;
    gap: 0.9rem;
  }

  .hero-card {
    min-height: 0;
    padding-top: 1.2rem;
    background-position: 62% center;
  }

  .hero-points,
  .icon-list,
  .link-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-points li,
  .icon-list li,
  .link-grid a,
  .pros-cons li,
  .faq-item {
    border-radius: 14px;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .topnav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a {
    font-size: 0.79rem;
    padding: 0.5rem 0.8rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 0.55rem;
  }

  .header-link {
    font-size: 0.82rem;
  }

  .header-btn {
    min-height: 40px;
    padding: 0.65rem 1rem;
    font-size: 0.84rem;
  }

  .product-pills {
    gap: 0.55rem;
  }

  .product-pills span {
    padding: 0.58rem 0.82rem;
    font-size: 0.82rem;
  }

  .rating {
    font-size: 1.7rem;
  }

  .section {
    margin-top: 1rem;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .data-table tbody,
  .data-table tr {
    width: 100%;
  }

  .data-table th,
  .data-table td {
    padding: 0.78rem 0.85rem;
    font-size: 0.92rem;
  }

  .data-table th {
    width: 42%;
  }

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

  .cta-button {
    width: 100%;
  }

  .sticky-affiliate {
    gap: 0.45rem;
    padding: 0.72rem 0.8rem calc(0.78rem + env(safe-area-inset-bottom, 0px));
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  }

  .sticky-affiliate strong {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .sticky-affiliate p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .sticky-affiliate .cta-button {
    min-height: 44px;
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
  }

  .age-gate {
    border-radius: 22px;
  }

  .age-gate__brand {
    padding: 0.95rem 1rem;
  }

  .age-gate__body h2 {
    font-size: 1.7rem;
  }

  .age-gate__button {
    min-width: 100%;
    border-radius: 16px;
    min-height: 52px;
    font-size: 0.96rem;
  }

  .age-gate__check {
    align-items: flex-start;
    text-align: left;
    font-size: 0.94rem;
  }

  .footer-shell {
    padding-top: 1.45rem;
  }

  .footer-grid {
    gap: 0.8rem;
    margin-top: 1.35rem;
  }

  .footer-menu a {
    min-height: 60px;
    padding: 0 0.9rem;
    font-size: 0.94rem;
  }

  .footer-copy,
  .footer-legal-text {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .footer-legal {
    gap: 1rem;
    padding: 1rem;
    margin-top: 1.4rem;
  }

  .footer-badge {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  body {
    padding-bottom: 7.2rem;
  }

  .site-header,
  main,
  .site-footer {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  h1 {
    font-size: 1.95rem;
  }

  .hero-card,
  .section,
  .aside-card,
  .cta-panel,
  .faq-item {
    padding: 1rem;
  }

  .topbar {
    gap: 0.75rem;
  }

  .brand-mark {
    gap: 0.55rem;
    font-size: 0.82rem;
  }

  .brand-mark img {
    height: 24px;
  }

  .topnav a {
    font-size: 0.76rem;
    padding: 0.46rem 0.72rem;
  }

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

  .header-link {
    grid-column: 1 / -1;
    text-align: center;
  }

  .sticky-affiliate {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
  }

  .sticky-affiliate p {
    display: none;
  }

  .age-gate-overlay {
    padding: 0.6rem;
  }
}
