@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --pm-color-brand: #910590;
  --pm-color-brand-dark: #6b0468;
  --pm-color-brand-light: #b307b0;
  --pm-color-bg: #f6f3fb;
  --pm-color-surface: #ffffff;
  --pm-color-surface-2: #f0eaf7;
  --pm-color-text: #141414;
  --pm-color-text-muted: #5a5068;
  --pm-color-border: #dcd4ea;
  --pm-color-btn-primary: #141414;
  --pm-color-btn-primary-text: #ffffff;
  --pm-color-btn-secondary: #F5F5F0;
  --pm-color-btn-secondary-text: #141414;
  --pm-color-success: #1a9e56;
  --pm-color-warning: #d97706;
  --pm-color-danger: #c53030;
  --pm-shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --pm-shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --pm-shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --pm-radius-sm: 6px;
  --pm-radius-md: 12px;
  --pm-radius-lg: 20px;
  --pm-gap: 1.5rem;
  --pm-container: 1200px;
  --pm-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--pm-font);
  background: var(--pm-color-bg);
  color: var(--pm-color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--pm-color-brand); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--pm-color-brand); outline-offset: 3px; border-radius: 3px; }

.pm-x7k2-container {
  max-width: var(--pm-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .pm-x7k2-container { padding: 0 2rem; } }
@media (min-width: 1024px) { .pm-x7k2-container { padding: 0 2.5rem; } }

.pm-x7k2-section {
  padding: 3rem 0;
}

@media (min-width: 768px) { .pm-x7k2-section { padding: 4rem 0; } }

.pm-x7k2-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pm-color-text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) { .pm-x7k2-section-title { font-size: 1.875rem; } }

.pm-x7k2-section-subtitle {
  color: var(--pm-color-text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 680px;
}

.pm-x7k2-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: var(--pm-radius-sm);
  font-family: var(--pm-font);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .1s;
  text-decoration: none;
  white-space: nowrap;
}

.pm-x7k2-btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.pm-x7k2-btn:active { transform: translateY(0); }
.pm-x7k2-btn:focus-visible { outline: 3px solid var(--pm-color-brand); outline-offset: 3px; }

.pm-x7k2-btn--primary {
  background: var(--pm-color-btn-primary);
  color: var(--pm-color-btn-primary-text);
}

.pm-x7k2-btn--secondary {
  background: var(--pm-color-btn-secondary);
  color: var(--pm-color-btn-secondary-text);
  border: 1.5px solid var(--pm-color-border);
}

.pm-x7k2-btn--brand {
  background: var(--pm-color-brand);
  color: #fff;
}

.pm-x7k2-btn--lg {
  padding: .85rem 2rem;
  font-size: 1rem;
}

.pm-x7k2-btn--sm {
  padding: .45rem 1rem;
  font-size: .82rem;
}

.pm-x7k2-header {
  background: var(--pm-color-brand);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.pm-x7k2-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.25rem;
  max-width: var(--pm-container);
  margin: 0 auto;
}

@media (min-width: 768px) { .pm-x7k2-header__inner { padding: .85rem 2rem; } }

.pm-x7k2-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.pm-x7k2-logo__icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.pm-x7k2-logo__text {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
}

.pm-x7k2-logo__sub {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  opacity: .8;
}

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

@media (min-width: 900px) {
  .pm-x7k2-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
    justify-content: center;
  }
}

.pm-x7k2-nav__link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.88);
  font-size: .84rem;
  font-weight: 500;
  padding: .45rem .7rem;
  border-radius: var(--pm-radius-sm);
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.pm-x7k2-nav__link:hover { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }
.pm-x7k2-nav__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pm-x7k2-header__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pm-x7k2-flag {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  margin-right: .25rem;
}

.pm-x7k2-flag__img { width: 22px; height: 16px; border-radius: 2px; }

.pm-x7k2-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: var(--pm-radius-sm);
  cursor: pointer;
  padding: 8px 7px;
  flex-shrink: 0;
}

@media (min-width: 900px) { .pm-x7k2-burger { display: none; } }

.pm-x7k2-burger:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

.pm-x7k2-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.pm-x7k2-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pm-x7k2-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pm-x7k2-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.pm-x7k2-mobile-nav {
  display: none;
  background: var(--pm-color-brand-dark);
  border-top: 1px solid rgba(255,255,255,.12);
}

.pm-x7k2-mobile-nav.is-open { display: block; }

.pm-x7k2-mobile-nav__inner {
  max-width: var(--pm-container);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
}

.pm-x7k2-mobile-nav__link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 500;
  padding: .6rem .8rem;
  border-radius: var(--pm-radius-sm);
  text-decoration: none;
  transition: background .15s;
}

.pm-x7k2-mobile-nav__link:hover { background: rgba(255,255,255,.12); text-decoration: none; }

.pm-x7k2-hero {
  background-image:
    linear-gradient(135deg, rgba(98,3,95,.94) 0%, rgba(145,5,144,.94) 60%, rgba(122,4,120,.94) 100%),
    url('/assets/img/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 3rem 0 3.5rem;
  overflow: hidden;
  position: relative;
}

.pm-x7k2-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}

