:root {
  --qw-x7k2-bg: #0F1423;
  --qw-x7k2-surface: #1A2035;
  --qw-x7k2-surface-2: #222a45;
  --qw-x7k2-red: #E63946;
  --qw-x7k2-gold: #D4AF37;
  --qw-x7k2-navy: #171C2F;
  --qw-x7k2-white: #FFFFFF;
  --qw-x7k2-muted: #E8E8E8;
  --qw-x7k2-border: rgba(255,255,255,0.1);
  --qw-x7k2-shadow: 0 18px 44px rgba(0,0,0,.24);
  --qw-x7k2-radius: 14px;
  --qw-x7k2-max: 1180px;
  --qw-x7k2-gap: 1.25rem;
  --qw-x7k2-font: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  overflow-x: clip;
}
body.qw-x7k2-body {
  margin: 0;
  background: var(--qw-x7k2-bg);
  color: var(--qw-x7k2-muted);
  font-family: var(--qw-x7k2-font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--qw-x7k2-gold);
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}
a:hover {
  color: var(--qw-x7k2-white);
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--qw-x7k2-gold);
  outline-offset: 3px;
}
.qw-x7k2-container {
  width: min(calc(100% - 2rem), var(--qw-x7k2-max));
  margin-inline: auto;
}
.qw-x7k2-main {
  display: block;
}
.qw-x7k2-section {
  padding: 5.5rem 0;
  position: relative;
}
.qw-x7k2-section:nth-child(even) {
  background: rgba(26,32,53,.44);
}
.qw-x7k2-section__title {
  max-width: 780px;
  margin: 0 0 .7rem;
  color: var(--qw-x7k2-white);
  font-size: clamp(1.7rem,3.2vw,2.55rem);
  line-height: 1.16;
  letter-spacing: -.025em;
}
.qw-x7k2-section__subtitle {
  max-width: 760px;
  margin: 0 0 2rem;
  color: var(--qw-x7k2-muted);
}
.qw-x7k2-eyebrow,
.qw-x7k2-kicker {
  color: var(--qw-x7k2-gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.qw-x7k2-kicker {
  margin-bottom: 1rem;
}
.qw-x7k2-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--qw-x7k2-border);
  background: rgba(15,20,35,.93);
  backdrop-filter: blur(14px);
}
.qw-x7k2-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qw-x7k2-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.qw-x7k2-logo img {
  display: block;
  width: 176px;
}
.qw-x7k2-header__country {
  color: var(--qw-x7k2-gold);
  font-size: .8rem;
  font-weight: 700;
}
.qw-x7k2-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.qw-x7k2-nav > a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .3rem;
  color: var(--qw-x7k2-muted);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}
