/*  GDay365 — night-blue floor, electric rails, gold trim.
    Fonts are pulled with a <link> in the document head rather than from
    inside this file, so they never sit in front of the first paint.  */

/*  ▸ ground  */

:root {
  --deep: #04102c;
  --deeper: #020a1d;
  --panel: #0b1f45;
  --panel-lift: #102b5c;

  --volt: #2f7bff;
  --volt-hi: #5ad1ff;
  --regal: #6b5cff;
  --gild: #f5c542;
  --gild-soft: #ffe08a;

  --type: #dbe7ff;
  --type-quiet: #93a9d4;
  --rule: rgba(120, 170, 255, 0.16);
  --volt-haze: rgba(47, 123, 255, 0.28);
  --gild-haze: rgba(245, 197, 66, 0.22);

  --face: 'Raleway', 'Segoe UI', system-ui, sans-serif;
  --display: 'Montserrat', 'Segoe UI', system-ui, sans-serif;

  --gap: 22px;
  --bay: 76px;
  --pad: 28px;

  --r1: 6px;
  --r2: 10px;
  --r3: 16px;
  --pill: 999px;

  --lift: 0 18px 44px rgba(2, 10, 29, 0.55);
  --lift-soft: 0 10px 26px rgba(2, 10, 29, 0.4);
  --volt-glow: 0 0 24px var(--volt-haze);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--face);
  background: var(--deeper);
  color: var(--type);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.18;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

/* The convert buttons carry no styling hook of their own — the submit type is
   hook enough, and every component below paints its own surface. */
button[type='submit'] {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* Behaviour wrappers must not disturb the layout they wrap. */
gd-menu,
gd-faq,
gd-lane {
  display: contents;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*  ▸ accessibility  */

.jump-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--volt);
  color: #fff;
  font-weight: 600;
  border-radius: var(--r2);
  z-index: 10000;
  transition: top .3s ease-in-out;
}

.jump-link:focus {
  top: 10px;
  outline: 3px solid var(--gild);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--gild);
  outline-offset: 2px;
}

/*  ▸ shell  */

.inner_322o9 {
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: 24px;
}

.nav-wrap_bOPLn {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(4, 16, 44, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.nav-wrap_bOPLn.scrolled {
  padding: 11px 0;
  background: rgba(2, 10, 29, 0.94);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--rule);
  box-shadow: 0 6px 30px rgba(2, 10, 29, 0.6);
}

.nav-wrap_bOPLn .inner_322o9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrap_bOPLn .logo {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: linear-gradient(100deg, var(--volt-hi) 0%, #fff 45%, var(--gild) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links_yLual {
  display: flex;
  gap: 1.9rem;
}

.nav-links_yLual a {
  font-weight: 500;
  color: var(--type);
  opacity: 0.82;
}

.nav-links_yLual a:hover {
  opacity: 1;
  color: var(--volt-hi);
}

.nav-wrap_bOPLn-actions {
  display: flex;
  gap: 12px;
}

/*  ▸ controls  */

.action_MIXiw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--face);
  font-size: 0.938rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: var(--pill);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.action_MIXiw--primary {
  background: linear-gradient(120deg, var(--regal) 0%, var(--volt) 55%, var(--volt-hi) 100%);
  border: none;
  color: #fff;
  box-shadow: var(--volt-glow);
}

.action_MIXiw--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--lift), 0 0 34px var(--volt-haze);
}

.action_MIXiw--secondary {
  background: rgba(47, 123, 255, 0.08);
  border: 1px solid var(--volt);
  color: var(--type);
}

.action_MIXiw--secondary:hover {
  background: var(--volt);
  color: #fff;
  box-shadow: var(--volt-glow);
}

.action_MIXiw--large {
  padding: 17px 40px;
  font-size: 1.05rem;
}

.action_MIXiw--small {
  padding: 8px 20px;
  font-size: 0.85rem;
  background: linear-gradient(120deg, var(--volt) 0%, var(--volt-hi) 100%);
  border: none;
  color: #fff;
  white-space: nowrap;
}

