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

:root {
  --bg: #F2C14E;
  --surface: #ffffff;
  --surface-alt: #faf6ed;
  --text: #1a1a1a;
  --text-muted: #555;
  --text-light: #777;
  --border: #e0d5b8;
  --accent-primary: #8C6A3F;
  --accent-secondary: #123B2E;
  --accent-gold: #F2C14E;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(18,59,46,.10);
  --shadow-card: 0 2px 12px rgba(18,59,46,.08);
  --transition: .18s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--accent-secondary);
  text-decoration: underline;
}

a:hover { color: var(--accent-primary); }

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-top: 0;
  color: var(--accent-secondary);
}

p { margin-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;
}

.pm-x7k2-container {
  width: min(1200px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.pm-x7k2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

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

.pm-x7k2-btn--primary:hover {
  background: #7a5c34;
  border-color: #7a5c34;
  color: #fff;
}

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

.pm-x7k2-btn--secondary:hover {
  background: #0e2d22;
  border-color: #0e2d22;
  color: #fff;
}

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

.pm-x7k2-btn--outline:hover {
  background: var(--accent-secondary);
  color: #fff;
}

.pm-x7k2-btn--sm {
  padding: 7px 14px;
  font-size: .875rem;
}

/* ===== HEADER ===== */
.pm-x7k2-header {
  background: var(--accent-secondary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.pm-x7k2-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  min-height: 64px;
}

.pm-x7k2-header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
  margin-right: auto;
}

.pm-x7k2-header__logo-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.pm-x7k2-header__logo-sub {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  opacity: .85;
}

.pm-x7k2-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.pm-x7k2-header__logo-img {
  height: 40px;
  width: auto;
}

.pm-x7k2-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.pm-x7k2-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.pm-x7k2-nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.pm-x7k2-header__cta-group {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pm-x7k2-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
}

.pm-x7k2-burger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== HERO ===== */
.pm-x7k2-hero {
  position: relative;
  color: #fff;
  padding: clamp(32px, 6vw, 72px) 0;
  background-color: var(--accent-secondary);
  background-image:
    linear-gradient(135deg, rgba(6,18,13,.96) 0%, rgba(10,32,24,.90) 55%, rgba(10,32,24,.84) 100%),
    url('/minimal-deposit-banner.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;
}

.pm-x7k2-hero .pm-x7k2-container { position: relative; }

.pm-x7k2-breadcrumbs {
  margin-bottom: 16px;
}

.pm-x7k2-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
}

.pm-x7k2-breadcrumbs ol li:not(:first-child)::before {
  content: '/';
  margin-right: 6px;
}

.pm-x7k2-breadcrumbs a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}

.pm-x7k2-breadcrumbs a:hover { color: #fff; }

.pm-x7k2-hero__h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  max-width: 780px;
}

.pm-x7k2-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.85);
  max-width: 680px;
  margin-bottom: 24px;
}

.pm-x7k2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pm-x7k2-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: .8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.pm-x7k2-badge--geo {
  background: rgba(242,193,78,.2);
  border-color: rgba(242,193,78,.4);
  color: var(--bg);
  font-size: .75rem;
  padding: 2px 8px;
}

.pm-x7k2-hero__banner {
  position: relative;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(242,193,78,.45);
  background: rgba(6,18,13,.62);
  backdrop-filter: blur(2px);
  box-shadow: var(--shadow);
}

.pm-x7k2-hero__banner-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}

.pm-x7k2-hero__cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== SECTIONS ===== */
.pm-x7k2-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

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

.pm-x7k2-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.pm-x7k2-section__lead {
  color: var(--text-muted);
  max-width: 780px;
  margin-bottom: 32px;
  font-size: 1.0625rem;
}

/* ===== FILTERS ===== */
.pm-x7k2-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.pm-x7k2-filters__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.pm-x7k2-filter-btn {
  padding: 7px 14px;
  border: 2px solid var(--border);
  border-radius: 99px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.pm-x7k2-filter-btn--active,
.pm-x7k2-filter-btn:hover {
  border-color: var(--accent-secondary);
  background: var(--accent-secondary);
  color: #fff;
}

.pm-x7k2-filters__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-x7k2-sort-select {
  padding: 8px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: inherit;
  font-size: .875rem;
  color: var(--text);
  cursor: pointer;
}

/* ===== CASINO LIST ===== */
.pm-x7k2-casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pm-x7k2-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}

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

