/*
Theme Name: PokerBitcoins Child
Theme URI: https://pokerbitcoins.net/
Description: Custom GeneratePress child theme for PokerBitcoins — modern bitcoin poker affiliate site.
Author: PokerBitcoins
Template: generatepress
Version: 1.0.0
Text Domain: pokerbitcoins
*/

:root {
  /* Logo-derived palette — red, gold, green on deep charcoal */
  --pb-bg: #0a0a0f;
  --pb-bg-soft: #141419;
  --pb-card: #1a1a21;
  --pb-card-hover: #22222b;
  --pb-border: #2a2a35;
  --pb-text: #f5f1e8;               /* warm off-white, like card stock */
  --pb-text-soft: #b5b0a5;
  --pb-text-muted: #7a7568;
  --pb-accent: #e11d2e;             /* poker red — primary CTA + highlights */
  --pb-accent-hover: #ff2d3f;
  --pb-accent-soft: rgba(225,29,46,0.12);
  --pb-accent-glow: rgba(225,29,46,0.35);
  --pb-gold: #f4c430;               /* secondary gold — accents, gradients */
  --pb-gold-hover: #ffd640;
  --pb-gold-soft: rgba(244,196,48,0.12);
  --pb-green: #22c55e;              /* felt green — success, chip-stacks */
  --pb-green-soft: rgba(34,197,94,0.12);
  --pb-red: #ef4444;
  --pb-radius: 14px;
  --pb-radius-sm: 8px;
  --pb-shadow: 0 10px 30px rgba(0,0,0,0.45);
  --pb-shadow-sm: 0 4px 14px rgba(0,0,0,0.3);
  --pb-mono: ui-monospace, "JetBrains Mono", SFMono-Regular, Menlo, monospace;
  --pb-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --pb-display: "Archivo Black", "Inter", system-ui, sans-serif;
}

html, body {
  background: var(--pb-bg);
  color: var(--pb-text);
  font-family: var(--pb-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.pb-page, body.home, body.page, body.single, body.archive, body.blog {
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(225,29,46,0.08), transparent 60%),
    radial-gradient(1000px 500px at -10% 20%, rgba(244,196,48,0.05), transparent 60%),
    var(--pb-bg);
}

a { color: var(--pb-gold); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--pb-gold-hover); }

h1, h2 {
  color: var(--pb-text);
  font-family: var(--pb-display);
  letter-spacing: -0.005em;
  line-height: 1.12;
  font-weight: 400; /* Archivo Black has only one weight */
}
h3, h4, h5 {
  color: var(--pb-text);
  font-family: var(--pb-sans);
  letter-spacing: -0.005em;
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.4vw + .5rem, 2.25rem); font-weight: 700; margin-top: 2.25rem; }
h3 { font-size: 1.35rem; font-weight: 700; margin-top: 1.5rem; }

/* ======= Header ======= */
.site-header, #masthead {
  background: rgba(11,13,18,0.85) !important;
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--pb-border);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.site-header .inside-header {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.site-header .site-branding { padding-top: 0 !important; padding-bottom: 0 !important; }
.main-navigation {
  background: transparent !important;
  min-height: 0 !important;
}
.main-navigation .main-nav ul li a {
  color: var(--pb-text-soft) !important;
  font-weight: 500;
  padding: 14px 16px;
  line-height: 1.3;
}
.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.current-menu-item a {
  color: var(--pb-accent) !important;
  background: transparent !important;
}

.site-logo img, .site-branding img, .header-image { max-height: 56px; width: auto; display: block; }
.site-logo a, .site-branding a { display: inline-flex; align-items: center; }
/* When a logo is present, hide the text title + tagline */
body.wp-custom-logo .main-title, body.wp-custom-logo .site-description { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 768px) {
  .site-logo img, .site-branding img, .header-image { max-height: 44px; }
}
.site-branding .main-title {
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--pb-text);
}
.site-branding .main-title a { color: var(--pb-text); }
.site-branding .site-description { color: var(--pb-text-muted); font-size: 12px; }