.action_MIXiw--small:hover {
  box-shadow: var(--volt-glow);
}

/*  ▸ hero  */

.intro_XOAOZ {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 124px 0 84px;
  background:
    radial-gradient(circle at 22% 28%, rgba(47, 123, 255, 0.24) 0%, transparent 52%),
    radial-gradient(circle at 78% 78%, rgba(107, 92, 255, 0.2) 0%, transparent 46%),
    linear-gradient(168deg, var(--deep) 0%, var(--deeper) 62%, #061838 100%);
  position: relative;
  overflow: hidden;
}

.intro_XOAOZ::after {
  content: '';
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--volt), var(--gild), transparent);
  opacity: 0.6;
}

.intro_XOAOZ .inner_322o9 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro_XOAOZ-badge {
  display: inline-block;
  padding: 7px 20px;
  background: var(--gild-haze);
  border: 1px solid var(--gild);
  border-radius: var(--pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gild-soft);
  margin-bottom: 24px;
}

.intro_XOAOZ-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  margin-bottom: 1.15rem;
  color: #fff;
  text-shadow: 0 6px 34px rgba(2, 10, 29, 0.55);
}

.intro_XOAOZ-subtitle {
  font-size: 1.2rem;
  color: var(--type-quiet);
  margin-bottom: 2rem;
  max-width: 540px;
}

.intro_XOAOZ-subtitle strong {
  color: var(--gild-soft);
}

.intro_XOAOZ-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.intro_XOAOZ-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.intro_XOAOZ-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--type-quiet);
}

.intro_XOAOZ-feature span {
  font-size: 1.2rem;
}

.intro_XOAOZ-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.intro_XOAOZ-image::before {
  content: '';
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--volt-haze) 0%, transparent 68%);
  filter: blur(6px);
}

.intro_XOAOZ-image img {
  width: 100%;
  max-width: 500px;
  max-height: 480px;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(0 22px 40px rgba(2, 10, 29, 0.6));
}

/*  ▸ section frame  */

.block_kWYJX {
  padding: var(--bay) 0;
}

.block_kWYJX-title {
  font-size: clamp(1.95rem, 4vw, 2.9rem);
  text-align: center;
  margin-bottom: 0.9rem;
  color: #fff;
}

.block_kWYJX-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--type-quiet);
  max-width: 660px;
  margin: 0 auto 46px;
}

/*  ▸ tiles  */

.tile_UaGw6 {
  background: linear-gradient(150deg, rgba(47, 123, 255, 0.09) 0%, rgba(11, 31, 69, 0.6) 100%);
  border: 1px solid var(--rule);
  border-radius: var(--r3);
  padding: var(--pad);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tile_UaGw6:hover {
  transform: translateY(-6px);
  box-shadow: var(--lift);
  border-color: var(--volt);
}

.collection_nsoyd--bonuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.tile_UaGw6--bonus {
  text-align: center;
  padding: 38px 28px;
}

.tile_UaGw6-icon {
  font-size: 3.3rem;
  margin-bottom: 18px;
}

.tile_UaGw6--bonus h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: var(--gild-soft);
}

.tile_UaGw6--bonus p {
  color: var(--type-quiet);
  margin-bottom: 22px;
  line-height: 1.7;
}

.collection_nsoyd--games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.tile_UaGw6--game {
  position: relative;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  text-align: inherit;
}

.tile_UaGw6--game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease-in-out;
}

.tile_UaGw6--game:hover img {
  transform: scale(1.04);
}

.tile_UaGw6-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(47, 123, 255, 0.62), rgba(2, 10, 29, 0.86));
  opacity: 0;
  transition: opacity .25s ease;
}

.tile_UaGw6--game:hover .tile_UaGw6-overlay {
  opacity: 1;
}

.tile_UaGw6-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(2, 10, 29, 0.92));
}