.pm-x7k2-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.pm-x7k2-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .pm-x7k2-hero__inner {
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 3rem;
  }
}

.pm-x7k2-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  border-radius: 20px;
  padding: .3rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .85rem;
  letter-spacing: .02em;
}

.pm-x7k2-hero__title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) { .pm-x7k2-hero__title { font-size: 2.4rem; } }

.pm-x7k2-hero__desc {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.pm-x7k2-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}

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

.pm-x7k2-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.93);
  border-radius: 20px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.pm-x7k2-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

.pm-x7k2-badge__dot--yellow { background: #facc15; }

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

@media (min-width: 1024px) {
  .pm-x7k2-hero__visual {
    display: block;
  }
}

.pm-x7k2-hero__card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--pm-radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.pm-x7k2-hero__card-title {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.pm-x7k2-hero__stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}

.pm-x7k2-hero__stat-item {
  background: rgba(255,255,255,.1);
  border-radius: var(--pm-radius-sm);
  padding: .75rem;
  text-align: center;
}

.pm-x7k2-hero__stat-val {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  color: #fff;
}

.pm-x7k2-hero__stat-label {
  font-size: .74rem;
  color: rgba(255,255,255,.7);
}

.pm-x7k2-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}

.pm-x7k2-hero__trust-item {
  background: rgba(255,255,255,.1);
  border-radius: var(--pm-radius-sm);
  padding: .3rem .6rem;
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

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

.pm-x7k2-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem;
  list-style: none;
  font-size: .82rem;
  color: var(--pm-color-text-muted);
}

.pm-x7k2-breadcrumbs__item { display: flex; align-items: center; gap: .3rem; }
.pm-x7k2-breadcrumbs__item:not(:last-child)::after { content: '/'; color: var(--pm-color-border); }
.pm-x7k2-breadcrumbs__link { color: var(--pm-color-brand); }
.pm-x7k2-breadcrumbs__current { color: var(--pm-color-text-muted); }

.pm-x7k2-casinos {
  background: var(--pm-color-bg);
}

.pm-x7k2-casino-controls {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.pm-x7k2-casino-count {
  font-size: .85rem;
  color: var(--pm-color-text-muted);
  margin-left: auto;
}

.pm-x7k2-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .9rem;
  border: 1.5px solid var(--pm-color-border);
  border-radius: 20px;
  background: var(--pm-color-surface);
  font-family: var(--pm-font);
  font-size: .82rem;
  font-weight: 500;
  color: var(--pm-color-text-muted);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}

.pm-x7k2-filter-btn:hover,
.pm-x7k2-filter-btn.active {
  border-color: var(--pm-color-brand);
  color: var(--pm-color-brand);
  background: rgba(145,5,144,.06);
}

.pm-x7k2-sort-select {
  font-family: var(--pm-font);
  font-size: .82rem;
  padding: .4rem .75rem;
  border: 1.5px solid var(--pm-color-border);
  border-radius: 20px;
  background: var(--pm-color-surface);
  color: var(--pm-color-text);
  cursor: pointer;
}

.pm-x7k2-sort-select:focus-visible { outline: 3px solid var(--pm-color-brand); outline-offset: 2px; }

.pm-x7k2-casino-list {
  display: grid;
  gap: 1.25rem;
}

