:root {
  color-scheme: dark;
  --bg: #090c10;
  --bg-soft: #10151b;
  --panel: #151b22;
  --panel-strong: #1c242d;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f8fb;
  --muted: #9aa7b4;
  --muted-strong: #c7d0d9;
  --cyan: #13c8d6;
  --blue: #2378ff;
  --lime: #9dfc7f;
  --amber: #ffd166;
  --coral: #ff6b6b;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 200, 214, 0.08), transparent 420px),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(19, 200, 214, 0.08), transparent 32%),
    linear-gradient(290deg, rgba(157, 252, 127, 0.06), transparent 40%);
  mix-blend-mode: screen;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 190px;
  min-width: 150px;
}

.brand img {
  width: 100%;
  height: 62px;
  object-fit: contain;
  filter: brightness(1.65) contrast(1.08)
    drop-shadow(0 10px 24px rgba(19, 200, 214, 0.2));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 21, 27, 0.72);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.main-nav a,
.header-action,
.ghost-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  padding: 0 16px;
  color: var(--muted-strong);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-action,
.ghost-link {
  border: 1px solid rgba(19, 200, 214, 0.45);
  background: rgba(19, 200, 214, 0.12);
  color: #d9fbff;
}

.header-action {
  padding: 0 18px;
  flex-shrink: 0;
}

.login-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: default;
}

.ghost-link {
  padding: 0 14px;
}

main {
  position: relative;
  z-index: 1;
}

.ticker-band,
.hero,
.trust-band,
.process-section,
.service-board,
.games-section,
.faq-section,
.legal-main,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ticker-band {
  padding: 18px 0 20px;
}

.section-heading,
.panel-head,
.gateway-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2,
.panel-head h2,
.gateway-head h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.04;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.panel-head h2 {
  font-size: 28px;
}

.section-heading p,
.hero-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ticker-heading p:last-child {
  max-width: 360px;
  text-align: right;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 27, 0.78);
  box-shadow: var(--shadow);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 12px;
  animation: ticker-scroll 42s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px 180px;
  width: 324px;
  min-height: 86px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111820;
}

.ticker-card img {
  width: 118px;
  height: 100%;
  object-fit: cover;
}

.ticker-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  padding: 12px;
}

.ticker-card strong {
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ticker-card span {
  color: var(--cyan);
  font-weight: 900;
}

.ticker-card button {
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 24px;
  align-items: stretch;
  padding: 44px 0 36px;
}

.hero-copy {
  position: relative;
  min-height: 586px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.97) 0%, rgba(9, 12, 16, 0.87) 45%, rgba(9, 12, 16, 0.24) 100%),
    url("assets/542a0d35-2069-4e3b-abb2-ba2a84169c7c.png") right bottom / auto 105% no-repeat;
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(9, 12, 16, 0.86));
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  overflow-wrap: break-word;
}

.hero-text {
  max-width: 510px;
  margin-top: 22px;
  font-size: 18px;
}

.hero-stats {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 42px);
  bottom: clamp(20px, 4vw, 42px);
  left: clamp(20px, 4vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-stats div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 20, 26, 0.82);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.hero-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.checkout-panel,
.payment-dialog {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 25, 32, 0.9);
  box-shadow: var(--shadow);
}

.checkout-panel {
  padding: 22px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(157, 252, 127, 0.36);
  border-radius: 999px;
  background: rgba(157, 252, 127, 0.1);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.mode-switch,
.segmented {
  display: grid;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.mode-switch {
  grid-template-columns: 1fr 1fr;
  margin: 20px 0;
}

.mode-button,
.segmented span,
.quick-amounts button,
.bank-row button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--muted-strong);
  font-weight: 800;
  cursor: pointer;
}

.mode-button {
  background: transparent;
}

.mode-button.active,
.segmented input:checked + span,
.quick-amounts button:hover,
.bank-row button:hover {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #031015;
}

.order-form {
  display: grid;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 9px;
}

.field-group label,
.field-label {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
}

.field-group input[type="text"],
.field-group input[type="email"],
.amount-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 9, 13, 0.55);
  color: var(--text);
  outline: none;
}

.field-group input[type="text"],
.field-group input[type="email"] {
  padding: 0 15px;
}

.field-group input:focus,
.amount-input:focus-within {
  border-color: rgba(19, 200, 214, 0.75);
  box-shadow: 0 0 0 4px rgba(19, 200, 214, 0.12);
}

.segmented {
  grid-template-columns: repeat(3, 1fr);
}

.segmented label {
  min-width: 0;
}

.segmented input,
.payment-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 8px;
  background: transparent;
  font-size: 14px;
}

.selected-game {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(19, 200, 214, 0.32);
  border-radius: 8px;
  background: rgba(19, 200, 214, 0.09);
}

