:root {
  --bg: #0d1220;
  --surface: #131c30;
  --card: #1a2440;
  --card-hover: #1e2c4e;
  --header-bg: #171C2F;
  --accent: #E63946;
  --accent-dark: #c0182a;
  --gold: #D4AF37;
  --gold-dark: #b8951e;
  --navy: #171C2F;
  --text: #eef0f8;
  --text-muted: #9aacc0;
  --text-dim: #5a6882;
  --border: rgba(212,175,55,0.15);
  --border-strong: rgba(212,175,55,0.4);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.25);
  --transition: 0.22s ease;
  --max-w: 1200px;
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.pm-x7k2-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10000;
  transition: top 0.2s;
  border-radius: 0 0 var(--radius) 0;
}

.pm-x7k2-skip-link:focus {
  top: 0;
}

.pm-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;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.pm-x7k2-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.pm-x7k2-container--narrow {
  max-width: 860px;
}

.pm-x7k2-section {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.pm-x7k2-section--surface {
  background: var(--surface);
}

.pm-x7k2-section--card {
  background: var(--card);
}

.pm-x7k2-section--dark {
  background: var(--bg);
}

.pm-x7k2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
  font-family: inherit;
}

.pm-x7k2-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.pm-x7k2-btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.pm-x7k2-btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
}

.pm-x7k2-btn--secondary {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.pm-x7k2-btn--secondary:hover {
  background: #1f2840;
  border-color: var(--gold);
}

.pm-x7k2-btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.pm-x7k2-btn--outline:hover {
  background: rgba(212,175,55,0.1);
}

.pm-x7k2-btn--full {
  width: 100%;
}

.pm-x7k2-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.pm-x7k2-link-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  font-family: inherit;
}

.pm-x7k2-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.pm-x7k2-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.pm-x7k2-logo {
  display: block;
  flex-shrink: 0;
}

.pm-x7k2-header__country {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.pm-x7k2-header__count {
  font-weight: 600;
}

.pm-x7k2-nav {
  margin-left: auto;
}

.pm-x7k2-nav__list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.pm-x7k2-nav__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.pm-x7k2-nav__link:hover,
.pm-x7k2-nav__link:focus-visible {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.pm-x7k2-nav__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.pm-x7k2-header__ctas {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.5rem;
}

.pm-x7k2-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  border-radius: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.pm-x7k2-burger:focus-visible {
  outline: 2px solid var(--gold);
}

.pm-x7k2-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.pm-x7k2-burger--open .pm-x7k2-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pm-x7k2-burger--open .pm-x7k2-burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.pm-x7k2-burger--open .pm-x7k2-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pm-x7k2-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.pm-x7k2-mobile-menu--open {
  display: flex;
}

.pm-x7k2-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(2px);
}

.pm-x7k2-mobile-menu__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--card);
  border-left: 1px solid var(--border-strong);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
}

.pm-x7k2-mobile-menu__close {
  align-self: flex-end;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-x7k2-mobile-menu__close:hover {
  color: var(--text);
  background: var(--card-hover);
}

.pm-x7k2-mobile-menu__logo {
  display: block;
}

.pm-x7k2-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pm-x7k2-mobile-menu__link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.pm-x7k2-mobile-menu__link:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.pm-x7k2-mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.pm-x7k2-mobile-menu__age {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.pm-x7k2-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 45%, var(--navy) 100%);
  padding: clamp(3rem, 7vw, 6rem) 0;
  overflow: hidden;
}

.pm-x7k2-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.pm-x7k2-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pm-x7k2-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  width: fit-content;
  backdrop-filter: blur(8px);
}

.pm-x7k2-hero__title {
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
}

.pm-x7k2-hero__title em {
  font-style: normal;
  color: var(--gold);
}

.pm-x7k2-hero__lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 540px;
}

.pm-x7k2-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pm-x7k2-badge--info {
  background: rgba(255,255,255,0.11);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
}

.pm-x7k2-hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pm-x7k2-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pm-x7k2-hero__img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