.pm-x7k2-card {
  background: var(--pm-color-surface);
  border-radius: var(--pm-radius-md);
  border: 1.5px solid var(--pm-color-border);
  box-shadow: var(--pm-shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}

.pm-x7k2-card:hover { box-shadow: var(--pm-shadow-md); border-color: rgba(145,5,144,.25); }

.pm-x7k2-card--top { border-color: rgba(145,5,144,.4); box-shadow: 0 4px 20px rgba(145,5,144,.1); }

.pm-x7k2-card__rank-strip {
  height: 4px;
  background: var(--pm-color-border);
}

.pm-x7k2-card--top-1 .pm-x7k2-card__rank-strip { background: linear-gradient(90deg, #d4af37 0%, #f5e27e 50%, #d4af37 100%); }
.pm-x7k2-card--top-2 .pm-x7k2-card__rank-strip { background: linear-gradient(90deg, #adb5bd 0%, #d6d8db 50%, #adb5bd 100%); }
.pm-x7k2-card--top-3 .pm-x7k2-card__rank-strip { background: linear-gradient(90deg, #cd7f32 0%, #e9a96c 50%, #cd7f32 100%); }

.pm-x7k2-card__header {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem .75rem;
}

@media (min-width: 768px) { .pm-x7k2-card__header { grid-template-columns: 72px 1fr auto; } }

.pm-x7k2-card__logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--pm-color-surface-2);
  border: 1.5px solid var(--pm-color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pm-color-brand);
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 768px) { .pm-x7k2-card__logo { width: 72px; height: 72px; } }

.pm-x7k2-card__logo-letter {
  font-size: 1.6rem;
  font-weight: 800;
}

.pm-x7k2-card__title-area { min-width: 0; }

.pm-x7k2-card__rank {
  font-size: .75rem;
  font-weight: 600;
  color: var(--pm-color-text-muted);
  margin-bottom: .2rem;
}

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

.pm-x7k2-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
}

.pm-x7k2-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .2rem .55rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1;
}

.pm-x7k2-tag--license { background: #e8f5e9; color: #1b5e20; }
.pm-x7k2-tag--geo { background: #e3f2fd; color: #0d47a1; }
.pm-x7k2-tag--payment { background: rgba(145,5,144,.1); color: var(--pm-color-brand); }

.pm-x7k2-card__indicators {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex-shrink: 0;
}

.pm-x7k2-indicator {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .74rem;
  font-weight: 600;
  padding: .2rem .5rem;
  border-radius: 4px;
}

.pm-x7k2-indicator--yes { background: #e8f5e9; color: #1b5e20; }
.pm-x7k2-indicator--no { background: #ffeef0; color: var(--pm-color-danger); }

.pm-x7k2-indicator__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pm-x7k2-indicator--yes .pm-x7k2-indicator__dot { background: var(--pm-color-success); }
.pm-x7k2-indicator--no .pm-x7k2-indicator__dot { background: var(--pm-color-danger); }

.pm-x7k2-card__body {
  padding: 0 1.25rem 1.25rem;
}

.pm-x7k2-card__conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1rem;
}

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

.pm-x7k2-cond-item {
  background: var(--pm-color-surface-2);
  border-radius: var(--pm-radius-sm);
  padding: .65rem .75rem;
  border: 1px solid var(--pm-color-border);
}

.pm-x7k2-cond-item__label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--pm-color-text-muted);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .2rem;
}

.pm-x7k2-cond-item__val {
  font-size: .88rem;
  font-weight: 700;
  color: var(--pm-color-text);
  line-height: 1.2;
}

.pm-x7k2-cond-item__note {
  font-size: .7rem;
  color: var(--pm-color-text-muted);
  margin-top: .15rem;
}

.pm-x7k2-card__bonus {
  background: linear-gradient(135deg, rgba(145,5,144,.06) 0%, rgba(145,5,144,.03) 100%);
  border: 1.5px solid rgba(145,5,144,.18);
  border-radius: var(--pm-radius-sm);
  padding: .85rem 1rem;
  margin-bottom: 1rem;
}

.pm-x7k2-card__bonus-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--pm-color-brand);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}

.pm-x7k2-card__bonus-text {
  font-size: .92rem;
  font-weight: 700;
  color: var(--pm-color-text);
  margin-bottom: .3rem;
}

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

.pm-x7k2-card__pros {
  display: grid;
  gap: .35rem;
  margin-bottom: 1rem;
}

.pm-x7k2-card__pro {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .84rem;
  color: var(--pm-color-text);
}

.pm-x7k2-card__pro::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--pm-color-success);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

.pm-x7k2-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  padding-top: .85rem;
  border-top: 1px solid var(--pm-color-border);
}

.pm-x7k2-card__source {
  font-size: .72rem;
  color: var(--pm-color-text-muted);
  margin-left: auto;
}

.pm-x7k2-card__details {
  display: none;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--pm-color-border);
  background: var(--pm-color-surface-2);
  font-size: .85rem;
  color: var(--pm-color-text-muted);
  line-height: 1.7;
}

.pm-x7k2-card__details.is-open { display: block; }

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

.pm-x7k2-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--pm-radius-md);
  box-shadow: var(--pm-shadow-sm);
  border: 1.5px solid var(--pm-color-border);
}

.pm-x7k2-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  font-size: .86rem;
}

.pm-x7k2-table thead {
  background: var(--pm-color-brand);
  color: #fff;
}

.pm-x7k2-table th {
  padding: .85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .03em;
  white-space: nowrap;
}

.pm-x7k2-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--pm-color-border);
  color: var(--pm-color-text);
  vertical-align: middle;
}

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

.pm-x7k2-table tbody tr:hover td { background: rgba(145,5,144,.03); }

.pm-x7k2-table__casino-name { font-weight: 600; }
.pm-x7k2-table__yes { color: var(--pm-color-success); font-weight: 600; }
.pm-x7k2-table__no { color: var(--pm-color-danger); font-weight: 600; }

.pm-x7k2-pros-cons {
  background: var(--pm-color-bg);
}

.pm-x7k2-pros-cons__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) { .pm-x7k2-pros-cons__grid { grid-template-columns: 1fr 1fr; } }

.pm-x7k2-pros-list, .pm-x7k2-cons-list {
  background: var(--pm-color-surface);
  border-radius: var(--pm-radius-md);
  padding: 1.5rem;
  box-shadow: var(--pm-shadow-sm);
  border: 1.5px solid var(--pm-color-border);
}