.selected-game.hidden,
.hidden {
  display: none;
}

.selected-game img {
  width: 96px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
}

.selected-game strong,
.selected-game span {
  display: block;
}

.selected-game strong {
  line-height: 1.2;
}

.selected-game span {
  margin-top: 4px;
  color: var(--cyan);
  font-weight: 900;
}

.amount-input {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow: hidden;
}

.amount-input input {
  min-width: 0;
  height: 50px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0 15px;
  font-size: 22px;
  font-weight: 900;
  outline: none;
}

.amount-input span {
  padding: 0 16px;
  color: var(--muted);
  font-weight: 900;
}

.quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.quick-amounts button,
.bank-row button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.payment-methods {
  display: grid;
  gap: 8px;
}

.payment-method {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.payment-method.active {
  border-color: rgba(19, 200, 214, 0.7);
  background: rgba(19, 200, 214, 0.09);
}

.method-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 46px;
  border-radius: 6px;
  background: #071018;
  color: var(--lime);
  font-size: 12px;
  font-weight: 1000;
}

.payment-method strong,
.payment-method small {
  display: block;
}

.payment-method small {
  margin-top: 4px;
  color: var(--muted);
}

.summary {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.summary div,
.invoice-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.summary span,
.invoice-lines span,
.gateway-note {
  color: var(--muted);
}

.summary strong {
  white-space: nowrap;
}

.summary-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.summary-total strong {
  color: var(--lime);
  font-size: 20px;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.consent input {
  margin-top: 2px;
  accent-color: var(--cyan);
}

.consent a,
.site-footer a,
.legal-content a {
  color: #d9fbff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.primary-button {
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), var(--cyan) 54%, var(--blue));
  color: #041013;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(19, 200, 214, 0.24);
}

.primary-button:hover {
  transform: translateY(-1px);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 0 32px;
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 25, 32, 0.68);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(157, 252, 127, 0.12);
  color: var(--lime);
  font-weight: 1000;
}

.trust-item strong,
.trust-item p {
  margin: 0;
}

.trust-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.process-section {
  padding: 18px 0 24px;
}

.process-section .section-heading p,
.faq-section .section-heading p {
  max-width: 420px;
  text-align: right;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  min-width: 0;
  min-height: 214px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(18, 25, 32, 0.76);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(19, 200, 214, 0.32);
  border-radius: 999px;
  background: rgba(19, 200, 214, 0.1);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 1000;
}

.process-step h3,
.service-copy h2,
.faq-section h2,
.legal-hero h1,
.legal-content h2 {
  margin: 0;
  color: var(--text);
}

.process-step h3 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.12;
}

.process-step p,
.service-copy p,
.faq-grid p,
.legal-hero p,
.legal-content p {
  color: var(--muted);
  line-height: 1.62;
}

.process-step p {
  margin: 12px 0 0;
  font-size: 14px;
}

.service-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 16px;
  align-items: stretch;
  padding: 10px 0 46px;
}

.service-copy,
.activity-feed,
.legal-hero,
.legal-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 25, 32, 0.72);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.service-copy {
  min-height: 330px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(18, 25, 32, 0.92), rgba(18, 25, 32, 0.58)),
    url("assets/542a0d35-2069-4e3b-abb2-ba2a84169c7c.png") right 58% / auto 128% no-repeat;
}

.service-copy h2 {
  max-width: 680px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.02;
}

.service-copy p {
  max-width: 560px;
  margin: 16px 0 0;
}

.fee-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 690px;
  margin-top: 28px;
}

.fee-strip div {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 9, 13, 0.55);
}

.fee-strip strong,
.fee-strip span {
  display: block;
}

.fee-strip strong {
  font-size: 24px;
}