.tile_UaGw6-name {
  display: block;
  font-weight: 600;
  color: #fff;
}

.collection_nsoyd--providers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
}

.tile_UaGw6--provider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 2.5 / 1;
  position: relative;
}

.tile_UaGw6--provider img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.62) contrast(0.85);
  transition: filter .25s ease, transform .25s ease;
}

.tile_UaGw6--provider:hover img {
  filter: brightness(1.05) contrast(1);
  transform: scale(1.04);
}

.tile_UaGw6--provider span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gild-soft);
  text-align: center;
  background: linear-gradient(transparent, rgba(2, 10, 29, 0.78));
  opacity: 0;
  transition: opacity .25s ease;
}

.tile_UaGw6--provider:hover span {
  opacity: 1;
}

/*  ▸ pick your lane  */

.block_kWYJX--lanes {
  background:
    radial-gradient(circle at 84% 12%, rgba(107, 92, 255, 0.16) 0%, transparent 44%),
    var(--deep);
}

.lane-board {
  max-width: 1080px;
  margin: 0 auto;
}

.lane-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border: 0;
  margin-bottom: 32px;
}

.lane-legend {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--type-quiet);
  margin-bottom: 14px;
}

.lane-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lane-chip {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid var(--rule);
  border-radius: var(--pill);
  background: rgba(11, 31, 69, 0.7);
  color: var(--type-quiet);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.lane-chip:hover {
  color: var(--type);
  border-color: var(--volt);
}

.lane-radio:checked + .lane-chip {
  background: linear-gradient(120deg, var(--volt) 0%, var(--volt-hi) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--volt-glow);
}

.lane-radio:focus-visible + .lane-chip {
  outline: 3px solid var(--gild);
  outline-offset: 2px;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lane-card {
  display: grid;
  gap: 6px;
  padding: 20px 18px 18px;
  text-align: left;
  background: linear-gradient(165deg, rgba(16, 43, 92, 0.9) 0%, rgba(4, 16, 44, 0.9) 100%);
  border: 1px solid var(--rule);
  border-radius: var(--r2);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lane-card:hover {
  transform: translateY(-4px);
  border-color: var(--gild);
  box-shadow: var(--lift-soft);
}

.lane-name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.lane-speed {
  justify-self: start;
  padding: 3px 12px;
  border-radius: var(--pill);
  background: var(--volt-haze);
  color: var(--volt-hi);
  font-size: 0.78rem;
  font-weight: 600;
}

.lane-range {
  font-size: 0.95rem;
  color: var(--type);
}

.lane-range small {
  color: var(--type-quiet);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.lane-go {
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gild);
}

.lane-count {
  margin-top: 20px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--type-quiet);
}

.lane-foot {
  max-width: 780px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--type-quiet);
  font-size: 0.95rem;
}

.lane-foot a {
  color: var(--gild-soft);
  border-bottom: 1px solid var(--gild-haze);
}

.lane-foot a:hover {
  color: var(--gild);
}

/* The filter itself: no script, just the checked radio read through :has(). */
.lane-board:has(#lane-instant:checked) .lane-card:not([data-lane~='instant']),
.lane-board:has(#lane-low:checked) .lane-card:not([data-lane~='low']),
.lane-board:has(#lane-crypto:checked) .lane-card:not([data-lane~='crypto']),
.lane-board:has(#lane-high:checked) .lane-card:not([data-lane~='high']) {
  display: none;
}

/* Without :has() every card stays visible, so hide the controls that would lie. */
@supports not selector(:has(*)) {
  .lane-chips {
    display: none;
  }
}

/*  ▸ member notes  */

.block_kWYJX--voices {
  background: linear-gradient(180deg, var(--deeper) 0%, var(--deep) 100%);
}

.stub-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.stub {
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-areas:
    'tear quote'
    'tear by';
  align-content: start;
  background: linear-gradient(160deg, rgba(16, 43, 92, 0.82) 0%, rgba(4, 16, 44, 0.92) 100%);
  border: 1px solid var(--rule);
  border-radius: var(--r2);
  overflow: hidden;
}

.stub:nth-child(3n) {
  grid-column: span 2;
}

.stub-tear {
  grid-area: tear;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  background: rgba(47, 123, 255, 0.1);
}

/* the perforation between the counterfoil and the note */
.stub-tear::after {
  content: '';
  position: absolute;
  top: 0;
  right: -5px;
  bottom: 0;
  width: 10px;
  background-image: radial-gradient(circle at 50% 50%, var(--deeper) 3.5px, transparent 4px);
  background-size: 10px 12px;
  background-repeat: repeat-y;
}

.stub-stars {
  writing-mode: vertical-rl;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--gild);
}

.stub-dim {
  color: rgba(147, 169, 212, 0.35);
}

.stub-quote {
  grid-area: quote;
  padding: 22px 24px 10px 22px;
}

.stub-quote p {
  color: var(--type-quiet);
  line-height: 1.75;
}

.stub-by {
  grid-area: by;
  padding: 0 24px 20px 22px;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--volt-hi);
}

.stub-by::before {
  content: '— ';
}

/*  ▸ cashier table  */

.payments-table-wrap {
  overflow-x: auto;
  margin-bottom: 38px;
  border-radius: var(--r3);
  border: 1px solid var(--rule);
}

.payments-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(11, 31, 69, 0.5);
}

.payments-table th,
.payments-table td {
  padding: 18px 22px;
  text-align: left;
}

.payments-table thead {
  background: rgba(47, 123, 255, 0.14);
}

.payments-table th {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gild-soft);
}