.pm-x7k2-pros-list { border-top: 4px solid var(--pm-color-success); }
.pm-x7k2-cons-list { border-top: 4px solid var(--pm-color-danger); }

.pm-x7k2-pros-list__title, .pm-x7k2-cons-list__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pm-x7k2-pros-list__title { color: var(--pm-color-success); }
.pm-x7k2-cons-list__title { color: var(--pm-color-danger); }

.pm-x7k2-pros-list__items, .pm-x7k2-cons-list__items { list-style: none; display: grid; gap: .65rem; }

.pm-x7k2-pros-list__item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--pm-color-text);
}

.pm-x7k2-pros-list__item::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #e8f5e9;
  border-radius: 50%;
  color: var(--pm-color-success);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

.pm-x7k2-cons-list__item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--pm-color-text);
}

.pm-x7k2-cons-list__item::before {
  content: '✕';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #fff0f0;
  border-radius: 50%;
  color: var(--pm-color-danger);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

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

.pm-x7k2-steps__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) { .pm-x7k2-steps__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pm-x7k2-steps__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.pm-x7k2-step {
  background: var(--pm-color-surface);
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-md);
  padding: 1.25rem;
  position: relative;
}

.pm-x7k2-step__num {
  width: 36px;
  height: 36px;
  background: var(--pm-color-brand);
  color: #fff;
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
}

.pm-x7k2-step__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.pm-x7k2-step__desc {
  font-size: .85rem;
  color: var(--pm-color-text-muted);
  line-height: 1.55;
}

.pm-x7k2-step__note {
  display: inline-block;
  margin-top: .6rem;
  background: rgba(145,5,144,.08);
  color: var(--pm-color-brand);
  border-radius: 4px;
  padding: .2rem .55rem;
  font-size: .76rem;
  font-weight: 600;
}

.pm-x7k2-calc {
  background: var(--pm-color-bg);
}

.pm-x7k2-calc__inner {
  background: var(--pm-color-surface);
  border-radius: var(--pm-radius-md);
  box-shadow: var(--pm-shadow-sm);
  border: 1.5px solid var(--pm-color-border);
  padding: 2rem;
  max-width: 680px;
}

.pm-x7k2-calc__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 600px) { .pm-x7k2-calc__grid { grid-template-columns: 1fr 1fr 1fr; } }

.pm-x7k2-field { display: grid; gap: .4rem; }

.pm-x7k2-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--pm-color-text);
}

.pm-x7k2-input,
.pm-x7k2-select {
  font-family: var(--pm-font);
  font-size: .9rem;
  padding: .6rem .85rem;
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-sm);
  background: var(--pm-color-surface);
  color: var(--pm-color-text);
  width: 100%;
  transition: border-color .15s;
}

.pm-x7k2-input:focus,
.pm-x7k2-select:focus { outline: none; border-color: var(--pm-color-brand); box-shadow: 0 0 0 3px rgba(145,5,144,.1); }

.pm-x7k2-calc__mode {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.pm-x7k2-radio-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  cursor: pointer;
  font-weight: 500;
}

.pm-x7k2-calc__result {
  display: none;
  background: linear-gradient(135deg, rgba(145,5,144,.07) 0%, rgba(145,5,144,.03) 100%);
  border: 1.5px solid rgba(145,5,144,.2);
  border-radius: var(--pm-radius-sm);
  padding: 1.25rem;
  margin-top: 1rem;
}

.pm-x7k2-calc__result.is-visible { display: block; }

.pm-x7k2-calc__result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

@media (min-width: 480px) { .pm-x7k2-calc__result-grid { grid-template-columns: repeat(3, 1fr); } }

.pm-x7k2-result-item { text-align: center; }

.pm-x7k2-result-item__val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pm-color-brand);
  display: block;
}

.pm-x7k2-result-item__label {
  font-size: .74rem;
  color: var(--pm-color-text-muted);
  margin-top: .15rem;
}

.pm-x7k2-calc__disclaimer {
  font-size: .76rem;
  color: var(--pm-color-text-muted);
  margin-top: .75rem;
  font-style: italic;
}

.pm-x7k2-calc__error {
  color: var(--pm-color-danger);
  font-size: .84rem;
  margin-top: .5rem;
  display: none;
}

.pm-x7k2-calc__error.is-visible { display: block; }

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

.pm-x7k2-flow {
  display: grid;
  gap: 0;
  position: relative;
}

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

.pm-x7k2-flow__step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  position: relative;
  background: var(--pm-color-surface);
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-md);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pm-x7k2-flow__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 0;
    border-right: none;
    margin-bottom: 0;
  }
  .pm-x7k2-flow__step:first-child { border-radius: var(--pm-radius-md) 0 0 var(--pm-radius-md); }
  .pm-x7k2-flow__step:last-child { border-right: 1.5px solid var(--pm-color-border); border-radius: 0 var(--pm-radius-md) var(--pm-radius-md) 0; }
}