/* ======= Buttons ======= */
.pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.pb-btn-primary {
  background: linear-gradient(135deg, var(--pb-accent) 0%, #b3101d 100%);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(225,29,46,0.4);
  letter-spacing: 0.005em;
}
.pb-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(225,29,46,0.55); color: #fff !important; background: linear-gradient(135deg, var(--pb-accent-hover) 0%, var(--pb-accent) 100%); }
.pb-btn-ghost {
  background: transparent;
  color: var(--pb-text) !important;
  border: 1px solid var(--pb-border);
}
.pb-btn-ghost:hover { background: var(--pb-card); border-color: var(--pb-accent); color: var(--pb-accent) !important; }
.pb-btn-sm { padding: 8px 16px; font-size: 13px; letter-spacing: 0; }

/* ======= Container ======= */
.pb-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pb-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ======= Hero ======= */
.pb-hero {
  padding: 40px 0 28px;
  position: relative;
  overflow: hidden;
}
.pb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(225,29,46,0.18), transparent 60%),
    radial-gradient(500px 300px at 80% 100%, rgba(34,197,94,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.pb-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 860px; margin: 0 auto; }
.pb-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: var(--pb-gold-soft);
  color: var(--pb-gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(244,196,48,0.28);
  margin-bottom: 12px;
}
.pb-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin: 0 0 10px; line-height: 1.15; }
.pb-hero h1 br { display: none; }
.pb-hero h1 .pb-accent { background: linear-gradient(135deg, #e11d2e, #f4c430); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pb-hero p { color: var(--pb-text-soft); font-size: 15px; margin: 0 auto 18px; max-width: 640px; line-height: 1.55; }
.pb-hero-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.pb-hero-trust {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--pb-text-muted);
  font-size: 12.5px;
}
.pb-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.pb-hero-trust svg { width: 16px; height: 16px; color: var(--pb-green); }

/* ======= Comparison table ======= */
.pb-compare-wrap {
  padding: 16px 0 60px;
}
.pb-compare-head { text-align: center; margin-bottom: 22px; }
.pb-compare-head h2 { margin: 0 0 6px; font-size: 26px; }
.pb-compare-head p { color: var(--pb-text-soft); max-width: 620px; margin: 0 auto; font-size: 14px; }

.pb-compare {
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  overflow: hidden;
  box-shadow: var(--pb-shadow);
}
.pb-compare-row {
  display: grid;
  grid-template-columns: 60px 2fr 1.2fr 1.6fr 1.2fr 150px;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--pb-border);
  transition: background .15s ease;
}
.pb-compare-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.pb-compare-cta .pb-btn { width: 100%; }
.pb-compare-row:last-child { border-bottom: none; }
.pb-compare-row:hover { background: var(--pb-card-hover); }

.pb-compare-row.is-head {
  background: var(--pb-bg-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pb-text-muted);
  font-weight: 600;
  padding: 14px 24px;
}
.pb-compare-row.is-head:hover { background: var(--pb-bg-soft); }

.pb-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b3140, #1a1e28);
  border: 1px solid var(--pb-border);
  font-weight: 800;
  color: var(--pb-text-soft);
}
.pb-rank.is-top {
  background: linear-gradient(135deg, #e11d2e, #f4c430);
  color: #0b0d12;
  border-color: rgba(225,29,46,0.5);
  box-shadow: 0 0 0 4px rgba(225,29,46,0.12);
}

.pb-compare-site {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pb-compare-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #0b0d12;
  border: 1px solid var(--pb-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--pb-accent);
  flex-shrink: 0;
  overflow: hidden;
}
.pb-compare-logo.has-image { background: #fff; padding: 4px; }
.pb-compare-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pb-compare-site-name { font-weight: 700; color: var(--pb-text); font-size: 16px; }
.pb-compare-site-meta { font-size: 13px; color: var(--pb-text-muted); margin-top: 2px; }

.pb-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--pb-gold);
}
.pb-rating-num { color: var(--pb-text); font-weight: 800; font-size: 16px; }
.pb-rating-out { color: var(--pb-text-muted); font-size: 13px; font-weight: 500; }

.pb-bonus { color: var(--pb-text); font-weight: 600; font-size: 14px; line-height: 1.35; }
.pb-bonus-sub { color: var(--pb-text-muted); font-size: 12px; margin-top: 2px; }