.payments-table tbody tr {
  border-bottom: 1px solid var(--rule);
  transition: background .25s ease;
}

.payments-table tbody tr:last-child {
  border-bottom: 0;
}

.payments-table tbody tr:hover {
  background: rgba(47, 123, 255, 0.08);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #fff;
}

.payment-method img {
  height: 32px;
  width: auto;
}

.time-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--volt-haze);
  border-radius: var(--pill);
  font-size: 0.8rem;
  color: var(--volt-hi);
}

/*  ▸ prose blocks  */

.text-section {
  margin-top: 46px;
  padding: 36px;
  background: rgba(11, 31, 69, 0.46);
  border: 1px solid var(--rule);
  border-radius: var(--r3);
}

.text-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.15rem;
  color: var(--gild-soft);
}

.text-section p {
  color: var(--type-quiet);
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.block_kWYJX--seo-text {
  background: var(--deep);
}

.seo-content {
  max-width: 920px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  color: #fff;
}

.seo-content h2:not(:first-child) {
  margin-top: 46px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.seo-content h3 {
  font-size: 1.7rem;
  margin: 30px 0 15px;
  color: var(--gild-soft);
}

.seo-content p {
  color: var(--type-quiet);
  margin-bottom: 18px;
  line-height: 1.9;
}

.seo-content ul {
  margin: 0 0 22px 1.15rem;
  color: var(--type-quiet);
  line-height: 1.85;
}

.seo-content li::marker {
  color: var(--volt-hi);
}

.seo-content strong {
  color: var(--type);
}

/*  ▸ about pairs  */

.content-pairs {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.pair-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.pair-row--reversed {
  direction: rtl;
}

.pair-row--reversed > * {
  direction: ltr;
}

.pair-content h3 {
  font-size: 1.95rem;
  margin-bottom: 18px;
  color: var(--gild-soft);
}

.pair-content p {
  color: var(--type-quiet);
  margin-bottom: 15px;
  line-height: 1.8;
}

.pair-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pair-image img {
  width: 100%;
  max-width: 380px;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(2, 10, 29, 0.5));
}

/*  ▸ break band  */

.block_kWYJX--cta {
  text-align: center;
  padding: 78px 0;
  background: linear-gradient(115deg, var(--regal) 0%, var(--volt) 52%, var(--volt-hi) 100%);
  position: relative;
  overflow: hidden;
}

.block_kWYJX--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16) 1.5px, transparent 2px);
  background-size: 26px 26px;
  opacity: 0.5;
}