.pm-x7k2-flow__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--pm-color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.pm-x7k2-flow__content {}
.pm-x7k2-flow__label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--pm-color-brand); margin-bottom: .3rem; }
.pm-x7k2-flow__title { font-size: .92rem; font-weight: 700; margin-bottom: .3rem; }
.pm-x7k2-flow__time { font-size: .78rem; color: var(--pm-color-success); font-weight: 600; }
.pm-x7k2-flow__desc { font-size: .8rem; color: var(--pm-color-text-muted); margin-top: .25rem; line-height: 1.5; }

.pm-x7k2-delays {
  margin-top: 1.5rem;
  background: #fff8e1;
  border: 1.5px solid #ffe082;
  border-radius: var(--pm-radius-sm);
  padding: 1rem 1.25rem;
}

.pm-x7k2-delays__title { font-size: .88rem; font-weight: 700; color: #7c5c00; margin-bottom: .5rem; }
.pm-x7k2-delays__list { list-style: disc; padding-left: 1.2rem; font-size: .84rem; color: #5a4000; line-height: 1.7; }

.pm-x7k2-bonuses {
  background: var(--pm-color-bg);
}

.pm-x7k2-bonuses__scroll {
  display: grid;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
}

@media (min-width: 768px) {
  .pm-x7k2-bonuses__scroll {
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
  }
}

@media (max-width: 767px) {
  .pm-x7k2-bonuses__scroll {
    grid-template-columns: repeat(3, 85vw);
  }
}

.pm-x7k2-bonus-card {
  scroll-snap-align: start;
  background: var(--pm-color-surface);
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-md);
  padding: 1.5rem;
  box-shadow: var(--pm-shadow-sm);
  transition: box-shadow .2s;
}

.pm-x7k2-bonus-card:hover { box-shadow: var(--pm-shadow-md); }

.pm-x7k2-bonus-card__casino { font-size: .78rem; font-weight: 600; color: var(--pm-color-text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.pm-x7k2-bonus-card__offer { font-size: 1rem; font-weight: 700; color: var(--pm-color-text); margin-bottom: .85rem; line-height: 1.3; }
.pm-x7k2-bonus-card__conditions { list-style: none; display: grid; gap: .35rem; margin-bottom: 1rem; }
.pm-x7k2-bonus-card__condition { font-size: .8rem; color: var(--pm-color-text-muted); display: flex; gap: .4rem; align-items: baseline; }
.pm-x7k2-bonus-card__condition strong { color: var(--pm-color-text); }
.pm-x7k2-bonus-card__compat {
  background: #e8f5e9;
  border-radius: var(--pm-radius-sm);
  padding: .4rem .75rem;
  font-size: .78rem;
  font-weight: 600;
  color: #1b5e20;
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.pm-x7k2-mobile-table {
  background: var(--pm-color-surface);
}

.pm-x7k2-mobile-table .pm-x7k2-table-wrap {
  margin-bottom: 1.25rem;
}

.pm-x7k2-mobile-table .pm-x7k2-table { min-width: 640px; }

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

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

.pm-x7k2-content-body h2 { font-size: 1.4rem; font-weight: 700; margin: 1.75rem 0 .75rem; color: var(--pm-color-text); }
.pm-x7k2-content-body h3 { font-size: 1.15rem; font-weight: 700; margin: 1.25rem 0 .5rem; color: var(--pm-color-text); }
.pm-x7k2-content-body h4 { font-size: 1rem; font-weight: 700; margin: 1rem 0 .4rem; color: var(--pm-color-text); }
.pm-x7k2-content-body p { margin-bottom: .9rem; line-height: 1.75; font-size: .95rem; color: var(--pm-color-text); }
.pm-x7k2-content-body ul, .pm-x7k2-content-body ol { padding-left: 1.4rem; margin-bottom: .9rem; }
.pm-x7k2-content-body li { margin-bottom: .3rem; line-height: 1.65; font-size: .95rem; }
.pm-x7k2-content-body a { color: var(--pm-color-brand); }
.pm-x7k2-content-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .88rem; }
.pm-x7k2-content-body th { background: var(--pm-color-brand); color: #fff; padding: .65rem .85rem; text-align: left; font-weight: 600; }
.pm-x7k2-content-body td { padding: .65rem .85rem; border-bottom: 1px solid var(--pm-color-border); }
.pm-x7k2-content-body tr:hover td { background: rgba(145,5,144,.03); }
.pm-x7k2-content-body blockquote { border-left: 4px solid var(--pm-color-brand); padding: .75rem 1rem; background: rgba(145,5,144,.05); border-radius: 0 var(--pm-radius-sm) var(--pm-radius-sm) 0; margin: 1rem 0; font-style: italic; color: var(--pm-color-text-muted); }
.pm-x7k2-content-body img { border-radius: var(--pm-radius-sm); max-width: 100%; }

.pm-x7k2-faq {
  background: var(--pm-color-bg);
}

.pm-x7k2-faq__list { display: grid; gap: .6rem; }

.pm-x7k2-faq__item {
  background: var(--pm-color-surface);
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-md);
  overflow: hidden;
}

.pm-x7k2-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: .94rem;
  font-weight: 600;
  color: var(--pm-color-text);
  transition: background .15s;
  gap: .75rem;
}

.pm-x7k2-faq__item summary::-webkit-details-marker { display: none; }
.pm-x7k2-faq__item summary:hover { background: var(--pm-color-surface-2); }

.pm-x7k2-faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--pm-color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
  font-size: .7rem;
  color: var(--pm-color-brand);
}

.pm-x7k2-faq__item[open] .pm-x7k2-faq__chevron { transform: rotate(180deg); }

.pm-x7k2-faq__answer {
  padding: 0 1.25rem 1.25rem;
  font-size: .88rem;
  color: var(--pm-color-text-muted);
  line-height: 1.75;
}

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

.pm-x7k2-reviews__empty {
  background: var(--pm-color-surface-2);
  border: 1.5px dashed var(--pm-color-border);
  border-radius: var(--pm-radius-md);
  padding: 2rem;
  text-align: center;
  color: var(--pm-color-text-muted);
  margin-bottom: 2rem;
}

.pm-x7k2-reviews__empty-icon { font-size: 2.5rem; margin-bottom: .75rem; opacity: .4; }
.pm-x7k2-reviews__empty-text { font-size: .9rem; line-height: 1.65; }

.pm-x7k2-form {
  background: var(--pm-color-surface);
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-md);
  padding: 1.75rem;
  max-width: 560px;
  box-shadow: var(--pm-shadow-sm);
}