.pb-coin-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pb-coin-chip {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--pb-bg-soft);
  border: 1px solid var(--pb-border);
  color: var(--pb-text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .pb-compare-row { grid-template-columns: 50px 1fr 140px; row-gap: 14px; }
  .pb-compare-row.is-head { display: none; }
  .pb-compare-row > .pb-compare-col { display: none; }
  .pb-compare-row > .pb-compare-col.is-visible-mobile { display: block; }
  .pb-compare-coins { grid-column: 1 / -1; }
  .pb-compare-cta { grid-column: 1 / -1; }
  .pb-compare-cta .pb-btn { width: 100%; }
}

/* ======= Sections ======= */
.pb-section { padding: 60px 0; }
.pb-section-tight { padding: 40px 0; }
.pb-section-alt { background: linear-gradient(180deg, var(--pb-bg-soft), var(--pb-bg)); border-top: 1px solid var(--pb-border); border-bottom: 1px solid var(--pb-border); }

/* Step cards for "Deposit in 4 steps" */
.pb-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pb-step {
  position: relative;
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  padding: 28px 22px 22px;
}
.pb-step h3 { margin: 12px 0 8px; font-size: 17px; }
.pb-step p { color: var(--pb-text-soft); font-size: 14.5px; margin: 0; }
.pb-step-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--pb-accent-soft);
  color: var(--pb-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  border: 1px solid rgba(225,29,46,0.25);
}
@media (max-width: 1024px) { .pb-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pb-steps { grid-template-columns: 1fr; } }

/* Traditional vs crypto comparison table */
.pb-vs-table {
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  overflow: hidden;
}
.pb-vs-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0;
  padding: 16px 20px;
  border-bottom: 1px solid var(--pb-border);
  align-items: center;
}
.pb-vs-row:last-child { border-bottom: 0; }
.pb-vs-row.is-head {
  background: var(--pb-bg-soft);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--pb-text-muted);
}
.pb-vs-row > div { padding-right: 14px; color: var(--pb-text-soft); font-size: 14.5px; }
.pb-vs-label { color: var(--pb-text) !important; font-weight: 600; }
.pb-vs-win { color: var(--pb-accent); }
@media (max-width: 760px) {
  .pb-vs-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 16px; }
  .pb-vs-row.is-head { display: none; }
  .pb-vs-row > div::before {
    display: block; content: attr(data-label);
    font-size: 11px; text-transform: uppercase; color: var(--pb-text-muted); letter-spacing: .04em;
  }
  .pb-vs-label { font-size: 15px; margin-bottom: 4px; }
}
.pb-section-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.pb-section-head h2 { margin: 0 0 10px; }
.pb-section-head p { color: var(--pb-text-soft); }

.pb-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pb-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 900px) { .pb-grid-3, .pb-grid-2 { grid-template-columns: 1fr; } }

.pb-card {
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  padding: 26px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.pb-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225,29,46,0.4);
  box-shadow: var(--pb-shadow);
}
.pb-card h3 { margin: 0 0 8px; font-size: 18px; }
.pb-card p { color: var(--pb-text-soft); font-size: 14px; margin: 0; }
.pb-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--pb-accent-soft);
  color: var(--pb-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pb-card-icon svg { width: 22px; height: 22px; }

/* ======= Review card (for hubs) ======= */
.pb-review-card {
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .15s ease, transform .15s ease;
}
.pb-review-card:hover { border-color: rgba(225,29,46,0.4); transform: translateY(-2px); }
.pb-review-card-head { display: flex; align-items: center; gap: 14px; }
.pb-review-card-body p { color: var(--pb-text-soft); font-size: 14px; margin: 0; }
.pb-review-card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--pb-border); }
.pb-review-card-foot .pb-rating-num { font-size: 18px; }

/* ======= Pros/cons ======= */
.pb-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.pb-proscons > div {
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  padding: 22px;
}
.pb-proscons h4 { margin: 0 0 12px; font-size: 15px; }
.pb-pros h4 { color: var(--pb-green); }
.pb-cons h4 { color: var(--pb-red); }
.pb-proscons ul { list-style: none; padding: 0; margin: 0; }
.pb-proscons li { padding: 6px 0; color: var(--pb-text-soft); font-size: 14px; display: flex; gap: 8px; align-items: flex-start; }
.pb-pros li::before { content: "✓"; color: var(--pb-green); font-weight: 700; flex-shrink: 0; }
.pb-cons li::before { content: "×"; color: var(--pb-red); font-weight: 700; font-size: 18px; line-height: 1; flex-shrink: 0; }
@media (max-width: 720px) { .pb-proscons { grid-template-columns: 1fr; } }