.fee-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.activity-feed {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.feed-head,
.feed-row {
  display: grid;
  align-items: center;
  gap: 12px;
}

.feed-head {
  grid-template-columns: 1fr;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.feed-head strong,
.feed-head span {
  display: block;
}

.feed-head span,
.feed-row small {
  color: var(--muted);
}

.feed-row {
  grid-template-columns: 12px 1fr auto;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.dot.done {
  background: var(--lime);
}

.dot.progress {
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(19, 200, 214, 0.1);
}

.games-section {
  padding: 8px 0 34px;
}

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

.game-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #121922;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.game-card.featured {
  grid-column: span 2;
}

.game-media {
  position: relative;
  aspect-ratio: 460 / 215;
  overflow: hidden;
  background: #0d1218;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.discount {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(157, 252, 127, 0.92);
  color: #09100b;
  font-size: 12px;
  font-weight: 1000;
}

.game-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.game-title {
  min-height: 40px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}

.game-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.game-price {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 1000;
  white-space: nowrap;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.buy-button {
  min-height: 44px;
  border: 1px solid rgba(19, 200, 214, 0.4);
  border-radius: 8px;
  background: rgba(19, 200, 214, 0.12);
  color: #d9fbff;
  font-weight: 900;
  cursor: pointer;
}

.buy-button:hover {
  background: rgba(19, 200, 214, 0.2);
}

.faq-section {
  padding: 0 0 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-grid details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 25, 32, 0.72);
}

.faq-grid summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.faq-grid p {
  margin: 0;
  padding: 0 18px 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 128px;
  height: 42px;
  object-fit: contain;
  filter: brightness(1.55) contrast(1.08);
}

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

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  margin: 0 0 0 auto;
  text-align: right;
}

.legal-main {
  padding: 34px 0 60px;
}

.legal-hero {
  padding: clamp(24px, 5vw, 48px);
}

.legal-hero h1 {
  max-width: 800px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
}

.legal-hero p {
  max-width: 760px;
  margin: 18px 0 0;
}

.legal-hero span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 22px;
  padding: 0 12px;
  border: 1px solid rgba(157, 252, 127, 0.32);
  border-radius: 999px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.legal-content {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: clamp(22px, 4vw, 42px);
}

.legal-content h2 {
  margin-top: 22px;
  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  max-width: 940px;
  margin: 0;
}

.payment-dialog {
  width: min(920px, calc(100% - 28px));
  padding: 0;
  color: var(--text);
}

.payment-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.dialog-close-form {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

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

.invoice-card,
.gateway-card {
  min-height: 440px;
  padding: clamp(22px, 4vw, 34px);
}

.invoice-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(rgba(6, 9, 13, 0.8), rgba(6, 9, 13, 0.86)),
    var(--invoice-image, url("assets/542a0d35-2069-4e3b-abb2-ba2a84169c7c.png")) center / cover no-repeat;
}

.invoice-card h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
}

.invoice-product {
  margin-top: 18px;
  color: var(--muted-strong);
  line-height: 1.5;
}

.invoice-lines {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 9, 13, 0.78);
}

.gateway-card {
  background: var(--panel);
}

.gateway-head {
  align-items: flex-start;
}

.gateway-head h3 {
  font-size: 24px;
}

.gateway-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.12);
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.qr-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 166px;
  height: 166px;
  margin: 30px auto 22px;
  padding: 16px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(45deg, #f7fbff 0 8px, #10151b 8px 16px),
    #f7fbff;
}

.qr-box span {
  border: 10px solid #10151b;
  background: #f7fbff;
}

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

.gateway-button {
  width: 100%;
  margin-top: 18px;
}

.gateway-note {
  min-height: 44px;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

@keyframes ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }

  .game-media img,
  .primary-button {
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .main-nav {
    display: none;
  }

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

  .hero-copy {
    min-height: 520px;
  }

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

  .process-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    min-height: 68px;
    gap: 10px;
  }

  .brand {
    width: 150px;
    min-width: 128px;
  }

  .brand img {
    height: 52px;
  }

  .header-action {
    display: none;
  }

  .ticker-band,
  .hero,
  .trust-band,
  .games-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .section-heading,
  .panel-head,
  .gateway-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticker-heading p:last-child {
    text-align: left;
  }

  .ticker-card {
    grid-template-columns: 104px 168px;
    width: 292px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy {
    min-height: 560px;
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(9, 12, 16, 0.96) 0%, rgba(9, 12, 16, 0.84) 45%, rgba(9, 12, 16, 0.34) 100%),
      url("assets/542a0d35-2069-4e3b-abb2-ba2a84169c7c.png") center bottom / auto 88% no-repeat;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 8.8vw, 40px);
    line-height: 1.02;
  }

  .hero-text {
    max-width: 300px;
    font-size: 16px;
  }

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

  .process-section .section-heading p,
  .faq-section .section-heading p {
    text-align: left;
  }

  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
  }

  .service-copy {
    min-height: 460px;
    background:
      linear-gradient(180deg, rgba(18, 25, 32, 0.94) 0%, rgba(18, 25, 32, 0.78) 46%, rgba(18, 25, 32, 0.46) 100%),
      url("assets/542a0d35-2069-4e3b-abb2-ba2a84169c7c.png") center bottom / auto 95% no-repeat;
  }

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

  .checkout-panel {
    padding: 16px;
  }

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

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

  .game-card.featured {
    grid-column: span 1;
  }

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

  .site-footer p {
    margin-left: 0;
    text-align: left;
  }

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

  .invoice-card,
  .gateway-card {
    min-height: 0;
  }
}

@media (max-width: 440px) {
  .header-actions {
    margin-left: auto;
  }

  .login-button {
    min-height: 38px;
    padding: 0 13px;
  }

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

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

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

  .selected-game img {
    width: 100%;
    height: auto;
    aspect-ratio: 460 / 215;
  }
}