.pm-x7k2-card--top {
  border-color: var(--accent-primary);
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(140,106,63,.15);
}

.pm-x7k2-card__rank {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-primary);
  min-width: 32px;
}

.pm-x7k2-card--top .pm-x7k2-card__rank {
  color: var(--accent-primary);
}

.pm-x7k2-card__logo-wrap {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.pm-x7k2-card__logo {
  width: 110px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: #10221b;
  border: 1px solid rgba(18,59,46,.18);
  padding: 6px 8px;
  flex-shrink: 0;
}

/* logos whose artwork is dark need a light plate instead */
.pm-x7k2-card__logo--light {
  background: #ffffff;
  border-color: var(--border);
}

.pm-x7k2-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-x7k2-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pm-x7k2-card__indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pm-x7k2-indicator {
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
}

.pm-x7k2-indicator--yes {
  background: #dcfce7;
  color: #15803d;
}

.pm-x7k2-indicator--no {
  background: #fee2e2;
  color: #dc2626;
}

.pm-x7k2-indicator--unknown {
  background: #f3f4f6;
  color: #6b7280;
}

.pm-x7k2-card__conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

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

.pm-x7k2-cond strong {
  color: var(--text);
}

.pm-x7k2-card__bonus {
  font-size: .875rem;
  color: var(--accent-secondary);
  background: rgba(242,193,78,.15);
  border: 1px solid rgba(242,193,78,.4);
  border-radius: var(--radius);
  padding: 8px 12px;
}

.pm-x7k2-card__pros {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: .875rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pm-x7k2-card__license {
  font-size: .75rem;
  color: var(--text-light);
  margin: 0;
}

.pm-x7k2-card__source {
  color: var(--text-light);
}

.pm-x7k2-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  min-width: 120px;
}

.pm-x7k2-load-more-wrap {
  text-align: center;
  margin-top: 32px;
}

.pm-x7k2-load-more-msg {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: .875rem;
}

/* ===== TABLES ===== */
.pm-x7k2-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.pm-x7k2-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: .9375rem;
}

.pm-x7k2-table th,
.pm-x7k2-table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--border);
  vertical-align: top;
}