.pm-x7k2-form__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--pm-color-text);
}

.pm-x7k2-form__grid { display: grid; gap: 1rem; }

@media (min-width: 500px) { .pm-x7k2-form__grid--2col { grid-template-columns: 1fr 1fr; } }

.pm-x7k2-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--pm-color-text);
}

.pm-x7k2-form .pm-x7k2-input,
.pm-x7k2-form textarea {
  font-family: var(--pm-font);
  font-size: .9rem;
  padding: .6rem .85rem;
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-sm);
  background: var(--pm-color-surface);
  color: var(--pm-color-text);
  width: 100%;
  transition: border-color .15s;
}

.pm-x7k2-form .pm-x7k2-input:focus,
.pm-x7k2-form textarea:focus { outline: none; border-color: var(--pm-color-brand); box-shadow: 0 0 0 3px rgba(145,5,144,.1); }

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

.pm-x7k2-form__note { font-size: .76rem; color: var(--pm-color-text-muted); margin-top: .35rem; }
.pm-x7k2-form__consent { font-size: .8rem; color: var(--pm-color-text-muted); display: flex; align-items: flex-start; gap: .5rem; cursor: pointer; }
.pm-x7k2-form__consent input { margin-top: .15rem; flex-shrink: 0; accent-color: var(--pm-color-brand); }

.pm-x7k2-form__status {
  display: none;
  padding: .85rem 1rem;
  border-radius: var(--pm-radius-sm);
  font-size: .88rem;
  font-weight: 600;
  margin-top: .75rem;
}

.pm-x7k2-form__status.is-visible { display: block; }
.pm-x7k2-form__status--info { background: #e3f2fd; color: #0d47a1; border: 1.5px solid #90caf9; }
.pm-x7k2-form__status--error { background: #ffeef0; color: var(--pm-color-danger); border: 1.5px solid #ffa0a8; }

.pm-x7k2-field__error {
  font-size: .76rem;
  color: var(--pm-color-danger);
  margin-top: .25rem;
  display: none;
}

.pm-x7k2-field__error.is-visible { display: block; }

.pm-x7k2-author {
  background: var(--pm-color-bg);
}

.pm-x7k2-author__card {
  background: var(--pm-color-surface);
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-md);
  padding: 1.75rem;
  box-shadow: var(--pm-shadow-sm);
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .pm-x7k2-author__card { grid-template-columns: auto 1fr; } }

.pm-x7k2-author__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-color-brand-dark), var(--pm-color-brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 3px solid var(--pm-color-brand);
}

.pm-x7k2-author__name { font-size: 1.1rem; font-weight: 700; margin-bottom: .2rem; }
.pm-x7k2-author__title { font-size: .84rem; color: var(--pm-color-brand); font-weight: 600; margin-bottom: .75rem; }
.pm-x7k2-author__bio { font-size: .88rem; color: var(--pm-color-text-muted); line-height: 1.7; margin-bottom: .85rem; }
.pm-x7k2-author__links { display: flex; gap: .6rem; flex-wrap: wrap; }
.pm-x7k2-author__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .85rem;
  border: 1.5px solid var(--pm-color-border);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--pm-color-text-muted);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.pm-x7k2-author__link:hover { border-color: var(--pm-color-brand); color: var(--pm-color-brand); text-decoration: none; }

.pm-x7k2-methodology {
  background: var(--pm-color-surface-2);
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--pm-color-text-muted);
  line-height: 1.7;
}