.block_kWYJX--cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.block_kWYJX--cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 30px;
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}

.block_kWYJX--cta .action_MIXiw {
  position: relative;
  background: var(--gild);
  color: #10203f;
  box-shadow: 0 0 26px var(--gild-haze);
}

.block_kWYJX--cta .action_MIXiw:hover {
  background: #fff;
  color: var(--volt);
}

/*  ▸ questions  */

.faq-list {
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--rule);
  border-radius: var(--r2);
  margin-bottom: 12px;
  background: rgba(11, 31, 69, 0.52);
  transition: border-color .25s ease;
}

.faq-item.active {
  border-color: var(--volt);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  transition: color .25s ease;
}

.faq-question:hover {
  color: var(--volt-hi);
}

.faq-icon {
  flex: none;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gild);
  transition: transform .25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(-180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--type-quiet);
  line-height: 1.8;
}

/*  ▸ fact sheet  */

.info-table {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(11, 31, 69, 0.5);
  border: 1px solid var(--rule);
  border-radius: var(--r3);
  overflow: hidden;
}

.info-table tr {
  border-bottom: 1px solid var(--rule);
}

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

.info-table th,
.info-table td {
  padding: 17px 22px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 38%;
  font-weight: 600;
  color: var(--gild-soft);
  background: rgba(47, 123, 255, 0.07);
}

.info-table td {
  color: var(--type-quiet);
}

/*  ▸ AU help strip  */

.safer-strip {
  background: linear-gradient(90deg, rgba(107, 92, 255, 0.18) 0%, rgba(47, 123, 255, 0.14) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 26px 0;
}

.safer-strip-lead {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.safer-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  list-style: none;
}

.safer-strip-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.safer-strip-list strong {
  color: var(--gild-soft);
  font-size: 0.98rem;
}

.safer-strip-list a:hover strong {
  color: var(--gild);
}

.safer-strip-list span {
  font-size: 0.82rem;
  color: var(--type-quiet);
}

.safer-strip-more {
  margin-top: 14px;
  font-size: 0.88rem;
}

.safer-strip-more a {
  color: var(--volt-hi);
  border-bottom: 1px solid var(--volt-haze);
}

/*  ▸ footer  */

.bottom-bar_SfMcz {
  background: var(--deeper);
  padding: 72px 0 0;
  border-top: 1px solid var(--rule);
}

.bottom-bar_SfMcz-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 54px;
  margin-bottom: 3.4rem;
}

.bottom-bar_SfMcz-col h4 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: var(--gild-soft);
}

.bottom-bar_SfMcz-col p {
  color: var(--type-quiet);
  line-height: 1.8;
}

.bottom-bar_SfMcz-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bottom-bar_SfMcz-nav a {
  color: var(--type-quiet);
}

.bottom-bar_SfMcz-nav a:hover {
  color: var(--volt-hi);
}