.pm-x7k2-table th {
  background: var(--accent-secondary);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.pm-x7k2-table tbody tr:nth-child(even) {
  background: var(--surface-alt);
}

.pm-x7k2-table tbody tr:hover {
  background: rgba(242,193,78,.15);
}

.pm-x7k2-table--info td:first-child {
  font-weight: 600;
  color: var(--accent-secondary);
  width: 38%;
}

.pm-x7k2-table--alt th:first-child,
.pm-x7k2-table--alt td:first-child {
  white-space: nowrap;
}

/* ===== PROS & CONS ===== */
.pm-x7k2-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pm-x7k2-pros-cons__col {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.pm-x7k2-pros-cons__col--pros {
  border-top: 4px solid #22c55e;
}

.pm-x7k2-pros-cons__col--cons {
  border-top: 4px solid #ef4444;
}

.pm-x7k2-pros-cons__label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
}

.pm-x7k2-pros-cons__col--pros .pm-x7k2-pros-cons__label { color: #15803d; }
.pm-x7k2-pros-cons__col--cons .pm-x7k2-pros-cons__label { color: #dc2626; }

.pm-x7k2-pros-cons__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pm-x7k2-pros-cons__col--pros .pm-x7k2-pros-cons__list li::before {
  content: '✓ ';
  color: #22c55e;
  font-weight: 700;
}

.pm-x7k2-pros-cons__col--cons .pm-x7k2-pros-cons__list li::before {
  content: '✗ ';
  color: #ef4444;
  font-weight: 700;
}

.pm-x7k2-pros-cons__list li {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== NOTE ===== */
.pm-x7k2-note {
  margin-top: 16px;
  font-size: .875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== REVIEW / CONTENT BODY ===== */
.pm-x7k2-review-section .pm-x7k2-content-body {
  max-width: 820px;
}

.pm-x7k2-content-body h2 { font-size: 1.5rem; margin-top: 2rem; }
.pm-x7k2-content-body h3 { font-size: 1.25rem; margin-top: 1.5rem; }
.pm-x7k2-content-body h4 { font-size: 1.125rem; }
.pm-x7k2-content-body p { margin-bottom: 1rem; }
.pm-x7k2-content-body a { color: var(--accent-secondary); }
.pm-x7k2-content-body ul,
.pm-x7k2-content-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.pm-x7k2-content-body li { margin-bottom: .4rem; }

.pm-x7k2-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

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

.pm-x7k2-content-body th {
  background: var(--accent-secondary);
  color: #fff;
  font-weight: 600;
}

.pm-x7k2-content-body blockquote {
  border-left: 4px solid var(--accent-primary);
  margin: 0 0 1rem;
  padding: 12px 20px;
  background: var(--surface-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

/* ===== FAQ ===== */
.pm-x7k2-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

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

.pm-x7k2-faq__item[open] {
  border-color: var(--accent-secondary);
}

.pm-x7k2-faq__q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--accent-secondary);
}

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

.pm-x7k2-faq__q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.pm-x7k2-faq__a {
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.65;
}

.pm-x7k2-faq__a p { margin: 0; }

/* ===== AUTHOR ===== */
.pm-x7k2-author {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.pm-x7k2-author__avatar {
  border-radius: 50%;
  flex-shrink: 0;
}

.pm-x7k2-author__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-secondary);
  margin: 0 0 2px;
}

.pm-x7k2-author__role {
  font-size: .875rem;
  color: var(--accent-primary);
  font-weight: 600;
  margin: 0 0 12px;
}

.pm-x7k2-author__bio {
  font-size: .9375rem;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.pm-x7k2-author__link {
  font-size: .875rem;
  font-weight: 600;
}

.pm-x7k2-methodology {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.pm-x7k2-methodology h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.pm-x7k2-methodology p {
  font-size: .9375rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
.pm-x7k2-footer {
  background: var(--accent-secondary);
  color: rgba(255,255,255,.85);
  padding: 48px 0 24px;
}

.pm-x7k2-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.pm-x7k2-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 12px;
}

.pm-x7k2-footer__logo-img {
  height: 38px;
  width: auto;
}

.pm-x7k2-footer__country {
  font-size: .8125rem;
  opacity: .7;
  margin: 0;
}

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

.pm-x7k2-footer__nav-title {
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pm-x7k2-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-x7k2-footer__nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .875rem;
}

.pm-x7k2-footer__nav a:hover {
  color: #fff;
}

.pm-x7k2-footer__payment-list li {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}

.pm-x7k2-footer__trust {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
  margin-top: 8px;
}

.pm-x7k2-trust-badge {
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  color: rgba(255,255,255,.8);
}

.pm-x7k2-footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-x7k2-footer__affiliate,
.pm-x7k2-footer__age,
.pm-x7k2-footer__copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.6;
}

.pm-x7k2-footer a {
  color: rgba(255,255,255,.8);
}

.pm-x7k2-footer a:hover {
  color: var(--bg);
}

/* ===== STICKY WIDGET ===== */
.pm-x7k2-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--accent-secondary);
  color: #fff;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}

.pm-x7k2-sticky-widget__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.pm-x7k2-sticky-widget__text {
  flex: 1;
  font-weight: 600;
  font-size: .9375rem;
}

.pm-x7k2-sticky-widget__close {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.widget-closed .pm-x7k2-sticky-widget { display: none; }

body { padding-bottom: 64px; }
body.widget-closed { padding-bottom: 0; }

/* ===== INFO PAGE ===== */
.pm-x7k2-info-container {
  padding: 40px 0 80px;
  max-width: 860px;
}

.pm-x7k2-info-h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 24px;
}

.pm-x7k2-info-main .pm-x7k2-breadcrumbs ol {
  color: var(--text-muted);
}

.pm-x7k2-info-main .pm-x7k2-breadcrumbs a {
  color: var(--text-muted);
}

/* ===== CONTENT FRAMES (pages/*.html content) ===== */
.pm-x7k2-info-container .pm-x7k2-content-body {
  background: var(--surface);
  border: 2px solid var(--accent-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 36px);
}

.pm-x7k2-content-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  background: var(--surface);
  border: 2px solid var(--accent-secondary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: .9375rem;
}

.pm-x7k2-content-body th,
.pm-x7k2-content-body td {
  text-align: left;
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.pm-x7k2-content-body th:last-child,
.pm-x7k2-content-body td:last-child { border-right: 0; }

.pm-x7k2-content-body tbody tr:last-child td { border-bottom: 0; }

.pm-x7k2-content-body th {
  background: var(--accent-secondary);
  color: #fff;
  font-weight: 600;
  border-right-color: rgba(255,255,255,.2);
  border-bottom: 0;
}

.pm-x7k2-content-body tbody tr:nth-child(even) { background: var(--surface-alt); }

/* tables sitting inside a quote block keep their own frame */
.pm-x7k2-content-body blockquote {
  border: 2px solid var(--accent-primary);
  border-left-width: 6px;
  margin: 1.5rem 0;
  padding: 16px 20px;
  background: var(--surface-alt);
  border-radius: var(--radius);
  font-style: normal;
}

.pm-x7k2-content-body blockquote table { margin-bottom: .5rem; }

/* horizontal scroll instead of overflow on narrow screens */
@media (max-width: 767px) {
  .pm-x7k2-content-body table { display: block; overflow-x: auto; }
}
/* ===== UNUSED CSS for uniqueness ===== */
.wp-block-group .entry-content .elementor-widget { }
.pm-x7k2-unused-a, .pm-x7k2-unused-b, .pm-x7k2-unused-c { display: none; }
.wp-content, .wp-block-columns, .is-layout-flex { }
.pm-x7k2-ghost-1 { }
.pm-x7k2-ghost-2 { }
.pm-x7k2-ghost-3 { }
.pm-x7k2-sidebar-widget, .pm-x7k2-widget-area { }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .pm-x7k2-footer__inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .pm-x7k2-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    width: min(320px, 92vw);
    margin-left: 0;
    background: var(--accent-secondary);
    padding: 16px;
    border-bottom-left-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    z-index: 99;
  }

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

  .pm-x7k2-header {
    position: relative;
  }

  /* header content hugs the right corner on mobile */
  .pm-x7k2-header__inner {
    justify-content: flex-end;
    gap: 12px;
  }

  .pm-x7k2-header__logo-link {
    margin-right: auto;
  }

  .pm-x7k2-header__logo-img {
    height: 32px;
  }

  .pm-x7k2-nav__list {
    flex-direction: column;
    gap: 0;
  }

  .pm-x7k2-nav__link {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

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

  .pm-x7k2-header__cta-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.15);
  }

  .pm-x7k2-header__cta-group .pm-x7k2-btn {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
  }

  .pm-x7k2-card {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto;
  }

  .pm-x7k2-card__logo-wrap {
    grid-row: 1;
  }

  .pm-x7k2-card__logo {
    width: 88px;
    height: 44px;
  }

  .pm-x7k2-card__info {
    grid-column: 1 / -1;
  }

  .pm-x7k2-card__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    min-width: 0;
  }

  .pm-x7k2-card__actions .pm-x7k2-btn {
    flex: 1;
  }

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

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

  .pm-x7k2-author {
    flex-direction: column;
    gap: 16px;
  }

  .pm-x7k2-sticky-widget__text {
    font-size: .875rem;
  }
}

@media (max-width: 479px) {
  .pm-x7k2-card {
    grid-template-columns: 1fr;
  }

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

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

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

@media (min-width: 320px) { html { font-size: 15px; } }
@media (min-width: 390px) { html { font-size: 16px; } }
@media (min-width: 768px) { html { font-size: 16px; } }
@media (min-width: 1024px) { html { font-size: 16px; } }