.pm-x7k2-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.pm-x7k2-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.75);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pm-x7k2-breadcrumbs {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.pm-x7k2-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pm-x7k2-breadcrumbs__item + .pm-x7k2-breadcrumbs__item::before {
  content: '/';
  color: var(--text-dim);
  margin-right: 0.25rem;
}

.pm-x7k2-breadcrumbs__item a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.pm-x7k2-breadcrumbs__item a:hover {
  color: var(--gold);
}

.pm-x7k2-breadcrumbs__item--current {
  color: var(--text-dim);
}

.pm-x7k2-section-header {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.pm-x7k2-section-header--center {
  text-align: center;
}

.pm-x7k2-section-header--center .pm-x7k2-section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.pm-x7k2-section-header--center .pm-x7k2-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.pm-x7k2-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pm-x7k2-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.pm-x7k2-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.pm-x7k2-section-subtitle {
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.65;
  font-size: 0.97rem;
}

.pm-x7k2-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0.9rem 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pm-x7k2-filter-bar__group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
}

.pm-x7k2-filter-bar__label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pm-x7k2-filter-btn {
  padding: 0.38rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  font-family: inherit;
}

.pm-x7k2-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.07);
}

.pm-x7k2-filter-btn--active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}

.pm-x7k2-filter-btn--active:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
}

.pm-x7k2-filter-bar__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.pm-x7k2-sort-select {
  padding: 0.38rem 0.75rem;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
}

.pm-x7k2-sort-select:focus {
  outline: 2px solid var(--gold);
}

.pm-x7k2-casino-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pm-x7k2-no-results {
  display: none;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-strong);
}

.pm-x7k2-casino-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pm-x7k2-casino-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.pm-x7k2-casino-card--featured {
  border-color: rgba(212,175,55,0.32);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.12);
}

.pm-x7k2-casino-card--featured::before {
  content: 'TOP 3';
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.18rem 0.55rem;
  border-radius: 0 0 6px 6px;
}

.pm-x7k2-casino-card__rank {
  position: absolute;
  top: 1.25rem;
  left: -1px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.22rem 0.6rem;
  border-radius: 0 4px 4px 0;
  line-height: 1;
}

.pm-x7k2-casino-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.15rem;
  padding-left: 0.5rem;
}

.pm-x7k2-casino-card__logo {
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.pm-x7k2-casino-card__info {
  flex: 1;
  min-width: 180px;
}

.pm-x7k2-casino-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.pm-x7k2-casino-card__geo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pm-x7k2-casino-card__indicators {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-left: auto;
  align-self: flex-start;
}

.pm-x7k2-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  font-size: 0.77rem;
  font-weight: 700;
  white-space: nowrap;
}

.pm-x7k2-indicator--yes {
  background: rgba(0,200,83,0.1);
  color: #00c853;
  border: 1px solid rgba(0,200,83,0.22);
}

.pm-x7k2-indicator--no {
  background: rgba(230,57,70,0.1);
  color: #E63946;
  border: 1px solid rgba(230,57,70,0.22);
}

.pm-x7k2-indicator--unknown {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.pm-x7k2-conditions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}

.pm-x7k2-conditions dl {
  display: contents;
}