.trust-seals {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-seals img {
  height: 50px;
  filter: brightness(0.65) contrast(0.85);
  transition: filter .25s ease;
}

.trust-seals img:hover {
  filter: brightness(1) contrast(1);
}

.responsible-gaming {
  text-align: center;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.responsible-gaming h4 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: var(--type);
}

.responsible-text {
  font-size: 0.88rem;
  color: var(--type-quiet);
  margin-bottom: 1.2rem;
}

.responsible-marks {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.responsible-marks a {
  display: block;
}

.responsible-marks a:hover {
  transform: translateY(-3px);
}

.responsible-marks img {
  height: 40px;
  filter: saturate(0) brightness(1.7);
  transition: filter .25s ease;
}

.responsible-marks a:hover img {
  filter: brightness(1) contrast(1);
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 18px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--type-quiet);
}

.footer-legal-links a:hover {
  color: var(--gild-soft);
}

.bottom-bar_SfMcz-bottom {
  padding: 24px 0;
  text-align: center;
}

.bottom-bar_SfMcz-bottom p {
  font-size: 0.85rem;
  color: var(--type-quiet);
  opacity: 0.75;
  margin-bottom: 8px;
}

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

.footer-update {
  margin-top: 15px;
  opacity: 0.65;
}

.footer-legal {
  font-weight: 500;
}

.footer-disclaimer {
  max-width: 750px;
  margin: 12px auto 0;
  opacity: 0.55;
  line-height: 1.6;
}

/*  ▸ burger  */

.toggle-btn {
  display: none;
  flex-direction: column;
  gap: 0.38rem;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1002;
}

.toggle-btn span {
  width: 30px;
  height: 3px;
  background: var(--volt-hi);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.toggle-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

.toggle-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.logo-mobile,
.mobile-cta {
  display: none;
}

/*  ▸ document pages  */

.dock-hero {
  padding: 150px 0 56px;
  background:
    radial-gradient(circle at 18% 24%, rgba(47, 123, 255, 0.22) 0%, transparent 50%),
    linear-gradient(168deg, var(--deep) 0%, var(--deeper) 100%);
  border-bottom: 1px solid var(--rule);
}

.dock-kicker {
  display: inline-block;
  padding: 5px 16px;
  border: 1px solid var(--gild);
  border-radius: var(--pill);
  background: var(--gild-haze);
  color: var(--gild-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.dock-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  color: #fff;
  margin-bottom: 16px;
  max-width: 900px;
}

.dock-lead {
  font-size: 1.1rem;
  color: var(--type-quiet);
  max-width: 760px;
  margin-bottom: 22px;
}

.dock-stamp {
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--type-quiet);
  opacity: 0.8;
  margin-bottom: 26px;
}

.dock-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 24px;
  background: linear-gradient(120deg, rgba(107, 92, 255, 0.2), rgba(47, 123, 255, 0.14));
  border: 1px solid var(--volt);
  border-radius: var(--r3);
  box-shadow: var(--volt-glow);
}

.dock-cta p {
  flex: 1 1 320px;
  color: var(--type);
  font-size: 0.98rem;
  margin: 0;
}

/* the quick answers grid replaces a table of contents: four claims, each an anchor */
.dock-tldr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 58px;
  padding: 0;
  list-style: none;
}

.dock-tldr li {
  display: flex;
}

.dock-tldr a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 18px 20px;
  background: rgba(11, 31, 69, 0.62);
  border: 1px solid var(--rule);
  border-radius: var(--r2);
  transition: border-color .2s ease, transform .2s ease;
}

.dock-tldr a:hover {
  border-color: var(--volt);
  transform: translateY(-3px);
}

.dock-tldr b {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--gild-soft);
}

.dock-tldr span {
  font-size: 0.88rem;
  color: var(--type-quiet);
  line-height: 1.6;
}

.dock-body {
  padding: 58px 0 78px;
  background: var(--deeper);
}

.dock-panel {
  max-width: 880px;
  margin: 0 auto 22px;
  background: rgba(11, 31, 69, 0.45);
  border: 1px solid var(--rule);
  border-radius: var(--r3);
  overflow: hidden;
  scroll-margin-top: 110px;
}

.dock-panel-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 24px;
  background: linear-gradient(90deg, rgba(47, 123, 255, 0.2), rgba(47, 123, 255, 0.04));
  border-bottom: 1px solid var(--rule);
}

.dock-num {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--volt-hi);
}

.dock-panel-head h2 {
  flex: 1;
  font-size: 1.28rem;
  color: #fff;
}

.dock-top {
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--type-quiet);
}

.dock-top:hover {
  color: var(--gild);
}

.dock-panel-body {
  padding: 24px;
}