.qw-x7k2-nav > a:hover {
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-nav svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.qw-x7k2-nav__ctas {
  display: flex;
  gap: .45rem;
  margin-left: .3rem;
}
.qw-x7k2-menu-overlay {
  display: none;
}
.qw-x7k2-burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: .65rem;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: 9px;
  color: var(--qw-x7k2-white);
  background: transparent;
}
.qw-x7k2-burger span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
}
.qw-x7k2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .65rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.qw-x7k2-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.qw-x7k2-btn--primary {
  background: var(--qw-x7k2-gold);
  color: #111827;
}
.qw-x7k2-btn--primary:hover {
  background: #e4c34c;
  color: #111827;
}
.qw-x7k2-btn--secondary {
  background: var(--qw-x7k2-navy);
  border-color: rgba(255,255,255,.18);
  color: var(--qw-x7k2-white);
}
.qw-x7k2-btn--secondary:hover {
  background: #242b48;
  color: var(--qw-x7k2-white);
}
.qw-x7k2-btn--ghost {
  border-color: rgba(212,175,55,.6);
  background: transparent;
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-btn--ghost:hover {
  background: rgba(212,175,55,.12);
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-hero {
  position: relative;
  min-height: 620px;
  padding: 1.4rem 0 5rem;
  background-color: #0f1423;
  background-image: linear-gradient(120deg,rgba(10,13,24,.97) 0%,rgba(10,13,24,.88) 45%,rgba(10,13,24,.72) 100%),url("/assets/img/quick-withdrawl-banner2.png");
  background-repeat: no-repeat,no-repeat;
  background-position: center,center;
  background-size: cover,cover;
}
.qw-x7k2-breadcrumb {
  padding: .4rem 0 2.8rem;
  font-size: .8rem;
}
.qw-x7k2-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.qw-x7k2-breadcrumb li + li::before {
  content: "/";
  margin-right: .6rem;
  color: rgba(255,255,255,.55);
}
.qw-x7k2-breadcrumb li:last-child {
  color: var(--qw-x7k2-muted);
}
.qw-x7k2-hero__copy {
  max-width: 740px;
}
.qw-x7k2-hero__title {
  max-width: 750px;
  margin: 0 0 1rem;
  color: var(--qw-x7k2-white);
  font-size: clamp(2.3rem,5.5vw,4.5rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.qw-x7k2-hero__subtitle {
  max-width: 640px;
  margin: 0 0 1.5rem;
  color: var(--qw-x7k2-muted);
  font-size: clamp(1rem,1.8vw,1.2rem);
}
.qw-x7k2-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.6rem;
}
.qw-x7k2-badge {
  padding: .4rem .65rem;
  border: 1px solid rgba(212,175,55,.5);
  border-radius: 999px;
  background: rgba(15,20,35,.5);
  color: var(--qw-x7k2-white);
  font-size: .75rem;
  font-weight: 600;
}
.qw-x7k2-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.qw-x7k2-ratings {
  background: var(--qw-x7k2-bg);
}
.qw-x7k2-filters {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1rem;
  margin: 2rem 0;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: var(--qw-x7k2-radius);
  background: var(--qw-x7k2-surface);
}
.qw-x7k2-filters__group {
  min-width: 160px;
  flex: 1;
}
.qw-x7k2-filters label {
  display: block;
  margin-bottom: .3rem;
  color: var(--qw-x7k2-muted);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.qw-x7k2-filters select {
  width: 100%;
  min-height: 42px;
  padding: .5rem .7rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  background: var(--qw-x7k2-navy);
  color: var(--qw-x7k2-white);
}
.qw-x7k2-casino-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.qw-x7k2-casino-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: var(--qw-x7k2-radius);
  background: var(--qw-x7k2-surface);
  box-shadow: var(--qw-x7k2-shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.qw-x7k2-casino-card:hover {
  border-color: rgba(212,175,55,.6);
  transform: translateY(-4px);
}
.qw-x7k2-casino-card--featured {
  border-color: rgba(212,175,55,.5);
}
.qw-x7k2-casino-card__rank {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--qw-x7k2-gold);
  font-size: .8rem;
  font-weight: 700;
}
.qw-x7k2-casino-card__badge {
  align-self: flex-start;
  padding: .25rem .5rem;
  margin-bottom: .55rem;
  border-radius: 4px;
  background: var(--qw-x7k2-red);
  color: var(--qw-x7k2-white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.qw-x7k2-casino-card__header {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 55px;
}
.qw-x7k2-casino-card__logo {
  display: grid;
  flex: 0 0 auto;
  width: 72px;
  height: 48px;
  padding: 4px;
  place-items: center;
  border-radius: 6px;
  background: var(--qw-x7k2-navy);
  color: var(--qw-x7k2-gold);
  font-weight: 700;
  font-size: 1.5rem;
}
.qw-x7k2-casino-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.qw-x7k2-casino-card__name {
  margin: 0;
  color: var(--qw-x7k2-white);
  font-size: 1.1rem;
  line-height: 1.2;
}
.qw-x7k2-casino-card__geo {
  display: block;
  margin-top: .22rem;
  color: var(--qw-x7k2-muted);
  font-size: .75rem;
}
.qw-x7k2-casino-card__indicators {
  display: flex;
  gap: .45rem;
  margin: 1rem 0;
}
.qw-x7k2-indicator {
  padding: .3rem .5rem;
  border-radius: 5px;
  font-size: .7rem;
  font-weight: 700;
}
.qw-x7k2-indicator--yes {
  background: rgba(212,175,55,.14);
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-terms-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: .4rem .7rem;
  padding: .8rem 0;
  margin: 0;
  border-top: 1px solid var(--qw-x7k2-border);
  border-bottom: 1px solid var(--qw-x7k2-border);
  font-size: .78rem;
}
.qw-x7k2-terms-grid dt {
  color: #c4c8d5;
  font-weight: 600;
}
.qw-x7k2-terms-grid dd {
  margin: 0;
  color: var(--qw-x7k2-white);
}
.qw-x7k2-casino-card__bonus {
  min-height: 76px;
  padding: .8rem 0;
}
.qw-x7k2-casino-card__bonus p {
  margin: 0 0 .25rem;
  color: var(--qw-x7k2-gold);
  font-size: .92rem;
  font-weight: 700;
}
.qw-x7k2-casino-card__bonus small {
  color: var(--qw-x7k2-muted);
  font-size: .7rem;
}
.qw-x7k2-casino-card__pros {
  min-height: 85px;
  padding: 0 0 0 1.1rem;
  margin: 0 0 1rem;
  color: var(--qw-x7k2-muted);
  font-size: .8rem;
}
.qw-x7k2-casino-card__pros li::marker {
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-casino-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: auto;
}
.qw-x7k2-casino-card__footer .qw-x7k2-btn {
  flex: 1;
  min-width: 110px;
  font-size: .76rem;
}
.qw-x7k2-casino-card__details {
  padding-top: .8rem;
  margin-top: .8rem;
  border-top: 1px solid var(--qw-x7k2-border);
  font-size: .78rem;
}
.qw-x7k2-casino-card__details p {
  margin: .35rem 0;
}
.qw-x7k2-alert {
  padding: 1rem 1.2rem;
  border: 1px solid var(--qw-x7k2-border);
  border-left: 4px solid var(--qw-x7k2-gold);
  border-radius: 8px;
  background: var(--qw-x7k2-surface);
}
.qw-x7k2-alert--info {
  color: var(--qw-x7k2-muted);
}
.qw-x7k2-alert--warning {
  border-left-color: var(--qw-x7k2-red);
}
.qw-x7k2-alert--error {
  border-left-color: var(--qw-x7k2-red);
  color: #ffd5d8;
}
.qw-x7k2-alert button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--qw-x7k2-gold);
  text-decoration: underline;
}
.qw-x7k2-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: var(--qw-x7k2-radius);
}
.qw-x7k2-info-table,
.qw-x7k2-limits-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--qw-x7k2-surface);
}
.qw-x7k2-limits-table {
  min-width: 940px;
}
.qw-x7k2-info-table th,
.qw-x7k2-info-table td,
.qw-x7k2-limits-table th,
.qw-x7k2-limits-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--qw-x7k2-border);
  text-align: left;
  vertical-align: top;
}
.qw-x7k2-info-table th,
.qw-x7k2-limits-table th {
  background: var(--qw-x7k2-navy);
  color: var(--qw-x7k2-gold);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.qw-x7k2-info-table td:first-child,
.qw-x7k2-limits-table td:first-child {
  color: var(--qw-x7k2-white);
  font-weight: 600;
}
.qw-x7k2-info-table tr:last-child td,
.qw-x7k2-limits-table tr:last-child td {
  border-bottom: 0;
}
.qw-x7k2-method-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.qw-x7k2-method-card {
  padding: 1.25rem;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: var(--qw-x7k2-radius);
  background: var(--qw-x7k2-surface);
}
.qw-x7k2-method-card h3 {
  margin: 0 0 .65rem;
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-method-card p {
  min-height: 112px;
  margin: 0 0 1rem;
  color: var(--qw-x7k2-muted);
  font-size: .83rem;
}
.qw-x7k2-method-card strong {
  color: var(--qw-x7k2-white);
  font-size: .8rem;
}
.qw-x7k2-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.1rem;
  margin: 2rem 0;
}
.qw-x7k2-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: var(--qw-x7k2-gold);
  opacity: .45;
}
.qw-x7k2-timeline__step {
  position: relative;
  z-index: 1;
}
.qw-x7k2-timeline__icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-bottom: .8rem;
  border: 2px solid var(--qw-x7k2-gold);
  border-radius: 50%;
  background: var(--qw-x7k2-bg);
  color: var(--qw-x7k2-gold);
  font-weight: 700;
}
.qw-x7k2-timeline h3 {
  margin: 0 0 .4rem;
  color: var(--qw-x7k2-white);
  font-size: 1rem;
}
.qw-x7k2-timeline p {
  margin: 0;
  color: var(--qw-x7k2-muted);
  font-size: .83rem;
}
.qw-x7k2-bonus-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  scroll-snap-type: x mandatory;
}
.qw-x7k2-bonus-card {
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid rgba(212,175,55,.38);
  border-radius: var(--qw-x7k2-radius);
  background: linear-gradient(145deg,var(--qw-x7k2-surface),#232a43);
  scroll-snap-align: start;
}
.qw-x7k2-bonus-card__header {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .8rem;
  color: var(--qw-x7k2-muted);
  font-size: .75rem;
  font-weight: 700;
}
.qw-x7k2-bonus-card__header span:last-child {
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-bonus-card__offer {
  margin-bottom: 1rem;
  color: var(--qw-x7k2-white);
  font-size: 1.35rem;
  font-weight: 700;
}
.qw-x7k2-bonus-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  padding: 1rem 0;
  margin: 0 0 1rem;
  border-top: 1px solid var(--qw-x7k2-border);
  border-bottom: 1px solid var(--qw-x7k2-border);
  font-size: .78rem;
}
.qw-x7k2-bonus-card dt {
  color: #c4c8d5;
}
.qw-x7k2-bonus-card dd {
  margin: 0;
  color: var(--qw-x7k2-white);
  text-align: right;
}
.qw-x7k2-accordion {
  max-width: 900px;
  border-top: 1px solid var(--qw-x7k2-border);
}
.qw-x7k2-accordion__item {
  border-bottom: 1px solid var(--qw-x7k2-border);
}
.qw-x7k2-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 0;
  border: 0;
  background: transparent;
  color: var(--qw-x7k2-white);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}
