:root {
  color-scheme: light;
  --ink: #151617;
  --subtle: #5d6269;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #d8d6cf;
  --coal: #262a2e;
  --mint: #1f8a70;
  --clay: #b4563d;
  --gold: #b8841e;
  --blue: #2f6f9f;
  --shadow: 0 18px 48px rgba(21, 22, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px) 26px;
  background: var(--coal);
  color: #fff;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid #d6a13a;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 48%),
    linear-gradient(180deg, #f8f3df, #d9c58f);
  box-shadow:
    inset 0 0 0 4px rgba(38, 42, 46, 0.08),
    0 6px 18px rgba(0, 0, 0, 0.18);
  color: #262a2e;
  font-size: 1rem;
  font-weight: 950;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-copy strong {
  color: #fff;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 950;
}

.brand-copy span {
  color: #d7cda9;
  font-size: 0.88rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 420px;
}

.header-flags span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: #f6f1e6;
  font-size: 0.82rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a,
.breadcrumb a {
  color: #f6f1e6;
  font-weight: 850;
  text-decoration: none;
}

.site-nav a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
}

main {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 18px clamp(14px, 3vw, 38px) 44px;
}

.control-band,
.detected-market,
.source-panel,
.intel-panel,
.home-search-panel,
.guide-panel,
.methods-panel,
.casino-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.control-band,
.detected-market {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

h2 {
  margin: 2px 0 0;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.muted {
  margin: 5px 0 0;
  color: var(--subtle);
}

.field {
  display: grid;
  gap: 6px;
  min-width: 180px;
}

.field span {
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.geo-control {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(190px, 240px);
  gap: 10px;
  align-items: end;
}

.geo-status {
  margin: 8px 0 0;
  color: var(--subtle);
  font-size: 0.82rem;
}

select,
input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 9px 11px;
}

select:focus,
input:focus,
button:focus-visible {
  outline: 3px solid rgba(31, 138, 112, 0.25);
  outline-offset: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.compact-home-stats {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.stats-grid article {
  min-height: 96px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.stat-value {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 850;
  line-height: 1;
}

.compact-stat {
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.15;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--subtle);
  font-size: 0.88rem;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
}

.methods-panel,
.casino-panel,
.intel-panel,
.home-search-panel,
.guide-panel,
.source-panel {
  padding: 16px;
}

.home-search-panel,
.guide-panel {
  margin-top: 14px;
}

.search-feature-panel {
  padding: clamp(18px, 2.4vw, 30px);
  box-shadow: var(--shadow);
}

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

.search-feature-panel h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.search-feature-panel .wide-field {
  max-width: 920px;
}

.search-feature-panel input[type="search"] {
  min-height: 60px;
  border-width: 2px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  padding: 14px 18px;
}

.home-hero {
  margin-top: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-hero h1 {
  margin: 4px 0 0;
  max-width: 880px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero p {
  max-width: 920px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.text-button {
  min-width: 76px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--coal);
  font-weight: 750;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.method-card {
  display: grid;
  gap: 10px;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  padding: 14px;
  text-align: left;
}

.method-link-card {
  text-decoration: none;
}

.method-card[aria-pressed="true"] {
  border-color: var(--mint);
  box-shadow: inset 0 0 0 2px rgba(31, 138, 112, 0.22);
}

.method-card:hover {
  border-color: #9ca39d;
}

.method-card.is-legacy {
  background: #fffdf8;
}

.method-directory {
  margin-top: 12px;
  min-height: clamp(720px, 86vh, 980px);
}

.directory-group {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 2px solid var(--line);
}

.directory-group-selected {
  border-top-color: var(--mint);
}

.directory-group-all {
  border-top-color: var(--blue);
}

.directory-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.directory-group h3,
.method-copy-block h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.directory-heading h3 {
  margin-top: 2px;
}

.directory-note {
  margin: 4px 0 0;
  color: var(--subtle);
  font-size: 0.88rem;
}

.method-copy-block h3 {
  margin-bottom: 10px;
}

.method-topline,
.casino-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.method-name,
.casino-name {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 850;
}

.method-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 8px;
  background: #f0eee7;
  color: #474a4e;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.pill.ok {
  background: rgba(31, 138, 112, 0.12);
  color: #10664f;
}

.pill.warn {
  background: rgba(184, 132, 30, 0.15);
  color: #805809;
}

.pill.stop {
  background: rgba(180, 86, 61, 0.14);
  color: #8d3523;
}

.method-summary {
  margin: 0;
  color: var(--subtle);
  font-size: 0.92rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.guide-grid-secondary {
  margin-top: 10px;
}

.guide-grid article,
.guide-support {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.guide-grid h3,
.guide-support h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.guide-grid p,
.guide-support p {
  margin: 0;
  color: var(--subtle);
}

.guide-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
  margin-top: 10px;
}

.method-meta,
.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.method-meta .pill {
  white-space: normal;
}

.casino-tools {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 190px);
  gap: 10px;
  margin-bottom: 12px;
}

.casino-list {
  display: grid;
  gap: 10px;
}

.method-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 14px;
}

.casino-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.casino-card.is-muted {
  opacity: 0.78;
}

.casino-card p {
  margin: 9px 0 0;
  color: var(--subtle);
}

.casino-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.disabled-cta {
  min-height: 38px;
  border: 1px dashed #b9b5aa;
  border-radius: 6px;
  background: #faf9f5;
  color: #777166;
  padding: 8px 12px;
  font-weight: 800;
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.page-hero {
  margin-top: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 4px 0 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 840px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 172px;
  gap: 22px;
  align-items: center;
}

.logo-slot {
  display: flex;
  justify-content: flex-end;
}

.payment-logo {
  display: grid;
  place-items: center;
  width: 148px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9faf7;
  box-shadow: inset 0 -18px 38px rgba(21, 22, 23, 0.05);
  color: var(--coal);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.05;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.payment-logo-small {
  width: 56px;
  min-width: 56px;
  border-radius: 7px;
  font-size: 0.58rem;
}

.payment-logo-small span {
  max-width: 48px;
}

.payment-logo span {
  display: block;
  max-width: 118px;
  overflow-wrap: anywhere;
  position: relative;
  z-index: 1;
}

.logo-cards {
  background: #fff7ed;
  color: #8a3d19;
}

.logo-e-wallets {
  background: #effaf6;
  color: #10664f;
}

.logo-mobile-wallets,
.logo-mobile-billing,
.logo-banking-app {
  background: #eef7ff;
  color: #245e91;
}

.logo-open-banking,
.logo-banking,
.logo-echeck {
  background: #f1f4ea;
  color: #53651a;
}

.logo-prepaid,
.logo-prepaid-account,
.logo-cash,
.logo-cash-voucher {
  background: #fff4f0;
  color: #8d3523;
}

.logo-crypto {
  background: #f7f0ff;
  color: #5e3a92;
}

.logo-method-apple-pay {
  background: #111;
  color: #fff;
}

.logo-method-google-pay {
  background: #fff;
  color: #1a73e8;
  border-color: #d7e2f7;
}

.logo-method-paypal {
  background: #eaf4ff;
  color: #003087;
}

.logo-method-skrill {
  background: #7c195f;
  color: #fff;
}

.logo-method-neteller {
  background: #e9fbef;
  color: #11813b;
}

.logo-method-paysafecard {
  background: #eef6dc;
  color: #4e7a12;
}

.logo-method-trustly {
  background: #10271d;
  color: #8be05a;
}

.logo-method-interac {
  background: #fff6dc;
  color: #b45d00;
}

.logo-method-revolut {
  background: #eef3ff;
  color: #121a55;
}

.logo-method-visa {
  background: #1434cb;
  color: #fff;
}

.logo-method-mastercard {
  background: #171717;
  color: #fff;
}

.logo-method-mastercard::before,
.logo-method-mastercard::after {
  content: "";
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.82;
  top: 28%;
}

.logo-method-mastercard::before {
  left: 17%;
  background: #eb001b;
}

.logo-method-mastercard::after {
  right: 17%;
  background: #f79e1b;
}

.logo-method-american-express {
  background: #2e77bc;
  color: #fff;
}

.logo-method-discover-card {
  background: #fff7ed;
  color: #cc5b00;
}

.logo-method-bitcoin {
  background: #fff2dc;
  color: #b05b00;
}

.logo-method-ethereum {
  background: #eef0ff;
  color: #3c3c73;
}

.logo-method-litecoin {
  background: #f0f2f4;
  color: #345c7c;
}

.logo-method-tether,
.logo-method-tether-usdt,
.logo-method-usd-coin {
  background: #ebfff7;
  color: #178b61;
}

.method-copy-block {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
}

.method-copy-block p {
  margin: 0;
  color: var(--subtle);
}

.compact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--subtle);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.faq-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-item summary {
  cursor: pointer;
  color: var(--coal);
  font-weight: 850;
}

.faq-item p {
  margin: 8px 0 0;
  color: var(--subtle);
}

.breadcrumb {
  margin-bottom: 10px;
}

.breadcrumb a {
  color: var(--blue);
}

.related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#methodAvailability {
  max-height: 184px;
  overflow: auto;
  padding-right: 4px;
}

.related-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  padding: 8px 10px;
  font-weight: 850;
  text-decoration: none;
}

.wide-field {
  max-width: 620px;
}

.plain-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 18px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.plain-link-list a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

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

.note-list li {
  border-left: 4px solid var(--blue);
  background: #f8faf9;
  padding: 10px 12px;
}

.method-details {
  display: grid;
  gap: 10px;
}

.detail-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}

.detail-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-label {
  color: var(--subtle);
  font-weight: 800;
}

.source-panel {
  margin-top: 14px;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.source-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.source-card a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.source-card a:hover {
  text-decoration: underline;
}

.source-card p {
  margin: 8px 0 0;
  color: var(--subtle);
  font-size: 0.88rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
  gap: 18px;
  margin: 0 auto;
  width: min(1480px, 100%);
  padding: 26px clamp(14px, 3vw, 38px) 34px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer a,
.intel-panel a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.site-footer a:hover,
.intel-panel a:hover {
  text-decoration: underline;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 950;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo .brand-mark {
  width: 42px;
  height: 42px;
}

.footer-logo .brand-copy strong {
  color: var(--ink);
}

.footer-logo .brand-copy span {
  color: #71643d;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.empty-state {
  border: 1px dashed #b9b5aa;
  border-radius: 8px;
  background: #faf9f5;
  padding: 18px;
  color: var(--subtle);
}

@media (max-width: 980px) {
  .site-header,
  .control-band,
  .detected-market,
  .hero-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    display: flex;
  }

  .logo-slot {
    justify-content: flex-start;
  }

  .header-flags {
    justify-content: flex-start;
  }

  .stats-grid,
  .workspace,
  .method-page-grid,
  .guide-support-grid,
  .intel-grid {
    grid-template-columns: 1fr;
  }

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

  .geo-control {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 26px 16px 20px;
  }

  main {
    padding: 12px 10px 30px;
  }

  .methods-panel,
  .casino-panel,
  .intel-panel,
  .guide-panel,
  .source-panel,
  .control-band,
  .detected-market {
    padding: 13px;
  }

  .stats-grid article {
    min-height: 84px;
  }

  .method-grid,
  .source-list,
  .guide-grid,
  .compact-home-stats,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .casino-actions,
  .method-topline,
  .casino-topline {
    align-items: flex-start;
    flex-direction: column;
  }
}