.pm-x7k2-methodology__title { font-weight: 700; color: var(--pm-color-text); margin-bottom: .4rem; font-size: .9rem; }
.pm-x7k2-affiliate-note { font-size: .8rem; color: var(--pm-color-text-muted); margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--pm-color-border); }

.pm-x7k2-footer {
  background: var(--pm-color-brand-dark);
  color: rgba(255,255,255,.8);
  padding: 3rem 0 0;
}

.pm-x7k2-footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) { .pm-x7k2-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.pm-x7k2-footer__brand-name { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.pm-x7k2-footer__brand-desc { font-size: .82rem; line-height: 1.65; margin-bottom: 1rem; }
.pm-x7k2-footer__country { display: flex; align-items: center; gap: .4rem; font-size: .8rem; margin-bottom: 1rem; }
.pm-x7k2-footer__payment-label { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.pm-x7k2-footer__payment-logos { display: flex; gap: .5rem; flex-wrap: wrap; }
.pm-x7k2-footer__payment-logo {
  background: rgba(255,255,255,.12);
  border-radius: var(--pm-radius-sm);
  padding: .3rem .7rem;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}

.pm-x7k2-footer__col-title {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .85rem;
}

.pm-x7k2-footer__nav { list-style: none; display: grid; gap: .4rem; }
.pm-x7k2-footer__nav a { color: rgba(255,255,255,.75); font-size: .85rem; text-decoration: none; transition: color .15s; }
.pm-x7k2-footer__nav a:hover { color: #fff; text-decoration: none; }

.pm-x7k2-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.5rem 0;
}

.pm-x7k2-footer__bottom-inner {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) { .pm-x7k2-footer__bottom-inner { grid-template-columns: 1fr auto; align-items: center; } }

.pm-x7k2-footer__legal {
  font-size: .76rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}

.pm-x7k2-footer__legal a { color: rgba(255,255,255,.65); }
.pm-x7k2-footer__legal a:hover { color: #fff; }

.pm-x7k2-footer__age {
  background: rgba(255,255,255,.1);
  border-radius: var(--pm-radius-sm);
  padding: .4rem .85rem;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}

.pm-x7k2-footer__responsible {
  margin-top: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

.pm-x7k2-footer__responsible a { color: rgba(255,255,255,.65); }

.pm-x7k2-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.pm-x7k2-widget__inner {
  background: var(--pm-color-brand-dark);
  border-top: 2px solid var(--pm-color-brand);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1.25rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .pm-x7k2-widget {
    bottom: 1.5rem;
    left: auto;
    right: 1.5rem;
    width: auto;
    padding-bottom: 0;
  }
  .pm-x7k2-widget__inner {
    border-radius: var(--pm-radius-md);
    border: none;
    box-shadow: var(--pm-shadow-lg), 0 0 0 2px rgba(145,5,144,.4);
    padding: .85rem 1.25rem;
    min-width: 280px;
  }
}

.pm-x7k2-widget__text {
  flex: 1;
  min-width: 0;
}

.pm-x7k2-widget__title { color: #fff; font-size: .88rem; font-weight: 700; line-height: 1.2; }
.pm-x7k2-widget__sub { color: rgba(255,255,255,.7); font-size: .75rem; }

.pm-x7k2-widget__close {
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
  line-height: 1;
}

.pm-x7k2-widget__close:hover { background: rgba(255,255,255,.25); }
.pm-x7k2-widget__close:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

.pm-x7k2-widget.is-hidden { display: none; }

.pm-x7k2-page-body {
  padding-bottom: 80px;
}

@media (min-width: 768px) { .pm-x7k2-page-body { padding-bottom: 0; } }

.pm-x7k2-warning {
  background: #fff8e1;
  border: 1.5px solid #ffe082;
  border-left: 4px solid var(--pm-color-warning);
  border-radius: var(--pm-radius-sm);
  padding: .85rem 1.1rem;
  font-size: .85rem;
  color: #5a4000;
  line-height: 1.6;
  margin: 1rem 0;
}

.pm-x7k2-info-box {
  background: #e3f2fd;
  border: 1.5px solid #90caf9;
  border-left: 4px solid #2196f3;
  border-radius: var(--pm-radius-sm);
  padding: .85rem 1.1rem;
  font-size: .85rem;
  color: #0d47a1;
  line-height: 1.6;
  margin: 1rem 0;
}

.pm-x7k2-divider {
  border: none;
  border-top: 1px solid var(--pm-color-border);
  margin: 2.5rem 0;
}

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

.pm-x7k2-load-more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.pm-x7k2-load-more__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  background: var(--pm-color-surface);
  border: 1.5px solid var(--pm-color-border);
  border-radius: var(--pm-radius-sm);
  font-family: var(--pm-font);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--pm-color-text);
  transition: border-color .15s, color .15s;
}

.pm-x7k2-load-more__btn:hover { border-color: var(--pm-color-brand); color: var(--pm-color-brand); }
.pm-x7k2-load-more__btn:disabled { opacity: .5; cursor: not-allowed; }

.pm-x7k2-load-more__error {
  text-align: center;
  font-size: .85rem;
  color: var(--pm-color-danger);
  margin-top: .5rem;
}

.pm-x7k2-info-banner {
  background: var(--pm-color-surface-2);
  border-radius: var(--pm-radius-sm);
  padding: .75rem 1rem;
  font-size: .82rem;
  color: var(--pm-color-text-muted);
  margin-bottom: 1.5rem;
  border: 1px solid var(--pm-color-border);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.pm-x7k2-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.pm-x7k2-info-page {
  padding: 3rem 0 4rem;
}

.pm-x7k2-info-page h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--pm-color-text);
}

.pm-x7k2-info-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.75rem 0 .6rem;
  color: var(--pm-color-text);
}

.pm-x7k2-info-page p {
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: .9rem;
  color: var(--pm-color-text);
}

.pm-x7k2-info-page ul, .pm-x7k2-info-page ol {
  padding-left: 1.4rem;
  margin-bottom: .9rem;
}

.pm-x7k2-info-page li {
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: .3rem;
}

.pm-x7k2-info-page a { color: var(--pm-color-brand); }

.pm-x7k2-page-card {
  background: var(--pm-color-surface);
  border-radius: var(--pm-radius-md);
  border: 1.5px solid var(--pm-color-border);
  padding: 2rem;
  box-shadow: var(--pm-shadow-sm);
  max-width: 760px;
}

.pm-x7k2-aside-widget {
  display: none;
}

.pm-x7k2-d-none { display: none !important; }

.pm-x7k2-author__avatar{
  width:70px;
  height:70px;
  flex:0 0 70px;
  border-radius:50%;
  overflow:hidden;
}

.pm-x7k2-author__avatar img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.skk {
  max-width: 1180px;
  margin: 40px auto;
  padding: 40px 45px;
  background: #fff;
  border: 1px solid #e4d9e8;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(80, 20, 90, 0.08);
  color: #241b28;
  font-size: 17px;
  line-height: 1.75;
  box-sizing: border-box;
}

.skk h2 {
  margin: 42px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #910590;
  color: #62035f;
  font-size: 30px;
  line-height: 1.25;
}

.skk h3 {
  margin: 32px 0 14px;
  color: #7a0478;
  font-size: 22px;
  line-height: 1.35;
}

.skk p {
  margin: 0 0 18px;
}

.skk ol,
.skk ul {
  margin: 0 0 24px;
  padding-left: 25px;
}

.skk li {
  margin-bottom: 8px;
}

.skk blockquote {
  margin: 28px 0;
  padding: 22px 25px;
  background: #faf5fb;
  border-left: 5px solid #910590;
  border-radius: 10px;
  box-sizing: border-box;
}

.skk blockquote p {
  margin-bottom: 12px;
  font-weight: 700;
  color: #62035f;
}

.skk blockquote ul {
  margin-bottom: 0;
}

.skk table {
  width: 100%;
  min-width: 720px;
  margin: 25px 0 30px;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}

.skk table th {
  padding: 14px 16px;
  background: #910590;
  color: #fff;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid #910590;
}

.skk table td {
  padding: 13px 16px;
  border: 1px solid #dfd3e1;
  vertical-align: top;
  background: #fff;
}

.skk table tr:nth-child(even) td {
  background: #faf7fb;
}

.skk table td:first-child {
  font-weight: 600;
  color: #62035f;
}

.skk a {
  color: #910590;
  text-decoration: underline;
}

.skk strong {
  color: #62035f;
}

@media (max-width: 900px) {
  .skk {
    margin: 25px 15px;
    padding: 30px 25px;
    font-size: 16px;
  }

  .skk h2 {
    font-size: 26px;
    margin-top: 34px;
  }

  .skk h3 {
    font-size: 20px;
  }

  .skk table {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .skk {
    margin: 15px 10px;
    padding: 22px 16px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.65;
  }

  .skk h2 {
    margin: 30px 0 15px;
    padding-bottom: 8px;
    font-size: 23px;
  }

  .skk h3 {
    margin: 25px 0 12px;
    font-size: 19px;
  }

  .skk p {
    margin-bottom: 15px;
  }

  .skk ol,
  .skk ul {
    padding-left: 21px;
  }

  .skk blockquote {
    margin: 22px 0;
    padding: 17px 16px;
  }

  .skk table {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-spacing: 0;
    white-space: nowrap;
  }

  .skk table th,
  .skk table td {
    padding: 11px 13px;
  }
}

@media (max-width: 899px) {
  .pm-x7k2-logo {
    width: 120px !important;
    max-width: 120px !important;
    flex-shrink: 0 !important;
  }

  .pm-x7k2-logo img {
    width: 120px !important;
    max-width: 120px !important;
    height: auto !important;
    min-width: 120px !important;
    display: block !important;
  }
}

@media (max-width: 899px) {
  .pm-x7k2-flag {
    display: none !important;
  }
}

@media (max-width: 899px) {
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
  }

  .pm-x7k2-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .pm-x7k2-footer + * {
    margin-top: 0 !important;
  }
}