.qw-x7k2-accordion__trigger span {
  color: var(--qw-x7k2-gold);
  font-size: 1.35rem;
  transition: transform .2s ease;
}
.qw-x7k2-accordion__trigger[aria-expanded=true] span {
  transform: rotate(45deg);
}
.qw-x7k2-accordion__panel {
  padding: 0 2rem 1rem 0;
  color: var(--qw-x7k2-muted);
}
.qw-x7k2-accordion__panel p {
  margin: 0;
}
.qw-x7k2-content-body {
  max-width: 900px;
  padding: 2rem 2.2rem;
  margin-inline: auto;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: var(--qw-x7k2-radius);
  background: var(--qw-x7k2-surface);
  box-shadow: var(--qw-x7k2-shadow);
}
.qw-x7k2-content-body > :first-child {
  margin-top: 0;
}
.qw-x7k2-content-body > :last-child {
  margin-bottom: 0;
}
.qw-x7k2-content-body h2,
.qw-x7k2-content-body h3,
.qw-x7k2-content-body h4,
.qw-x7k2-content-body h5,
.qw-x7k2-content-body h6 {
  margin: 2rem 0 .7rem;
  color: var(--qw-x7k2-white);
  line-height: 1.25;
}
.qw-x7k2-content-body h2 {
  font-size: 2rem;
}
.qw-x7k2-content-body h3 {
  font-size: 1.35rem;
}
.qw-x7k2-content-body p {
  margin: 0 0 1rem;
}
.qw-x7k2-content-body ul,
.qw-x7k2-content-body ol {
  padding-left: 1.35rem;
}
.qw-x7k2-content-body li {
  margin: .4rem 0;
}
.qw-x7k2-content-body blockquote {
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--qw-x7k2-gold);
  background: var(--qw-x7k2-surface);
  color: var(--qw-x7k2-white);
  font-size: 1.1rem;
}
.qw-x7k2-content-body table {
  width: 100%;
  max-width: 100%;
  margin: 1.6rem 0;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: 10px;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--qw-x7k2-bg);
  table-layout: fixed;
  font-size: .92rem;
}
.qw-x7k2-content-body thead {
  background: var(--qw-x7k2-surface-2);
}
.qw-x7k2-content-body th,
.qw-x7k2-content-body td {
  padding: .75rem .9rem;
  border-bottom: 1px solid var(--qw-x7k2-border);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.qw-x7k2-content-body th {
  color: var(--qw-x7k2-gold);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.qw-x7k2-content-body th + th,
.qw-x7k2-content-body td + td {
  border-left: 1px solid var(--qw-x7k2-border);
}
.qw-x7k2-content-body tbody tr:nth-child(even) {
  background: rgba(255,255,255,.025);
}
.qw-x7k2-content-body tbody tr:last-child td {
  border-bottom: 0;
}
.qw-x7k2-content-body dl {
  display: grid;
  gap: .7rem;
  padding: 0;
  margin: 1.6rem 0;
}
.qw-x7k2-content-body dt {
  padding: .85rem 1rem .6rem;
  border: 1px solid var(--qw-x7k2-border);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: var(--qw-x7k2-surface-2);
  color: var(--qw-x7k2-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.qw-x7k2-content-body dd {
  padding: .75rem 1rem .85rem;
  margin: 0;
  border: 1px solid var(--qw-x7k2-border);
  border-top: 0;
  border-left: 3px solid var(--qw-x7k2-gold);
  border-radius: 0 0 10px 10px;
  background: var(--qw-x7k2-bg);
  color: var(--qw-x7k2-muted);
}
.qw-x7k2-content-body img {
  border-radius: 10px;
}
.qw-x7k2-reviews-empty {
  max-width: 900px;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: 8px;
  background: var(--qw-x7k2-surface);
}
.qw-x7k2-review-form-wrap {
  max-width: 720px;
  padding: 1.5rem;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: var(--qw-x7k2-radius);
  background: var(--qw-x7k2-surface);
}
.qw-x7k2-review-form-wrap h3 {
  margin-top: 0;
  color: var(--qw-x7k2-white);
}
.qw-x7k2-form-field {
  margin-bottom: 1rem;
}
.qw-x7k2-form-field label {
  display: block;
  margin-bottom: .35rem;
  color: var(--qw-x7k2-white);
  font-weight: 600;
}
.qw-x7k2-form-field input:not([type=checkbox]),
.qw-x7k2-form-field textarea {
  width: 100%;
  padding: .7rem .8rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  background: var(--qw-x7k2-navy);
  color: var(--qw-x7k2-white);
}
.qw-x7k2-form-field textarea {
  resize: vertical;
}
.qw-x7k2-form-field small {
  display: block;
  margin-top: .3rem;
  color: #c4c8d5;
  font-size: .75rem;
}
.qw-x7k2-form-field--checkbox label {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  font-weight: 400;
}
.qw-x7k2-form-field--checkbox input {
  margin-top: .35rem;
  accent-color: var(--qw-x7k2-gold);
}
.qw-x7k2-form-error {
  display: block;
  margin-top: .25rem;
  color: #ff9ca4;
  font-size: .75rem;
}
.qw-x7k2-author-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  max-width: 900px;
  padding: 1.5rem;
  border: 1px solid var(--qw-x7k2-border);
  border-radius: var(--qw-x7k2-radius);
  background: var(--qw-x7k2-surface);
}
.qw-x7k2-author-card > img {
  width: 120px;
  height: 120px;
}
.qw-x7k2-author-card h2 {
  margin: 0 0 .3rem;
  color: var(--qw-x7k2-white);
}
.qw-x7k2-author-card p {
  margin: .5rem 0;
}
.qw-x7k2-author-card__methodology {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--qw-x7k2-border);
  font-size: .86rem;
}
.qw-x7k2-author-card__methodology h3 {
  margin: 0;
  color: var(--qw-x7k2-gold);
  font-size: 1rem;
}
.qw-x7k2-page-title {
  padding: 4rem 0 2rem;
  margin: 0;
  color: var(--qw-x7k2-white);
  font-size: clamp(2rem,5vw,3.7rem);
}
.qw-x7k2-main--info {
  min-height: 60vh;
  padding-bottom: 4rem;
  background: radial-gradient(circle at 80% 0,rgba(230,57,70,.2),transparent 35%);
}
.qw-x7k2-footer {
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--qw-x7k2-border);
  background: #0b0f1b;
}
.qw-x7k2-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.qw-x7k2-footer__brand p {
  max-width: 340px;
  color: #c4c8d5;
  font-size: .85rem;
}
.qw-x7k2-footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
}
.qw-x7k2-footer__heading {
  margin: 0 0 .45rem;
  color: var(--qw-x7k2-white);
  font-size: .95rem;
}
.qw-x7k2-footer a {
  font-size: .83rem;
}
.qw-x7k2-footer__notice {
  padding: 1.25rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--qw-x7k2-border);
  border-bottom: 1px solid var(--qw-x7k2-border);
  color: #c4c8d5;
  font-size: .78rem;
}
.qw-x7k2-footer__notice p {
  margin: .4rem 0;
}
.qw-x7k2-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  color: #aeb4c4;
  font-size: .75rem;
}
.wp-block-group,
.entry-content,
.site-header,
.site-footer,
.wp-block-columns,
.has-large-font-size {
  isolation: isolate;
}
.wp-block-group {
  max-width: 100%;
}
.entry-content {
  text-rendering: optimizeLegibility;
}
.site-header {
  contain: layout style;
}
.site-footer {
  contain: layout style;
}
.wp-block-columns {
  gap: var(--qw-x7k2-gap);
}
.has-large-font-size {
  line-height: 1.2;
}
.wp-block-image {
  margin: 1.5rem 0;
}
.wp-block-button {
  display: inline-block;
}
.wp-block-separator {
  border-color: var(--qw-x7k2-border);
}
.qw-x7k2-hidden {
  display: none !important;
}
.qw-x7k2-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.qw-x7k2-text-center {
  text-align: center;
}
.qw-x7k2-text-gold {
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-text-muted {
  color: var(--qw-x7k2-muted);
}
.qw-x7k2-surface {
  background: var(--qw-x7k2-surface);
}
.qw-x7k2-border {
  border: 1px solid var(--qw-x7k2-border);
}
.qw-x7k2-rounded {
  border-radius: var(--qw-x7k2-radius);
}
.qw-x7k2-shadow {
  box-shadow: var(--qw-x7k2-shadow);
}
.qw-x7k2-m-0 {
  margin: 0;
}
.qw-x7k2-mt-1 {
  margin-top: 1rem;
}
.qw-x7k2-mb-1 {
  margin-bottom: 1rem;
}
.qw-x7k2-p-1 {
  padding: 1rem;
}
.qw-x7k2-flow > * + * {
  margin-top: 1rem;
}
.qw-x7k2-grid {
  display: grid;
}
.qw-x7k2-flex {
  display: flex;
}
.qw-x7k2-items-center {
  align-items: center;
}
.qw-x7k2-justify-between {
  justify-content: space-between;
}
.qw-x7k2-gap-1 {
  gap: 1rem;
}
.qw-x7k2-list-reset {
  padding: 0;
  margin: 0;
  list-style: none;
}
.qw-x7k2-no-underline {
  text-decoration: none;
}
.qw-x7k2-small {
  font-size: .8rem;
}
.qw-x7k2-bold {
  font-weight: 700;
}
.qw-x7k2-uppercase {
  text-transform: uppercase;
}
.qw-x7k2-red {
  color: var(--qw-x7k2-red);
}
.qw-x7k2-bg-red {
  background: var(--qw-x7k2-red);
}
.qw-x7k2-bg-gold {
  background: var(--qw-x7k2-gold);
}
.qw-x7k2-clip {
  overflow: hidden;
}
.qw-x7k2-relative {
  position: relative;
}
.qw-x7k2-sticky {
  position: sticky;
}
.qw-x7k2-w-full {
  width: 100%;
}
.qw-x7k2-max-content {
  width: max-content;
}
.qw-x7k2-opacity {
  opacity: .8;
}
.qw-x7k2-transition {
  transition: all .2s ease;
}
.qw-x7k2-link-muted {
  color: #c4c8d5;
}
.qw-x7k2-link-muted:hover {
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-border-gold {
  border-color: var(--qw-x7k2-gold);
}
.qw-x7k2-border-red {
  border-color: var(--qw-x7k2-red);
}
.qw-x7k2-focus-ring:focus-visible {
  outline: 3px solid var(--qw-x7k2-gold);
}
.qw-x7k2-card-title {
  color: var(--qw-x7k2-white);
}
.qw-x7k2-card-copy {
  color: var(--qw-x7k2-muted);
}
.qw-x7k2-card-link {
  color: var(--qw-x7k2-gold);
}
.qw-x7k2-icon {
  width: 1.2rem;
  height: 1.2rem;
}
.qw-x7k2-divider {
  height: 1px;
  background: var(--qw-x7k2-border);
}
.qw-x7k2-radius-sm {
  border-radius: 7px;
}
.qw-x7k2-radius-lg {
  border-radius: 20px;
}
.qw-x7k2-letter-tight {
  letter-spacing: -.02em;
}
.qw-x7k2-leading-tight {
  line-height: 1.2;
}
.qw-x7k2-leading-loose {
  line-height: 1.8;
}
.qw-x7k2-align-top {
  vertical-align: top;
}
.qw-x7k2-nowrap {
  white-space: nowrap;
}
.qw-x7k2-overflow-auto {
  overflow: auto;
}
.qw-x7k2-bg-transparent {
  background: transparent;
}
.qw-x7k2-display-block {
  display: block;
}
.qw-x7k2-display-inline {
  display: inline;
}
.qw-x7k2-screen-reader {
  position: absolute;
  clip-path: inset(50%);
}
.qw-x7k2-casino-card.is-filtered {
  display: none;
}
.qw-x7k2-loading {
  cursor: progress;
  opacity: .65;
}
.qw-x7k2-success {
  border-left-color: #56c596;
}
.qw-x7k2-warning-text {
  color: #ffd788;
}
.qw-x7k2-danger-text {
  color: #ff9ca4;
}
.qw-x7k2-neutral-bg {
  background: var(--qw-x7k2-navy);
}
.qw-x7k2-hover-lift:hover {
  transform: translateY(-3px);
}
.qw-x7k2-border-bottom {
  border-bottom: 1px solid var(--qw-x7k2-border);
}
.qw-x7k2-border-top {
  border-top: 1px solid var(--qw-x7k2-border);
}
.qw-x7k2-center {
  margin-inline: auto;
}
.qw-x7k2-grow {
  flex-grow: 1;
}
.qw-x7k2-shrink {
  flex-shrink: 1;
}
.qw-x7k2-order-first {
  order: -1;
}
.qw-x7k2-order-last {
  order: 99;
}
.qw-x7k2-min-w-0 {
  min-width: 0;
}
.qw-x7k2-aspect-video {
  aspect-ratio: 16 / 9;
}
.qw-x7k2-object-cover {
  object-fit: cover;
}
.qw-x7k2-list-disc {
  list-style: disc;
}
.qw-x7k2-list-decimal {
  list-style: decimal;
}
.qw-x7k2-no-list {
  list-style: none;
}
.qw-x7k2-font-normal {
  font-weight: 400;
}
.qw-x7k2-font-semibold {
  font-weight: 600;
}
.qw-x7k2-font-bold {
  font-weight: 700;
}
.qw-x7k2-px-1 {
  padding-inline: 1rem;
}
.qw-x7k2-py-1 {
  padding-block: 1rem;
}
.qw-x7k2-mx-auto {
  margin-inline: auto;
}
.qw-x7k2-mx-1 {
  margin-inline: 1rem;
}
.qw-x7k2-my-1 {
  margin-block: 1rem;
}
.qw-x7k2-ring {
  box-shadow: 0 0 0 3px rgba(212,175,55,.3);
}
.qw-x7k2-animate {
  animation: qw-x7k2-fade-in .5s ease both;
}
@keyframes qw-x7k2-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1100px) {
  .qw-x7k2-nav {
    gap: .45rem;
  }
  .qw-x7k2-nav > a {
    font-size: .76rem;
  }
  .qw-x7k2-hero {
    background-size: cover,cover,40vw auto;
  }
}
@media (max-width: 900px) {
  .qw-x7k2-casino-list {
    grid-template-columns: repeat(2,1fr);
  }
  .qw-x7k2-method-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .qw-x7k2-timeline {
    grid-template-columns: repeat(2,1fr);
    gap: 2rem 1rem;
  }
  .qw-x7k2-timeline::before {
    display: none;
  }
  .qw-x7k2-hero {
    background-position: center,center,center bottom;
    background-size: cover,cover,min(100%,600px) auto;
  }
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
  .qw-x7k2-header__inner {
    min-height: 68px;
  }
  .qw-x7k2-burger {
    display: block;
    margin-left: auto;
  }
  .qw-x7k2-nav {
    position: fixed;
    top: 68px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
    padding: 1rem;
    border: 1px solid var(--qw-x7k2-border);
    border-radius: 12px;
    background: var(--qw-x7k2-surface);
    box-shadow: var(--qw-x7k2-shadow);
  }
  .qw-x7k2-nav.is-open {
    display: flex;
  }
  .qw-x7k2-nav > a {
    padding: .7rem;
  }
  .qw-x7k2-nav__ctas {
    margin: .4rem 0 0;
  }
  .qw-x7k2-menu-overlay.is-visible {
    position: fixed;
    inset: 68px 0 0;
    display: block;
    background: rgba(0,0,0,.45);
  }
  .qw-x7k2-section {
    padding: 4rem 0;
  }
  .qw-x7k2-bonus-cards {
    display: flex;
    overflow-x: auto;
    padding-bottom: .8rem;
  }
  .qw-x7k2-bonus-card {
    flex: 0 0 min(84vw,340px);
  }
  .qw-x7k2-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .qw-x7k2-container {
    width: min(calc(100% - 1.35rem), var(--qw-x7k2-max));
  }
  .qw-x7k2-logo img {
    width: 150px;
  }
  .qw-x7k2-header__country {
    font-size: .72rem;
  }
  .qw-x7k2-hero {
    padding-bottom: 3.5rem;
    background-size: cover,cover,min(115%,420px) auto;
  }
  .qw-x7k2-content-body {
    padding: 1.2rem 1rem;
  }
  .qw-x7k2-content-body th,
  .qw-x7k2-content-body td {
    padding: .6rem .55rem;
  }
  .qw-x7k2-content-body table {
    font-size: .85rem;
  }
  .qw-x7k2-hero__title {
    font-size: clamp(2rem,11vw,3.2rem);
  }
  .qw-x7k2-hero__cta .qw-x7k2-btn {
    width: 100%;
  }
  .qw-x7k2-casino-list {
    grid-template-columns: 1fr;
  }
  .qw-x7k2-filters {
    align-items: stretch;
    flex-direction: column;
  }
  .qw-x7k2-filters__group {
    min-width: 0;
  }
  .qw-x7k2-method-grid {
    grid-template-columns: 1fr;
  }
  .qw-x7k2-method-card p {
    min-height: auto;
  }
  .qw-x7k2-timeline {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .qw-x7k2-timeline__step {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: .8rem;
  }
  .qw-x7k2-author-card {
    grid-template-columns: 1fr;
  }
  .qw-x7k2-author-card > img {
    width: 90px;
    height: 90px;
  }
  .qw-x7k2-footer__grid {
    grid-template-columns: 1fr;
  }
  .qw-x7k2-footer__bottom {
    flex-direction: column;
  }
}
@media (max-width: 390px) {
  .qw-x7k2-container {
    width: calc(100% - 1rem);
  }
  .qw-x7k2-header__country {
    display: none;
  }
  .qw-x7k2-casino-card {
    padding: 1rem;
  }
  .qw-x7k2-casino-card__footer {
    flex-direction: column;
  }
  .qw-x7k2-casino-card__footer .qw-x7k2-btn {
    width: 100%;
  }
}
@media (max-width: 360px) {
  body.qw-x7k2-body {
    font-size: 15px;
  }
  .qw-x7k2-hero__badges {
    gap: .35rem;
  }
  .qw-x7k2-badge {
    font-size: .68rem;
  }
  .qw-x7k2-section__title {
    font-size: 1.65rem;
  }
}
@media (max-width: 320px) {
  .qw-x7k2-logo img {
    width: 140px;
  }
  .qw-x7k2-hero__title {
    font-size: 1.95rem;
  }
  .qw-x7k2-btn {
    padding-inline: .75rem;
  }
}
@media (min-width: 1024px) {
  .qw-x7k2-container {
    width: min(calc(100% - 3rem), var(--qw-x7k2-max));
  }
  .qw-x7k2-hero {
    min-height: 680px;
  }
}
@media (min-width: 1440px) {
  .qw-x7k2-container {
    width: min(calc(100% - 4rem), 1240px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}