.dock-panel-body > *:last-child {
  margin-bottom: 0;
}

.dock-panel-body p {
  color: var(--type-quiet);
  line-height: 1.85;
  margin-bottom: 15px;
}

.dock-panel-body h3 {
  font-size: 1.05rem;
  color: var(--gild-soft);
  margin: 24px 0 10px;
}

.dock-panel-body a {
  color: var(--volt-hi);
  border-bottom: 1px solid var(--volt-haze);
}

.dock-panel-body a:hover {
  color: var(--gild);
}

.dock-list {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
}

.dock-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: var(--type-quiet);
  line-height: 1.75;
}

.dock-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--volt-hi);
}

.dock-note {
  padding: 16px 20px;
  margin-bottom: 18px;
  background: rgba(47, 123, 255, 0.09);
  border-left: 3px solid var(--volt);
  border-radius: 0 var(--r1) var(--r1) 0;
}

.dock-note p {
  margin: 0;
  color: var(--type);
  font-size: 0.95rem;
}

.dock-note--urgent {
  background: rgba(245, 197, 66, 0.09);
  border-left-color: var(--gild);
}

.dock-note--urgent p {
  color: var(--gild-soft);
}

.dock-table-wrap {
  overflow-x: auto;
  margin-bottom: 18px;
  border: 1px solid var(--rule);
  border-radius: var(--r2);
}

.dock-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

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

.dock-table thead th {
  background: rgba(47, 123, 255, 0.14);
  color: var(--gild-soft);
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.dock-table tbody th {
  color: var(--type);
  font-weight: 600;
  width: 30%;
}

.dock-table td {
  color: var(--type-quiet);
}

.dock-table tr:last-child th,
.dock-table tr:last-child td {
  border-bottom: 0;
}

.dock-steps {
  counter-reset: dockstep;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.dock-steps li {
  counter-increment: dockstep;
  position: relative;
  padding-left: 44px;
  margin-bottom: 14px;
  color: var(--type-quiet);
  line-height: 1.75;
}

.dock-steps li::before {
  content: counter(dockstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--volt), var(--volt-hi));
  color: #fff;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
}

.dock-help {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.dock-help-card {
  padding: 18px 20px;
  background: rgba(11, 31, 69, 0.7);
  border: 1px solid var(--rule);
  border-radius: var(--r2);
}

.dock-help-card.is-primary {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, rgba(245, 197, 66, 0.16), rgba(47, 123, 255, 0.12));
  border-color: var(--gild);
}

.dock-help-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: #fff;
}

.dock-help-card .dock-help-num {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gild);
  margin-bottom: 6px;
}

.dock-panel-body .dock-help-num a {
  color: var(--gild);
  border-bottom-color: var(--gild-haze);
}

.dock-panel-body .dock-help-num a:hover {
  color: var(--gild-soft);
}

.dock-help-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--type-quiet);
  line-height: 1.7;
}

.dock-figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.dock-figures div {
  padding: 14px 16px;
  background: rgba(47, 123, 255, 0.08);
  border-radius: var(--r2);
}

.dock-figures dt {
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--type-quiet);
  margin-bottom: 4px;
}

.dock-figures dd {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gild-soft);
}

.dock-figure img {
  width: 100%;
  border-radius: var(--r2);
  border: 1px solid var(--rule);
}

.dock-close {
  max-width: 880px;
  margin: 34px auto 0;
  padding: 28px 26px;
  text-align: center;
  background: linear-gradient(115deg, var(--regal) 0%, var(--volt) 100%);
  border-radius: var(--r3);
}

.dock-close h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.dock-close p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.dock-close .action_MIXiw {
  background: var(--gild);
  color: #10203f;
}

.dock-close .action_MIXiw:hover {
  background: #fff;
  color: var(--volt);
}

/*  ▸ tablet  */