.pm-x7k2-conditions__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pm-x7k2-conditions dt {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.pm-x7k2-conditions dd {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.pm-x7k2-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.pm-x7k2-pill--green {
  background: rgba(0,200,83,0.12);
  color: #00c853;
  border: 1px solid rgba(0,200,83,0.2);
}

.pm-x7k2-pill--gold {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.25);
}

.pm-x7k2-casino-card__bonus {
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.pm-x7k2-casino-card__bonus-amount {
  display: block;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.18rem;
}

.pm-x7k2-casino-card__bonus-terms {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pm-x7k2-advantages {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pm-x7k2-advantages li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pm-x7k2-advantages li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.02em;
}

.pm-x7k2-more-terms {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pm-x7k2-more-terms__toggle {
  width: 100%;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--gold);
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  font-family: inherit;
  border: none;
}

.pm-x7k2-more-terms__toggle::-webkit-details-marker {
  display: none;
}

.pm-x7k2-more-terms__toggle::after {
  content: '+';
  font-size: 1.1rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

details[open] .pm-x7k2-more-terms__toggle::after {
  transform: rotate(45deg);
}

.pm-x7k2-more-terms__body {
  padding: 0.75rem 1rem;
  background: var(--card);
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pm-x7k2-more-terms__body p + p {
  margin-top: 0.4rem;
}

.pm-x7k2-casino-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pm-x7k2-casino-card__license {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.pm-x7k2-casino-card__ctas {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.pm-x7k2-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  counter-reset: step-counter;
}

.pm-x7k2-step {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 1.25rem;
  border: 1px solid var(--border);
  counter-increment: step-counter;
  position: relative;
  transition: border-color var(--transition);
}

.pm-x7k2-step:hover {
  border-color: var(--border-strong);
}

.pm-x7k2-step::before {
  content: counter(step-counter);
  position: absolute;
  top: -1px;
  left: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  width: 26px;
  height: 26px;
  border-radius: 0 0 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.pm-x7k2-step__title {
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.pm-x7k2-step__body {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pm-x7k2-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.pm-x7k2-timeline::before {
  content: '';
  position: absolute;
  top: 1.65rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(212,175,55,0.3) 100%);
  z-index: 0;
}

.pm-x7k2-timeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  padding: 0 0.5rem 1rem;
}

.pm-x7k2-timeline-stage__dot {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.pm-x7k2-timeline-stage__label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.pm-x7k2-timeline-stage__time {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

.pm-x7k2-timeline-stage__desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pm-x7k2-security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.pm-x7k2-security-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.pm-x7k2-security-card:hover {
  border-color: var(--border-strong);
}

.pm-x7k2-security-card__icon {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  display: block;
}

.pm-x7k2-security-card__title {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.pm-x7k2-security-card__body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pm-x7k2-alt-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pm-x7k2-alt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 620px;
}

.pm-x7k2-alt-table th {
  background: var(--surface);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pm-x7k2-alt-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  line-height: 1.45;
}

.pm-x7k2-alt-table tr:last-child td {
  border-bottom: none;
}

.pm-x7k2-alt-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.pm-x7k2-alt-table td:first-child {
  font-weight: 600;
  color: var(--gold);
}

.pm-x7k2-check {
  color: #00c853;
}

.pm-x7k2-cross {
  color: var(--accent);
}

.pm-x7k2-content-body {
  max-width: 820px;
}

.pm-x7k2-content-body h2 {
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.pm-x7k2-content-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}

.pm-x7k2-content-body p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pm-x7k2-content-body ul,
.pm-x7k2-content-body ol {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.75;
  list-style: revert;
}

.pm-x7k2-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.pm-x7k2-content-body th,
.pm-x7k2-content-body td {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border-strong);
  text-align: left;
}

.pm-x7k2-content-body th {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}

.pm-x7k2-content-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 1.25rem;
  color: var(--text-muted);
  margin: 1rem 0;
  font-style: italic;
}

.pm-x7k2-content-body a {
  color: var(--gold);
  text-decoration: underline;
}

.pm-x7k2-content-body img {
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
}

.pm-x7k2-content-body strong {
  color: var(--text);
  font-weight: 600;
}

.pm-x7k2-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pm-x7k2-faq-item {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}

.pm-x7k2-faq-item[open] {
  border-color: var(--border-strong);
}

.pm-x7k2-faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color var(--transition);
}

.pm-x7k2-faq-item summary::-webkit-details-marker {
  display: none;
}

.pm-x7k2-faq-item summary::after {
  content: '+';
  font-size: 1.15rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.pm-x7k2-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.pm-x7k2-faq-item summary:hover {
  color: var(--gold);
}

.pm-x7k2-faq-body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin: 0 1.25rem;
}

.pm-x7k2-contact-form-wrap {
  max-width: 580px;
}

.pm-x7k2-contact-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.pm-x7k2-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.pm-x7k2-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pm-x7k2-input,
.pm-x7k2-textarea {
  padding: 0.72rem 1rem;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  width: 100%;
}

.pm-x7k2-input::placeholder,
.pm-x7k2-textarea::placeholder {
  color: var(--text-dim);
}

.pm-x7k2-input:focus,
.pm-x7k2-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.pm-x7k2-textarea {
  resize: vertical;
  min-height: 120px;
}

.pm-x7k2-form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 1.15rem;
  line-height: 1.6;
}

.pm-x7k2-form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(0,200,83,0.08);
  border: 1px solid rgba(0,200,83,0.25);
  border-radius: var(--radius);
  color: #00c853;
  font-size: 0.95rem;
  font-weight: 500;
}

.pm-x7k2-author-card {
  display: flex;
  gap: 2rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.pm-x7k2-author-card__photo {
  border-radius: 50%;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
}

.pm-x7k2-author-card__body {
  flex: 1;
}

.pm-x7k2-author-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.pm-x7k2-author-card__title {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.pm-x7k2-author-card__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.pm-x7k2-author-card__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pm-x7k2-author-card__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: underline;
  transition: color var(--transition);
}

.pm-x7k2-author-card__link:hover {
  color: var(--gold-dark);
}

.pm-x7k2-methodology {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pm-x7k2-methodology__title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
}

.pm-x7k2-methodology__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.pm-x7k2-methodology__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.pm-x7k2-methodology__list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

.pm-x7k2-footer {
  background: var(--header-bg);
  border-top: 2px solid var(--gold);
  padding: 3rem 0 1.5rem;
}

.pm-x7k2-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pm-x7k2-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pm-x7k2-footer__tagline {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pm-x7k2-footer__country {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.pm-x7k2-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pm-x7k2-footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.pm-x7k2-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pm-x7k2-footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.pm-x7k2-footer__col a:hover {
  color: var(--gold);
}

.pm-x7k2-footer__methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.pm-x7k2-footer__method-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
}

.pm-x7k2-method-tag {
  padding: 0.18rem 0.55rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.pm-x7k2-footer__disclosure {
  margin-bottom: 1.5rem;
}

.pm-x7k2-footer__disclosure p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.pm-x7k2-footer__disclosure a {
  color: var(--text-muted);
  text-decoration: underline;
}

.pm-x7k2-footer__disclosure a:hover {
  color: var(--gold);
}

.pm-x7k2-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pm-x7k2-trust-badge-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.6rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 4px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--gold);
}

a.pm-x7k2-trust-badge-sm {
  text-decoration: none;
  transition: background var(--transition);
}

a.pm-x7k2-trust-badge-sm:hover {
  background: rgba(212,175,55,0.16);
}

.pm-x7k2-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.pm-x7k2-footer__bottom p {
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.pm-x7k2-footer__bottom a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.pm-x7k2-footer__bottom a:hover {
  color: var(--gold);
}

.pm-x7k2-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--header-bg);
  border-top: 1px solid var(--border-strong);
  padding: 0.7rem 0;
  transform: translateY(100%);
  transition: transform 0.32s ease;
  pointer-events: none;
}

.pm-x7k2-sticky--visible {
  transform: translateY(0);
  pointer-events: auto;
}

.pm-x7k2-sticky .pm-x7k2-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pm-x7k2-sticky__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.pm-x7k2-sticky__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pm-x7k2-sticky__ctas {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.pm-x7k2-info-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 40%, var(--navy) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}

.pm-x7k2-info-hero .pm-x7k2-breadcrumbs {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1.5rem;
}

.pm-x7k2-info-hero .pm-x7k2-breadcrumbs__list {
  color: rgba(255,255,255,0.65);
}

.pm-x7k2-info-hero .pm-x7k2-breadcrumbs__item a {
  color: rgba(255,255,255,0.7);
}

.pm-x7k2-info-hero .pm-x7k2-breadcrumbs__item a:hover {
  color: var(--gold);
}

.pm-x7k2-info-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.pm-x7k2-info-content {
  background: var(--bg);
}

.pm-x7k2-body--info .pm-x7k2-info-content {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

@keyframes pm-x7k2-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pm-x7k2-body {
  animation: pm-x7k2-fadeIn 0.35s ease both;
}

.pm-x7k2-main:focus {
  outline: none;
}

@media (max-width: 767px) {
  .pm-x7k2-nav,
  .pm-x7k2-header__ctas {
    display: none;
  }

  .pm-x7k2-burger {
    display: flex;
  }

  .pm-x7k2-header__country {
    margin-right: auto;
  }

  .pm-x7k2-hero__inner {
    grid-template-columns: 1fr;
  }

  .pm-x7k2-hero__visual {
    display: none;
  }

  .pm-x7k2-timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }

  .pm-x7k2-timeline::before {
    display: none;
  }

  .pm-x7k2-footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pm-x7k2-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pm-x7k2-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pm-x7k2-author-card__links {
    justify-content: center;
  }

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

  .pm-x7k2-casino-card__indicators {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
  }

  .pm-x7k2-casino-card__header {
    padding-left: 0;
  }

  .pm-x7k2-casino-card__rank {
    position: static;
    align-self: flex-start;
    border-radius: 4px;
  }

  .pm-x7k2-sticky .pm-x7k2-sticky__label {
    display: none;
  }

  .pm-x7k2-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .pm-x7k2-steps {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .pm-x7k2-conditions {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .pm-x7k2-casino-card {
    padding: 1.75rem;
  }

  .pm-x7k2-casino-card__header {
    flex-wrap: nowrap;
  }
}

@media (max-width: 479px) {
  .pm-x7k2-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .pm-x7k2-filter-bar__sort {
    width: 100%;
  }

  .pm-x7k2-sort-select {
    flex: 1;
  }

  .pm-x7k2-timeline {
    grid-template-columns: 1fr;
  }

  .pm-x7k2-footer__nav {
    grid-template-columns: 1fr;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .pm-x7k2-body {
    animation: none;
  }
}

.wp-site-blocks { display: block; }
.wp-block-group { display: block; }
.has-background { background: inherit; }
.elementor-widget { display: block; }
.entry-content { display: block; }
.site-main { display: block; }
.widget-area { display: block; }
.wp-block-columns { display: flex; flex-wrap: wrap; }
.elementor-inner-column { display: flex; }
.elementor-widget-container { display: block; }
.hentry { display: block; }
.post-thumbnail { display: block; }
.site-header__inner { display: flex; }
.post-navigation { display: flex; }
.wp-block-separator { border: none; border-top: 2px solid; height: 0; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.wp-block-image figure { margin: 0; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }

/* casino logos: real brand marks are wide, not square */
.pm-x7k2-casino-card__logo {
  width: 132px;
  height: 56px;
  object-fit: contain;
  padding: 6px 10px;
  background: rgba(255,255,255,0.06);
}

/* quick-withdrawal banner: hero background layer, behind all hero content */
.pm-x7k2-hero {
  position: relative;
  isolation: isolate;
}

.pm-x7k2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/img/quick-withdrawl-banner2.png");
  background-size: cover;
  background-position: center;
}

.pm-x7k2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(6,8,13,0.96) 0%, rgba(6,8,13,0.92) 45%, rgba(6,8,13,0.98) 100%);
}

/* framed content area between header and footer */
.pm-x7k2-main {
  max-width: calc(var(--max-w) + 4rem);
  margin: 1.5rem auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.pm-x7k2-main > section:first-child,
.pm-x7k2-main > .pm-x7k2-hero {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pm-x7k2-main > section:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

@media (max-width: 767px) {
  .pm-x7k2-main {
    margin: 0.75rem;
    border-radius: 12px;
  }
}

/* raw content tables scroll inside their own box instead of the page */
.pm-x7k2-content-body table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pm-x7k2-content-body table tbody,
.pm-x7k2-content-body table thead {
  display: table;
  width: 100%;
  min-width: 560px;
}

.pm-x7k2-main,
.pm-x7k2-container {
  max-width: 100%;
  overflow-x: clip;
}

.pm-x7k2-main {
  max-width: calc(var(--max-w) + 4rem);
}