/* ======= Stat strip ======= */
.pb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  margin: 24px 0 36px;
}
.pb-stat { text-align: center; }
.pb-stat-val { font-size: 22px; font-weight: 800; color: var(--pb-accent); }
.pb-stat-lab { font-size: 12px; color: var(--pb-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
@media (max-width: 720px) { .pb-stats { grid-template-columns: repeat(2, 1fr); } }

/* ======= FAQ ======= */
.pb-faq { margin-top: 30px; }
.pb-faq details {
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius-sm);
  margin-bottom: 10px;
  padding: 0;
  transition: border-color .15s ease;
}
.pb-faq details[open] { border-color: rgba(225,29,46,0.4); }
.pb-faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--pb-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.pb-faq summary::-webkit-details-marker { display: none; }
.pb-faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--pb-accent);
  font-weight: 300;
  transition: transform .15s ease;
}
.pb-faq details[open] summary::after { content: "−"; }
.pb-faq-body { padding: 0 22px 20px; color: var(--pb-text-soft); font-size: 15px; }
.pb-faq-body p { margin: 0 0 10px; }
.pb-faq-body p:last-child { margin: 0; }

/* ======= Content (single/page) ======= */
.pb-content { max-width: 820px; margin: 0 auto; padding: 40px 24px 80px; }
.pb-content p, .pb-content li { color: var(--pb-text-soft); }
.pb-content p { margin: 0 0 1.1em; font-size: 17px; line-height: 1.75; }
.pb-content ul, .pb-content ol { padding-left: 24px; margin: 0 0 1.3em; }
.pb-content li { margin-bottom: 6px; }
.pb-content blockquote {
  border-left: 3px solid var(--pb-accent);
  padding: 6px 0 6px 20px;
  margin: 20px 0;
  color: var(--pb-text);
  font-style: italic;
}
.pb-content hr { border: 0; border-top: 1px solid var(--pb-border); margin: 34px 0; }
.pb-content img { border-radius: var(--pb-radius-sm); max-width: 100%; height: auto; }
.pb-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; }
.pb-content th, .pb-content td { padding: 12px; border-bottom: 1px solid var(--pb-border); text-align: left; }
.pb-content th { color: var(--pb-text-muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }

.pb-article-head {
  max-width: 820px; margin: 0 auto; padding: 70px 24px 20px;
  text-align: center;
}
.pb-article-head .pb-crumbs {
  font-size: 13px; color: var(--pb-text-muted); margin-bottom: 14px;
}
.pb-article-head .pb-crumbs a { color: var(--pb-text-soft); }
.pb-article-head h1 { margin: 0 0 14px; }
.pb-article-head .pb-article-meta {
  color: var(--pb-text-muted);
  font-size: 14px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ======= Review hero (single review template) ======= */
.pb-review-hero {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.pb-review-hero-card {
  background: linear-gradient(180deg, rgba(225,29,46,0.06), transparent 60%), var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: center;
  box-shadow: var(--pb-shadow);
}
.pb-review-hero-head { display: flex; gap: 16px; align-items: center; margin-bottom: 12px; }
.pb-review-hero-logo {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: #0b0d12;
  border: 1px solid var(--pb-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--pb-accent);
  font-size: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.pb-review-hero-logo.has-image { background: #fff; padding: 6px; }
.pb-review-hero-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pb-review-hero h1 { font-size: 2rem; margin: 0; }
.pb-review-hero-summary { color: var(--pb-text-soft); margin: 12px 0 0; }
.pb-review-score-box {
  background: var(--pb-bg-soft);
  border-radius: var(--pb-radius);
  border: 1px solid var(--pb-border);
  padding: 22px;
  text-align: center;
}
.pb-score-big { font-size: 3.5rem; font-weight: 800; color: var(--pb-accent); line-height: 1; }
.pb-score-out { color: var(--pb-text-muted); font-size: 14px; }
.pb-score-label { color: var(--pb-text); font-weight: 600; margin-top: 8px; font-size: 14px; }
.pb-review-score-box .pb-btn { width: 100%; margin-top: 14px; }
@media (max-width: 820px) {
  .pb-review-hero-card { grid-template-columns: 1fr; padding: 24px; }
  .pb-review-score-box { order: -1; }
}

/* ======= Footer ======= */
.site-footer, .footer-widgets, .site-info {
  background: var(--pb-bg-soft) !important;
  border-top: 1px solid var(--pb-border);
  color: var(--pb-text-muted);
}
.site-info a { color: var(--pb-text-soft); }
.site-info a:hover { color: var(--pb-accent); }
.footer-widgets .widget-title { color: var(--pb-text); }
.footer-widgets a { color: var(--pb-text-soft); }
.footer-widgets a:hover { color: var(--pb-accent); }

.pb-footer-disclaimer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  color: var(--pb-text-muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  border-top: 1px solid var(--pb-border);
}
.pb-footer-disclaimer strong { color: var(--pb-text-soft); }

/* ======= Misc ======= */
.wp-block-image img { border-radius: var(--pb-radius-sm); }
.entry-meta { color: var(--pb-text-muted); }
.post-navigation a { color: var(--pb-text-soft); }
.post-navigation a:hover { color: var(--pb-accent); }

/* CTA block embedded in content */
.pb-cta-box {
  margin: 30px 0;
  padding: 26px;
  background: linear-gradient(135deg, rgba(225,29,46,0.12), rgba(34,197,94,0.06));
  border: 1px solid rgba(225,29,46,0.25);
  border-radius: var(--pb-radius);
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.pb-cta-box h4 { margin: 0 0 4px; }
.pb-cta-box p { margin: 0; color: var(--pb-text-soft); }
.pb-cta-box .pb-btn { flex-shrink: 0; }
@media (max-width: 720px) { .pb-cta-box { flex-direction: column; align-items: stretch; text-align: center; } }

/* 18+ responsible gambling badge */
.pb-rg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(239,68,68,0.12);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}


/* ======= Fix GP flex site-content for custom pb templates ======= */
.pb-page .site-content { display: block; }
.pb-page .site-content .content-area { width: 100%; }

/* ======= Two-column layout (main + right rail) ======= */
.pb-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 32px;
  align-items: start;
}
.pb-main { min-width: 0; }
@media (max-width: 900px) {
  .pb-layout { grid-template-columns: 1fr; gap: 24px; padding: 24px 16px 40px; }
}

/* ======= Article head tweaks for new layout ======= */
.pb-layout .pb-article-head { max-width: none; margin: 0 0 24px; padding: 0; text-align: left; }
.pb-layout .pb-article-head h1 { font-size: 40px; }
.pb-layout .pb-article-head .pb-article-meta { justify-content: flex-start; margin-top: 10px; }
.pb-article-dek { color: var(--pb-text-soft); max-width: 720px; margin: 14px 0 0; font-size: 16px; line-height: 1.6; }
.pb-article-intro { margin: 0 0 28px; padding: 0; }
.pb-article-intro p { color: var(--pb-text-soft); }

/* ======= Right rail ======= */
.pb-rail { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 80px; }
.pb-rail-group { display: flex; flex-direction: column; gap: 8px; }
.pb-rail-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pb-text-muted);
  padding: 0 4px 4px;
}
.pb-rail-chip {
  display: block;
  padding: 12px 16px;
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: 10px;
  color: var(--pb-text-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.pb-rail-chip:hover { background: rgba(225,29,46,0.08); border-color: rgba(225,29,46,0.4); color: #fff; }
.pb-rail-chip.is-active {
  background: linear-gradient(135deg, var(--pb-accent) 0%, #b3101d 100%);
  border-color: var(--pb-accent);
  color: #fff;
}
@media (max-width: 900px) {
  .pb-rail { position: static; }
}

/* ======= Somuchpoker-style review rows ======= */
.pb-review-rows {
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: 14px;
  overflow: hidden;
}
.pb-review-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) 160px;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(225,29,46,0.25);
}
.pb-review-row:last-child { border-bottom: none; }

.pb-review-row-head { display: flex; align-items: center; gap: 16px; min-width: 0; }
.pb-row-logo {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--pb-bg-soft);
  border: 1px solid var(--pb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pb-row-logo img { width: 44px; height: 44px; object-fit: contain; }
.pb-row-logo.is-text { font-weight: 800; color: var(--pb-text-soft); font-size: 16px; }

.pb-row-head-meta { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.pb-row-network {
  font-size: 12px;
  color: var(--pb-text-muted);
  letter-spacing: 0.02em;
}
.pb-row-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.25;
}
.pb-row-name:hover { color: var(--pb-accent); }
.pb-row-chip {
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pb-text-soft);
  background: var(--pb-bg-soft);
  border: 1px solid var(--pb-border);
  border-radius: 999px;
}

.pb-review-row-stats { display: flex; flex-direction: column; gap: 6px; min-width: 0; font-size: 14px; }
.pb-row-line { color: var(--pb-text-soft); line-height: 1.5; }
.pb-row-k { color: var(--pb-text-muted); font-weight: 600; margin-right: 4px; }
.pb-row-v { color: #fff; font-weight: 600; }
.pb-row-rating-num { color: var(--pb-accent); font-weight: 800; margin-right: 6px; }
.pb-row-stars { color: #f7b955; letter-spacing: 1px; font-size: 13px; }
.pb-row-excerpt { color: var(--pb-text-soft); font-weight: 400; font-size: 13.5px; margin-top: 2px; }

.pb-review-row-actions { display: flex; flex-direction: column; gap: 10px; }
.pb-review-row-actions .pb-btn { padding: 10px 18px; font-size: 13.5px; text-align: center; justify-content: center; }

/* Outlined (red border) button variant — used for "Review" secondary action in rows */
.pb-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: transparent;
  border: 1.5px solid var(--pb-accent);
  border-radius: 8px;
  color: var(--pb-accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.pb-btn-outline:hover { background: var(--pb-accent-soft); color: var(--pb-accent) !important; }

/* Mobile: collapse review rows to stacked sections */
@media (max-width: 780px) {
  .pb-review-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .pb-review-row-actions { flex-direction: row; }
  .pb-review-row-actions .pb-btn { flex: 1; }
}

/* ======= Related blocks (review + guide internal linking) ======= */
.pb-related { margin-top: 40px; }
.pb-related > h2 { font-size: 22px; margin: 0 0 18px; }
.pb-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.pb-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--pb-card);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
.pb-related-card:hover { border-color: rgba(225,29,46,0.45); transform: translateY(-2px); }
.pb-related-card h3 { margin: 0; font-size: 16px; color: #fff; line-height: 1.3; }
.pb-related-card p { margin: 0; color: var(--pb-text-soft); font-size: 13.5px; line-height: 1.5; }
.pb-related-head { display: flex; align-items: center; gap: 12px; }
.pb-related-logo {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--pb-bg-soft);
  border: 1px solid var(--pb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pb-related-logo img { width: 34px; height: 34px; object-fit: contain; }
.pb-related-rating {
  font-size: 13px;
  font-weight: 700;
  color: var(--pb-accent);
  margin-top: 2px;
}
.pb-related-more {
  margin-top: auto;
  color: var(--pb-accent);
  font-size: 13px;
  font-weight: 600;
}

/* FAQ section on review pages */
.pb-review-faq { margin-top: 40px; }
.pb-review-faq > h2 { font-size: 24px; margin: 0 0 16px; }

/* ======= Homepage ranking cards ======= */
.pb-rankings { background: linear-gradient(180deg, var(--pb-bg), var(--pb-bg-soft)); }
.pb-rankings-list { display: flex; flex-direction: column; gap: 20px; margin: 0; }

.pb-ranking-card {
  background: var(--pb-card);
  border: none;
  border-radius: var(--pb-radius);
  padding: 28px;
  scroll-margin-top: 80px;
}

.pb-ranking-head {
  display: grid;
  grid-template-columns: 48px 72px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pb-border);
  margin-bottom: 20px;
}
.pb-ranking-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pb-bg-soft);
  border: 1px solid var(--pb-border);
  color: var(--pb-text-soft);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-ranking-number.is-top {
  background: linear-gradient(135deg, var(--pb-accent) 0%, #b3101d 100%);
  border-color: var(--pb-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(225,29,46,0.4);
}
.pb-ranking-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--pb-bg-soft);
  border: 1px solid var(--pb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pb-ranking-logo img { width: 56px; height: 56px; object-fit: contain; }
.pb-ranking-logo--text {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--pb-text);
  background: linear-gradient(135deg, #2b3140, #1a1e28);
}

.pb-ranking-title { min-width: 0; }
.pb-ranking-kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pb-text-muted);
  margin-bottom: 4px;
}
.pb-ranking-title h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  font-weight: 800;
}
.pb-ranking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 13.5px;
  color: var(--pb-text-soft);
}
.pb-ranking-rating { color: var(--pb-accent); font-weight: 800; }
.pb-ranking-dot { color: var(--pb-text-muted); }

.pb-ranking-blurb { color: var(--pb-text-soft); font-size: 15px; line-height: 1.65; margin: 0 0 22px; }

.pb-ranking-overview { margin: 0 0 22px; }
.pb-ranking-overview p { color: var(--pb-text-soft); font-size: 15px; line-height: 1.7; margin: 0 0 14px; }
.pb-ranking-overview p:last-child { margin-bottom: 0; }

.pb-ranking-closer {
  color: var(--pb-text-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--pb-bg-soft);
  border-left: 3px solid var(--pb-accent);
  border-radius: 6px;
}
.pb-ranking-closer a { color: var(--pb-gold); font-weight: 600; }
.pb-ranking-closer a:hover { color: var(--pb-gold-hover); }

.pb-ranking-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  margin-bottom: 22px;
}
.pb-ranking-grid h4,
.pb-ranking-verdict > h4 {
  margin: 0 0 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pb-text-muted);
}
.pb-ranking-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pb-ranking-features li {
  padding-left: 20px;
  position: relative;
  color: var(--pb-text-soft);
  font-size: 14px;
  line-height: 1.5;
}
.pb-ranking-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pb-gold);
}
.pb-ranking-cryptos .pb-coin-chips { gap: 6px; }

