:root {
  --color-bg: #ffd300;
  --color-surface: #fff;
  --color-text: #0d033c;
  --color-border: #d4b000;
  --color-primary: #1573dd;
  --color-secondary: #0d033c;
  --color-muted: #555;
  --pm-radius: 16px;
  --pm-max: 1180px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: #0d033c;
  background: #fff;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-text); }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid #1573dd; outline-offset: 2px; }
.pm-x7k2-container, .pm-x7k2-wrap { width: min(100% - 2rem, var(--pm-max)); margin-inline: auto; }
.pm-x7k2-header {
  position: sticky; top: 0; z-index: 100; background: #0d033c; color: #fff;
  display: flex; align-items: center; gap: 1.25rem; padding: .85rem max(1rem, calc((100% - var(--pm-max)) / 2));
}
.pm-x7k2-header a { color: #fff; text-decoration: none; }
.pm-x7k2-logo { margin-right: auto; font-size: 1.55rem; font-weight: 600; }
.pm-x7k2-logo span { color: #ffd300; }
.pm-x7k2-nav { display: flex; align-items: center; gap: 1rem; }
.pm-x7k2-nav a { font-weight: 600; }
.pm-x7k2-burger { display: none; border: 0; background: transparent; color: #fff; padding: .4rem; }
.pm-x7k2-btn, .pm-x7k2-button {
  display: inline-block; border: 0; border-radius: 999px; padding: .7rem 1.2rem;
  font-weight: 600; text-decoration: none; cursor: pointer;
}
.pm-x7k2-btn--primary, .pm-x7k2-button { color: #fff; background: #1573dd; }
.pm-x7k2-btn--secondary, .pm-x7k2-button--dark { color: #fff; background: #0d033c; }
.pm-x7k2-hero { background: #ffd300; color: #0d033c; padding: 4rem 1rem; }
.pm-x7k2-hero__title { max-width: 760px; font-size: clamp(2.1rem, 6vw, 4.2rem); line-height: 1.08; margin: .5rem 0 1rem; }
.pm-x7k2-hero__lead { max-width: 670px; font-size: 1.2rem; }
.pm-x7k2-hero__badges, .pm-x7k2-hero__ctas { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.pm-x7k2-badge { display: inline-flex; border: 1px solid var(--color-border); border-radius: 999px; padding: .35rem .75rem; background: #fff; font-size: .88rem; font-weight: 600; }
.pm-x7k2-section { padding: 3.5rem 0; scroll-margin-top: 80px; }
.pm-x7k2-section h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 0; }
.pm-x7k2-breadcrumb, .pm-x7k2-breadcrumbs { padding: 1.25rem 0; font-size: .9rem; }
.pm-x7k2-toc { border: 1px solid var(--color-border); border-radius: var(--pm-radius); padding: 1.5rem; background: #fff; }
.pm-x7k2-toc ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; list-style: none; padding: 0; }
.pm-x7k2-toc a { text-decoration: none; font-weight: 600; }
.pm-x7k2-controls { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1rem 0; }
.pm-x7k2-controls select, .pm-x7k2-calculator select { min-height: 2.6rem; border: 1px solid var(--color-border); border-radius: 8px; padding: .45rem .7rem; background: #fff; }
.pm-x7k2-casino-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.pm-x7k2-casino-card {
  position: relative; border: 1px solid var(--color-border); border-radius: var(--pm-radius);
  padding: 1.4rem; background: #fff; box-shadow: 0 4px 0 rgba(13,3,60,.08);
}
.pm-x7k2-casino-card--top { border: 3px solid #c79500; }
.pm-x7k2-casino-card--top::before { content: attr(data-position); position: absolute; right: 1rem; top: 1rem; background: #ffd300; border-radius: 50%; padding: .35rem .6rem; font-weight: 600; }
.pm-x7k2-casino-card h3 { margin-top: 0; }
.pm-x7k2-table-wrap { overflow-x: auto; border-radius: var(--pm-radius); }
.pm-x7k2-table { border-collapse: collapse; width: 100%; text-align: left; min-width: 760px; background: #fff; }
.pm-x7k2-table th, .pm-x7k2-table td { padding: .8rem; border: 1px solid var(--color-border); vertical-align: top; }
.pm-x7k2-table th { background: #fff0a0; }
.pm-x7k2-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pm-x7k2-benefit { background: #fff; border: 1px solid var(--color-border); border-radius: var(--pm-radius); padding: 1.4rem; }
.pm-x7k2-benefit svg { width: 2rem; height: 2rem; fill: var(--color-primary); }
.pm-x7k2-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; list-style: none; padding: 0; counter-reset: step; }
.pm-x7k2-steps li { counter-increment: step; padding: 1.2rem; border-radius: var(--pm-radius); background: #fff; border: 1px solid var(--color-border); }
.pm-x7k2-steps li::before { content: counter(step); display: grid; place-items: center; width: 2rem; height: 2rem; margin-bottom: .7rem; border-radius: 50%; color: #fff; background: #1573dd; font-weight: 600; }
.pm-x7k2-calculator { max-width: 640px; padding: 1.5rem; border-radius: var(--pm-radius); background: #fff; border: 1px solid var(--color-border); }
.pm-x7k2-calculator form, .pm-x7k2-form { display: grid; gap: .9rem; }
.pm-x7k2-calculator label, .pm-x7k2-form label { display: grid; gap: .3rem; font-weight: 600; }
.pm-x7k2-calculator input, .pm-x7k2-form input, .pm-x7k2-form textarea { border: 1px solid var(--color-border); border-radius: 8px; padding: .65rem; }
.pm-x7k2-faq { border: 1px solid var(--color-border); border-radius: 10px; background: #fff; margin: .65rem 0; padding: .9rem 1rem; }
.pm-x7k2-faq summary { cursor: pointer; font-weight: 600; }
.pm-x7k2-author-card, .pm-x7k2-author { display: flex; gap: 1.5rem; align-items: center; padding: 1.5rem; border-radius: var(--pm-radius); background: #fff; border: 1px solid var(--color-border); }
.pm-x7k2-author-card img, .pm-x7k2-author img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.pm-x7k2-footer { padding: 3rem max(1rem, calc((100% - var(--pm-max)) / 2)); background: #0d033c; color: #fff; }
.pm-x7k2-footer a { color: #fff; }
.pm-x7k2-footer nav { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
.pm-x7k2-sticky { position: fixed; z-index: 110; inset: auto 0 0; display: flex; justify-content: center; align-items: center; gap: 1rem; padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom)); color: #fff; background: #0d033c; }
.pm-x7k2-sticky a { color: #fff; }
.pm-x7k2-sticky button { border: 0; background: transparent; color: #fff; cursor: pointer; }
.pm-x7k2-wp-block, .pm-x7k2-entry-content, .pm-x7k2-post-thumbnail, .pm-x7k2-wp-caption, .pm-x7k2-aligncenter, .pm-x7k2-alignleft, .pm-x7k2-alignright, .pm-x7k2-has-large-font-size, .pm-x7k2-wp-block-group { display: block; }
@media (max-width: 768px) {
  .pm-x7k2-nav { display: none; position: absolute; inset: 100% 0 auto; flex-direction: column; align-items: stretch; padding: 1rem; background: #0d033c; }
  .pm-x7k2-casino-list { grid-template-columns: 1fr; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .5rem; }
  .pm-x7k2-casino-card { flex: 0 0 min(88vw, 380px); scroll-snap-align: start; }
  .pm-x7k2-benefits, .pm-x7k2-toc ul { grid-template-columns: repeat(2, 1fr); }
  .pm-x7k2-steps { grid-template-columns: repeat(2, 1fr); }
  .pm-x7k2-author-card, .pm-x7k2-author { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 420px) { .pm-x7k2-benefits, .pm-x7k2-toc ul, .pm-x7k2-steps { grid-template-columns: 1fr; } .pm-x7k2-hero { padding: 3rem 1rem; } }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; scroll-behavior: auto !important; } }
/* --- classes used by templates but previously unstyled --- */
.pm-x7k2-kicker { display: inline-block; font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; opacity: .85; }
.pm-x7k2-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.pm-x7k2-button--small { padding: .45rem .9rem; font-size: .9rem; }
.pm-x7k2-hero { display: flex; align-items: center; gap: 2rem; border-radius: var(--pm-radius); }
.pm-x7k2-hero > div { flex: 1 1 380px; }
.pm-x7k2-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); line-height: 1.1; margin: .6rem 0 1rem; }
.pm-x7k2-hero > img { flex: 0 1 420px; max-width: 45%; }
.pm-x7k2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pm-x7k2-tile { background: #fff; border: 1px solid var(--color-border); border-radius: var(--pm-radius); padding: 1.4rem; }
.pm-x7k2-tile h3 { margin: 0 0 .5rem; font-size: 1.05rem; }
.pm-x7k2-tile p { margin: 0; color: var(--color-muted); }
.pm-x7k2-table-wrap table {
  border-collapse: collapse; width: 100%; min-width: 680px; text-align: left; background: #fff;
}
.pm-x7k2-table-wrap th, .pm-x7k2-table-wrap td { padding: .8rem; border: 1px solid var(--color-border); vertical-align: top; }
.pm-x7k2-table-wrap th { background: #fff0a0; }
.pm-x7k2-casino-card p { margin: .4rem 0; }
.pm-x7k2-casino-card .pm-x7k2-button { margin-top: .8rem; }
.pm-x7k2-toc strong { display: block; margin-bottom: .8rem; }
.pm-x7k2-author-card p, .pm-x7k2-author p { margin: .4rem 0; }
main.pm-x7k2-wrap { padding-bottom: 5rem; }
@media (max-width: 900px) {
  .pm-x7k2-hero { flex-direction: column; align-items: stretch; }
  .pm-x7k2-hero > img { max-width: 100%; }
  .pm-x7k2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .pm-x7k2-grid { grid-template-columns: 1fr; } }

/* image logo + author photo */
.pm-x7k2-logo img { width: auto; height: 34px; }
.pm-x7k2-footer .pm-x7k2-logo img { height: 40px; }
.pm-x7k2-author img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }

/* --- casino card logos --- */
.pm-x7k2-casino-card__logo {
  display: flex; align-items: center; justify-content: center;
  min-height: 72px; margin-bottom: 1rem; padding: .6rem 1rem;
  border-radius: 12px; background: #0d033c;
}
.pm-x7k2-casino-card__logo img { height: 52px; width: auto; max-width: 100%; object-fit: contain; }
.pm-x7k2-casino-card__logo-text {
  display: inline-flex; align-items: center; height: 48px; padding: 0 1rem;
  border-radius: 10px; background: #0d033c; color: #ffd300; font-weight: 600; font-size: 1.15rem;
}

/* --- editorial content from pages: readable, framed blocks --- */
.pm-x7k2-content {
  border: 1px solid var(--color-border); border-radius: var(--pm-radius);
  background: #fff; padding: 1.6rem;
}
.pm-x7k2-content > :first-child { margin-top: 0; }
.pm-x7k2-content > :last-child { margin-bottom: 0; }
.pm-x7k2-content h2, .pm-x7k2-content h3 { margin: 1.6rem 0 .6rem; }
.pm-x7k2-content ul, .pm-x7k2-content ol { padding-left: 1.3rem; }
.pm-x7k2-content table {
  display: block; overflow-x: auto; border-collapse: collapse; width: 100%;
  margin: 1.4rem 0; background: #fff; text-align: left;
}
.pm-x7k2-content th, .pm-x7k2-content td { padding: .8rem; border: 1px solid var(--color-border); vertical-align: top; }
.pm-x7k2-content th { background: #fff0a0; font-weight: 600; }
.pm-x7k2-content tbody tr:nth-child(even) { background: #fffbe6; }
.pm-x7k2-content blockquote {
  margin: 1.4rem 0; padding: 1rem 1.2rem; border-left: 4px solid var(--color-primary);
  border-radius: 0 10px 10px 0; background: #f4f7fd;
}

/* --- mobile header: everything inside the burger, anchored right --- */
@media (max-width: 768px) {
  .pm-x7k2-header { justify-content: space-between; gap: .75rem; padding-inline: 1rem; }
  .pm-x7k2-logo { margin-right: auto; }
  .pm-x7k2-burger { order: 2; margin-left: auto; font-size: 1.5rem; line-height: 1; }
  .pm-x7k2-nav {
    left: auto; right: 0; width: min(280px, 86vw);
    border-radius: 0 0 0 var(--pm-radius); gap: .25rem;
    box-shadow: 0 12px 24px rgba(13,3,60,.25);
  }
  .pm-x7k2-nav a { padding: .6rem .4rem; }
  .pm-x7k2-nav .pm-x7k2-button--small { margin-top: .5rem; text-align: center; padding: .7rem 1rem; }
}

/* header secondary link */
.pm-x7k2-link { font-weight: 600; text-decoration: none; }
.pm-x7k2-casino-card__logo-text { background: transparent; padding: 0; }

/* --- burger: CSS-only toggle, works without JS --- */
.pm-x7k2-nav-toggle { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.pm-x7k2-burger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 10px; gap: 5px;
  flex-direction: column; border-radius: 8px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.35); background: transparent;
}
.pm-x7k2-burger span { display: block; width: 100%; height: 2px; border-radius: 2px; background: #fff; transition: transform .2s, opacity .2s; }
.pm-x7k2-nav-toggle:focus-visible + .pm-x7k2-burger { outline: 3px solid #1573dd; outline-offset: 2px; }
@media (max-width: 768px) {
  .pm-x7k2-burger { display: flex; order: 2; margin-left: auto; }
  .pm-x7k2-nav { display: none; }
  .pm-x7k2-nav-toggle:checked ~ .pm-x7k2-nav { display: flex; }
  .pm-x7k2-nav-toggle:checked + .pm-x7k2-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .pm-x7k2-nav-toggle:checked + .pm-x7k2-burger span:nth-child(2) { opacity: 0; }
  .pm-x7k2-nav-toggle:checked + .pm-x7k2-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