@media (max-width: 62em) {
  .intro_XOAOZ .inner_322o9 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro_XOAOZ-content { order: 1; }
  .intro_XOAOZ-image { order: 2; }
  .intro_XOAOZ-subtitle { margin-inline: auto; }
  .intro_XOAOZ-ctas,
  .intro_XOAOZ-features { justify-content: center; }

  .collection_nsoyd--bonuses,
  .collection_nsoyd--games,
  .collection_nsoyd--providers { grid-template-columns: repeat(2, 1fr); }

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

  .stub-wall { grid-template-columns: 1fr; }
  .stub:nth-child(3n) { grid-column: auto; }

  .pair-row { grid-template-columns: 1fr; }
  .pair-row--reversed { direction: ltr; }

  .bottom-bar_SfMcz-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .bottom-bar_SfMcz-nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-seals { justify-content: center; }

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

/*  ▸ phone  */

@media (max-width: 47.5em) {
  .nav-wrap_bOPLn { padding: 0; }

  .nav-wrap_bOPLn .inner_322o9 {
    padding: 12px 16px;
    gap: 0.75rem;
  }

  .logo { display: none; }

  .logo-mobile {
    display: block;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    background: linear-gradient(100deg, var(--volt-hi), var(--gild));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .mobile-cta {
    display: block;
    flex: 1;
    max-width: 180px;
    padding: 10px 16px;
    background: linear-gradient(110deg, var(--gild) 0%, var(--gild-soft) 100%);
    border: none;
    color: #10203f;
    font-family: var(--face);
    font-size: 0.8rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    white-space: nowrap;
    border-radius: var(--pill);
    box-shadow: 0 4px 16px var(--gild-haze);
  }

  .nav-wrap_bOPLn-actions { display: none; }
  .toggle-btn { display: flex; }

  .nav-links_yLual {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 380px;
    height: 100vh;
    background: var(--deeper);
    flex-direction: column;
    padding: 96px 30px 40px;
    gap: 0;
    transition: right .3s ease-in-out;
    box-shadow: -8px 0 32px rgba(2, 10, 29, 0.7);
    border-left: 2px solid var(--volt);
    z-index: 1001;
  }

  .nav-links_yLual.active { right: 0; }

  .nav-links_yLual a {
    font-size: 1.15rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
  }

  .collection_nsoyd--bonuses,
  .collection_nsoyd--games { grid-template-columns: 1fr; }

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

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

  .stub { grid-template-columns: 50px 1fr; }

  .payments-table th:nth-child(2),
  .payments-table th:nth-child(3),
  .payments-table td:nth-child(2),
  .payments-table td:nth-child(3) {
    display: none;
  }

  .safer-strip-list { gap: 14px; }

  .block_kWYJX-title { font-size: 1.95rem; }
  .intro_XOAOZ-content h1 { font-size: 2.4rem; }
  .intro_XOAOZ { padding-top: 100px; }

  .dock-hero { padding-top: 120px; }
  .dock-tldr { grid-template-columns: 1fr; }
  .dock-figures { grid-template-columns: repeat(2, 1fr); }
  .dock-help { grid-template-columns: 1fr; }
  .dock-panel-head { flex-wrap: wrap; }
}

@media (max-width: 30em) {
  .inner_322o9 { padding-inline: 16px; }
  .block_kWYJX { padding: 56px 0; }
  .intro_XOAOZ-ctas { flex-direction: column; }
  .intro_XOAOZ-ctas .action_MIXiw { width: 100%; }

  .logo-mobile { font-size: 0.95rem; }

  .mobile-cta {
    padding: 8px 12px;
    font-size: 0.72rem;
    max-width: 140px;
  }

  .stub {
    grid-template-columns: 1fr;
    grid-template-areas: 'tear' 'quote' 'by';
  }

  .stub-tear { padding: 12px 0; }
  .stub-tear::after { display: none; }
  .stub-stars { writing-mode: horizontal-tb; }

  .dock-figures { grid-template-columns: 1fr; }
  .dock-panel-body { padding: 20px 18px; }
}