.pb-ranking-verdict { margin-bottom: 22px; }
.pb-ranking-verdict .pb-proscons { margin: 0; }

.pb-ranking-foot {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--pb-border);
}
.pb-ranking-foot .pb-btn-primary { min-width: 200px; justify-content: center; }
.pb-ranking-foot .pb-btn-outline { min-width: 160px; justify-content: center; }

@media (max-width: 780px) {
  .pb-ranking-card { padding: 22px; }
  .pb-ranking-head { grid-template-columns: 44px 1fr; gap: 14px; }
  .pb-ranking-logo { display: none; }
  .pb-ranking-title h3 { font-size: 18px; }
  .pb-ranking-grid { grid-template-columns: 1fr; gap: 20px; }
  .pb-proscons { grid-template-columns: 1fr; }
  .pb-ranking-foot .pb-btn { flex: 1; min-width: 0; }
}

/* Byline on review + article headers */
.pb-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--pb-text-soft);
}
.pb-byline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  padding: 4px 8px 4px 4px;
  border-radius: 999px;
  transition: background 160ms ease;
}
.pb-byline-link:hover { background: rgba(255,255,255,0.04); }
.pb-byline-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  background: #1c1c1c;
  flex-shrink: 0;
}
.pb-byline-name {
  display: block;
  color: var(--pb-text);
  font-weight: 600;
  line-height: 1.2;
}
.pb-byline-role {
  display: block;
  font-size: 11.5px;
  color: var(--pb-text-muted);
  line-height: 1.2;
}
.pb-byline-sep { color: var(--pb-text-muted); }

/* About page author card */
.pb-author-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin: 20px 0 28px;
}
.pb-author-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(247,147,26,0.45);
  background: #1c1c1c;
}
.pb-author-name {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 22px;
  color: var(--pb-text);
  line-height: 1.15;
}
.pb-author-role {
  margin-top: 4px;
  font-size: 13px;
  color: var(--pb-accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pb-author-bio {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--pb-text-soft);
}

@media (max-width: 600px) {
  .pb-author-card { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .pb-author-img { width: 120px; height: 120px; margin: 0 auto; }
  .pb-byline { font-size: 12.5px; }
  .pb-byline-img { width: 28px; height: 28px; }
}
