/* ═══════════════════════════════════════════════════════════════════
   DFS Casino Hubs — casino-review.css
   Inherits --bg, --bg-card, --bg-elevated, --border, --accent,
   --text, --text-muted, --font, --radius from DFS theme root.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hub-specific token extensions ──────────────────────────────── */
.dfsh-review-page {
  --dfsh-gold:        #d4a843;
  --dfsh-gold-dim:    #9a7030;
  --dfsh-gold-bg:     rgba(212,168,67,.08);
  --dfsh-green:       #22c55e;
  --dfsh-green-bg:    rgba(34,197,94,.1);
  --dfsh-red:         #ef4444;
  --dfsh-red-bg:      rgba(239,68,68,.08);
  --dfsh-blue:        #3b82f6;
  --dfsh-blue-bg:     rgba(59,130,246,.1);
  --dfsh-purple-bg:   rgba(124,58,237,.1);
  --dfsh-card:        var(--bg-card, #12121a);
  --dfsh-elevated:    var(--bg-elevated, #1a1a26);
  --dfsh-border:      var(--border, rgba(255,255,255,.08));
  --dfsh-text:        var(--text, #f0f0f5);
  --dfsh-muted:       var(--text-muted, rgba(240,240,245,.5));
  --dfsh-accent:      var(--accent, #7c3aed);
  --dfsh-font:        var(--font, 'Outfit', system-ui, sans-serif);
  --dfsh-radius:      var(--radius, 12px);
  --dfsh-radius-sm:   8px;
  --dfsh-shadow:      0 4px 24px rgba(0,0,0,.45);
}

/* ── Layout ──────────────────────────────────────────────────────── */
.dfsh-layout {
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 32px;
  align-items: start;
  padding-bottom: 80px;
}
.dfsh-main  { min-width: 0; }
.dfsh-sidebar { position: relative; }
.dfsh-sidebar-sticky { position: sticky; top: 72px; display: flex; flex-direction: column; gap: 12px; }

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.dfsh-breadcrumb { padding: 14px 0 0; margin-bottom: 20px; }
.dfsh-breadcrumb ol { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; font-size: .78rem; }
.dfsh-breadcrumb a { color: var(--dfsh-muted); transition: color .15s; }
.dfsh-breadcrumb a:hover { color: var(--dfsh-accent); }
.dfsh-breadcrumb li { color: var(--dfsh-muted); }
.dfsh-bc-sep { color: var(--dfsh-muted); opacity: .5; }

/* ── Sections ────────────────────────────────────────────────────── */
.dfsh-section { margin-bottom: 24px; }
.dfsh-section-hd { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.dfsh-section-title { font-size: 1.2rem; font-weight: 700; color: var(--dfsh-text); font-family: var(--dfsh-font); margin: 0 0 14px; }
.dfsh-section-hd .dfsh-section-title { margin-bottom: 0; }
.dfsh-section-meta { font-size: .75rem; color: var(--dfsh-muted); }

/* ── Review Hero ─────────────────────────────────────────────────── */
.dfsh-hero {
  background: var(--dfsh-card);
  border: 1px solid var(--dfsh-border);
  border-radius: var(--dfsh-radius);
  overflow: hidden;
  margin-bottom: 16px;
  animation: dfsh-fadeup .35s ease both;
}
.dfsh-hero-banner {
  height: 130px;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2a50 45%, #0d2a1a 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px 24px;
}
.dfsh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.dfsh-hero-logo {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 12px;
  background: var(--dfsh-card);
  border: 2px solid var(--dfsh-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-size: 1.4rem; font-weight: 800; color: var(--dfsh-accent);
}
.dfsh-hero-logo img { width: 100%; height: 100%; object-fit: contain; }
.dfsh-hero-body { padding: 18px 24px 22px; }
.dfsh-hero-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.dfsh-hero-title { font-size: 1.8rem; font-weight: 800; color: var(--dfsh-text); line-height: 1.2; margin: 0 0 8px; font-family: var(--dfsh-font); }
.dfsh-hero-desc { font-size: .9rem; color: var(--dfsh-muted); line-height: 1.65; margin: 0 0 18px; max-width: 560px; }

/* Badges */
.dfsh-badge { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 4px; font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.dfsh-badge--green  { background: var(--dfsh-green-bg);  color: var(--dfsh-green);  border: 1px solid rgba(34,197,94,.2); }
.dfsh-badge--purple { background: var(--dfsh-purple-bg); color: var(--dfsh-accent); border: 1px solid rgba(124,58,237,.2); }
.dfsh-badge--blue   { background: var(--dfsh-blue-bg);   color: var(--dfsh-blue);   border: 1px solid rgba(59,130,246,.2); }
.dfsh-badge--gold   { background: var(--dfsh-gold-bg);   color: var(--dfsh-gold);   border: 1px solid rgba(212,168,67,.2); }

/* Rating row */
.dfsh-rating-row { display: flex; align-items: center; gap: 14px; padding: 14px 0 0; border-top: 1px solid var(--dfsh-border); flex-wrap: wrap; }
.dfsh-rating-score { display: flex; align-items: baseline; gap: 4px; }
.dfsh-score { font-size: 2.4rem; font-weight: 800; color: var(--dfsh-gold); line-height: 1; }
.dfsh-score-denom { font-size: .85rem; color: var(--dfsh-muted); }
.dfsh-rating-label { font-size: .75rem; color: var(--dfsh-muted); }
.dfsh-stars { display: flex; gap: 2px; }
.dfsh-star { width: 15px; height: 15px; }
.dfsh-star.full  { color: var(--dfsh-gold); }
.dfsh-star.half  { color: var(--dfsh-gold); opacity: .55; }
.dfsh-star.empty { color: var(--dfsh-muted); opacity: .4; }
.dfsh-rating-cats { display: flex; gap: 14px; margin-left: auto; }
.dfsh-rating-cat  { text-align: center; }
.dfsh-cat-val { font-size: .88rem; font-weight: 700; color: var(--dfsh-gold); font-family: 'JetBrains Mono', monospace; }
.dfsh-cat-lbl { font-size: .65rem; color: var(--dfsh-muted); text-transform: uppercase; letter-spacing: .04em; margin-top: 1px; }

/* ── Quick Stats ─────────────────────────────────────────────────── */
.dfsh-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--dfsh-border);
  border: 1px solid var(--dfsh-border);
  border-radius: var(--dfsh-radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  animation: dfsh-fadeup .35s .05s ease both;
}
.dfsh-qs { background: var(--dfsh-card); padding: 14px 10px; text-align: center; }
.dfsh-qs-val { display: block; font-size: 1.05rem; font-weight: 700; color: var(--dfsh-text); margin-bottom: 3px; }
.dfsh-qs-lbl { display: block; font-size: .68rem; color: var(--dfsh-muted); text-transform: uppercase; letter-spacing: .04em; }

/* ── Bonus Card ──────────────────────────────────────────────────── */
.dfsh-bonus-card {
  background: linear-gradient(135deg, #0e1e3d 0%, #0a2b18 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--dfsh-radius);
  padding: 22px 24px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  animation: dfsh-fadeup .35s .1s ease both;
}
.dfsh-bonus-card::after { content: '★'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 6rem; color: rgba(212,168,67,.05); pointer-events: none; line-height: 1; }
.dfsh-bonus-label  { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dfsh-gold-dim); margin-bottom: 6px; }
.dfsh-bonus-headline { font-size: 1.7rem; font-weight: 800; color: var(--dfsh-text); line-height: 1; margin-bottom: 6px; font-family: var(--dfsh-font); }
.dfsh-bonus-sub    { font-size: .84rem; color: var(--dfsh-muted); margin-bottom: 16px; }
.dfsh-bonus-terms  { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.dfsh-bt { display: flex; flex-direction: column; gap: 2px; }
.dfsh-bt-val { font-weight: 700; color: var(--dfsh-gold); font-size: .88rem; }
.dfsh-bt-lbl { font-size: .65rem; color: var(--dfsh-muted); text-transform: uppercase; letter-spacing: .04em; }
.dfsh-bonus-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.dfsh-affiliate-note { font-size: .65rem; color: var(--dfsh-muted); }
.dfsh-affiliate-note a { color: var(--dfsh-blue); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.dfsh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  font-family: var(--dfsh-font);
  cursor: pointer;
  transition: all .15s;
  border: none;
  text-decoration: none;
  letter-spacing: .01em;
}
.dfsh-btn--primary { background: var(--dfsh-accent); color: #fff; }
.dfsh-btn--primary:hover { background: #8b4df0; transform: translateY(-1px); color: #fff; }
.dfsh-btn--ghost { background: transparent; color: var(--dfsh-muted); border: 1px solid var(--dfsh-border); }
.dfsh-btn--ghost:hover { background: var(--dfsh-elevated); color: var(--dfsh-text); }
.dfsh-btn--full { width: 100%; margin-bottom: 8px; }
.dfsh-btn--full:last-of-type { margin-bottom: 0; }
.dfsh-link { color: var(--dfsh-accent); font-size: .82rem; background: none; border: none; cursor: pointer; padding: 0; font-family: var(--dfsh-font); transition: opacity .15s; }
.dfsh-link:hover { opacity: .8; }

/* ── Pros / Cons ─────────────────────────────────────────────────── */
.dfsh-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--dfsh-border);
  border: 1px solid var(--dfsh-border);
  border-radius: var(--dfsh-radius);
  overflow: hidden;
  margin-bottom: 16px;
  animation: dfsh-fadeup .35s .15s ease both;
}
.dfsh-pros-col, .dfsh-cons-col { background: var(--dfsh-card); padding: 18px 20px; }
.dfsh-pc-title { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.dfsh-pc-title--pros { color: var(--dfsh-green); }
.dfsh-pc-title--cons { color: var(--dfsh-red); }
.dfsh-pc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.dfsh-pc-item { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--dfsh-muted); line-height: 1.55; }
.dfsh-pc-icon { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 900; margin-top: 1px; }
.dfsh-pc-icon--pro { background: var(--dfsh-green-bg); color: var(--dfsh-green); }
.dfsh-pc-icon--con { background: var(--dfsh-red-bg);   color: var(--dfsh-red); }

/* ── Best For ────────────────────────────────────────────────────── */
.dfsh-best-for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dfsh-bf-chip {
  background: var(--dfsh-card);
  border: 1px solid var(--dfsh-border);
  border-radius: var(--dfsh-radius-sm);
  padding: 14px 12px;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.dfsh-bf-chip:hover { border-color: var(--dfsh-accent); background: var(--dfsh-elevated); }
.dfsh-bf-icon  { font-size: 1.5rem; margin-bottom: 6px; line-height: 1; }
.dfsh-bf-label { display: block; font-size: .8rem; font-weight: 700; color: var(--dfsh-text); margin-bottom: 3px; }
.dfsh-bf-desc  { display: block; font-size: .7rem; color: var(--dfsh-muted); line-height: 1.4; }

/* ── Provider Chips ──────────────────────────────────────────────── */
.dfsh-chips-wrap { display: flex; gap: 7px; flex-wrap: wrap; }
.dfsh-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dfsh-card);
  border: 1px solid var(--dfsh-border);
  border-radius: 6px;
  padding: 5px 12px 5px 7px;
  font-size: .78rem;
  color: var(--dfsh-muted);
  transition: all .15s;
  text-decoration: none;
}
.dfsh-chip:hover { border-color: var(--dfsh-accent); color: var(--dfsh-text); background: var(--dfsh-elevated); }
.dfsh-chip-abbr {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--dfsh-elevated);
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 800;
  color: var(--dfsh-muted);
}

/* ── What's New Feed ─────────────────────────────────────────────── */
.dfsh-feed-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dfsh-feed-title-row { display: flex; align-items: center; gap: 8px; }
.dfsh-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dfsh-green); animation: dfsh-pulse 2s infinite; flex-shrink: 0; }
@keyframes dfsh-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.6)} }
.dfsh-feed-tabs { display: flex; gap: 2px; background: var(--dfsh-card); border: 1px solid var(--dfsh-border); border-radius: 8px; padding: 4px; margin-bottom: 12px; }
.dfsh-feed-tab { flex: 1; padding: 6px 10px; font-size: .76rem; font-weight: 600; color: var(--dfsh-muted); text-align: center; border-radius: 5px; border: none; background: none; cursor: pointer; transition: all .15s; font-family: var(--dfsh-font); }
.dfsh-feed-tab.active { background: var(--dfsh-elevated); color: var(--dfsh-text); }
.dfsh-feed-list { border: 1px solid var(--dfsh-border); border-radius: var(--dfsh-radius-sm); overflow: hidden; display: flex; flex-direction: column; gap: 1px; background: var(--dfsh-border); }
.dfsh-feed-item {
  background: var(--dfsh-card);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: background .15s;
  cursor: default;
}
.dfsh-feed-item:hover { background: var(--dfsh-elevated); }
.dfsh-feed-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.dfsh-feed-icon--promo  { background: var(--dfsh-gold-bg); }
.dfsh-feed-icon--game   { background: var(--dfsh-green-bg); }
.dfsh-feed-icon--social { background: var(--dfsh-blue-bg); }
.dfsh-feed-icon--update { background: var(--dfsh-purple-bg); }
.dfsh-feed-body { flex: 1; min-width: 0; }
.dfsh-feed-source { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.dfsh-src-tag { padding: 1px 6px; border-radius: 3px; font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.dfsh-src-tag--sitemap  { background: var(--dfsh-gold-bg);   color: var(--dfsh-gold); }
.dfsh-src-tag--social   { background: var(--dfsh-blue-bg);   color: var(--dfsh-blue); }
.dfsh-src-tag--editorial{ background: var(--dfsh-green-bg);  color: var(--dfsh-green); }
.dfsh-src-tag--game     { background: var(--dfsh-green-bg);  color: var(--dfsh-green); }
.dfsh-feed-origin { font-size: .68rem; color: var(--dfsh-muted); }
.dfsh-feed-headline { font-size: .86rem; font-weight: 600; color: var(--dfsh-text); line-height: 1.4; margin-bottom: 3px; }
.dfsh-feed-excerpt  { font-size: .76rem; color: var(--dfsh-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dfsh-feed-time { font-size: .68rem; color: var(--dfsh-muted); flex-shrink: 0; margin-top: 2px; white-space: nowrap; }
.dfsh-feed-embed { margin-top: 8px; }
.dfsh-feed-empty { padding: 24px; text-align: center; color: var(--dfsh-muted); font-size: .85rem; background: var(--dfsh-card); }

/* ── Offers Strip ────────────────────────────────────────────────── */
.dfsh-offers-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dfsh-offer-card {
  background: var(--dfsh-card);
  border: 1px solid var(--dfsh-border);
  border-radius: var(--dfsh-radius-sm);
  padding: 16px;
  text-decoration: none;
  transition: border-color .15s, background .15s;
  display: block;
}
.dfsh-offer-card:hover { border-color: var(--dfsh-accent); background: var(--dfsh-elevated); }
.dfsh-offer-type   { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dfsh-muted); margin-bottom: 6px; }
.dfsh-offer-amount { font-size: 1.45rem; font-weight: 800; color: var(--dfsh-gold); line-height: 1; margin-bottom: 5px; font-family: var(--dfsh-font); }
.dfsh-offer-desc   { font-size: .78rem; color: var(--dfsh-muted); line-height: 1.45; margin-bottom: 10px; }
.dfsh-offer-expiry { font-size: .68rem; color: var(--dfsh-muted); opacity: .7; }

/* ── Demo Games Grid ─────────────────────────────────────────────── */
.dfsh-games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--dfsh-border); border: 1px solid var(--dfsh-border); border-radius: var(--dfsh-radius-sm); overflow: hidden; margin-bottom: 12px; }
.dfsh-game-card { background: var(--dfsh-card); text-decoration: none; transition: background .15s; display: block; }
.dfsh-game-card:hover { background: var(--dfsh-elevated); }
.dfsh-game-card:hover .dfsh-game-play-overlay { opacity: 1; }
.dfsh-game-thumb { aspect-ratio: 3/2; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.dfsh-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dfsh-game-emoji { font-size: 2rem; }
.dfsh-game-rtp { position: absolute; top: 6px; right: 6px; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); padding: 2px 6px; border-radius: 4px; font-size: .6rem; font-weight: 700; color: var(--dfsh-gold); }
.dfsh-game-play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; font-size: .7rem; font-weight: 900; color: #fff; width: 36px; height: 36px; border-radius: 50%; background: var(--dfsh-accent); margin: auto; }
.dfsh-game-info { padding: 9px 10px 11px; }
.dfsh-game-name { font-size: .76rem; font-weight: 700; color: var(--dfsh-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dfsh-game-provider { font-size: .65rem; color: var(--dfsh-muted); margin-top: 1px; }
.dfsh-widget-footer { padding: 10px 0 2px; text-align: center; }

/* ── Review Body ─────────────────────────────────────────────────── */
.dfsh-review-body { background: var(--dfsh-card); border: 1px solid var(--dfsh-border); border-radius: var(--dfsh-radius); overflow: hidden; }
.dfsh-review-toc { display: flex; gap: 7px; flex-wrap: wrap; padding: 12px 16px; background: var(--bg, #0a0a0f); border-bottom: 1px solid var(--dfsh-border); }
.dfsh-toc-link { font-size: .73rem; color: var(--dfsh-muted); padding: 4px 10px; border-radius: 4px; background: var(--dfsh-card); border: 1px solid var(--dfsh-border); transition: all .15s; text-decoration: none; }
.dfsh-toc-link:hover { color: var(--dfsh-accent); border-color: var(--dfsh-accent); }
.dfsh-review-content { padding: 22px 24px; }
.dfsh-review-content h2 { font-size: 1.15rem; font-weight: 700; color: var(--dfsh-text); margin: 22px 0 10px; scroll-margin-top: 80px; }
.dfsh-review-content h2:first-child { margin-top: 0; }
.dfsh-review-content p  { font-size: .88rem; color: var(--dfsh-muted); line-height: 1.75; margin: 0 0 12px; }
.dfsh-review-content p strong { color: var(--dfsh-text); }
.dfsh-info-table-wrap { margin: 0; padding: 0 24px 22px; }
.dfsh-info-table-title { font-size: .8rem; font-weight: 700; color: var(--dfsh-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.dfsh-info-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.dfsh-info-table tr { border-bottom: 1px solid var(--dfsh-border); }
.dfsh-info-table tr:last-child { border-bottom: none; }
.dfsh-it-label { padding: 9px 0; color: var(--dfsh-muted); width: 38%; font-size: .78rem; }
.dfsh-it-val   { padding: 9px 0; color: var(--dfsh-muted); font-weight: 500; }

/* ── Provider Widget ─────────────────────────────────────────────── */
.dfsh-provider-widget { background: var(--dfsh-card); border: 1px solid var(--dfsh-border); border-radius: var(--dfsh-radius); overflow: hidden; }
.dfsh-provider-search { display: block; width: 100%; padding: 10px 14px; background: var(--bg, #0a0a0f); border: none; border-bottom: 1px solid var(--dfsh-border); color: var(--dfsh-text); font-family: var(--dfsh-font); font-size: .84rem; outline: none; }
.dfsh-provider-search::placeholder { color: var(--dfsh-muted); }
.dfsh-providers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dfsh-border); }
.dfsh-prov-cell { background: var(--dfsh-card); padding: 14px 10px; text-align: center; text-decoration: none; transition: background .15s; }
.dfsh-prov-cell:hover { background: var(--dfsh-elevated); }
.dfsh-prov-logo  { width: 48px; height: 32px; object-fit: contain; margin: 0 auto 7px; display: block; }
.dfsh-prov-abbr  { width: 48px; height: 32px; background: var(--dfsh-elevated); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 800; color: var(--dfsh-muted); margin: 0 auto 7px; }
.dfsh-prov-name  { font-size: .72rem; font-weight: 600; color: var(--dfsh-muted); }
.dfsh-prov-count { font-size: .62rem; color: var(--dfsh-muted); opacity: .7; margin-top: 2px; }

/* ── Community ───────────────────────────────────────────────────── */
.dfsh-community { background: var(--dfsh-card); border: 1px solid var(--dfsh-border); border-radius: var(--dfsh-radius); overflow: hidden; }
.dfsh-community-hd { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--dfsh-border); }
.dfsh-community-hd .dfsh-section-title { margin: 0; }
.dfsh-community-stats { font-size: .78rem; color: var(--dfsh-muted); }
.dfsh-compose { display: flex; gap: 10px; padding: 14px 20px; background: var(--bg, #0a0a0f); border-bottom: 1px solid var(--dfsh-border); align-items: flex-start; }
.dfsh-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--dfsh-elevated); border: 1px solid var(--dfsh-border); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: var(--dfsh-muted); flex-shrink: 0; text-transform: uppercase; }
.dfsh-compose-inner { flex: 1; }
.dfsh-compose-textarea { width: 100%; background: var(--dfsh-card); border: 1px solid var(--dfsh-border); border-radius: 8px; padding: 10px 12px; color: var(--dfsh-text); font-family: var(--dfsh-font); font-size: .86rem; resize: none; outline: none; transition: border-color .15s; min-height: 64px; }
.dfsh-compose-textarea:focus { border-color: var(--dfsh-accent); }
.dfsh-compose-textarea::placeholder { color: var(--dfsh-muted); }
.dfsh-compose-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.dfsh-char-count { font-size: .7rem; color: var(--dfsh-muted); }
.dfsh-compose-login { display: flex; align-items: center; gap: 12px; }
.dfsh-thread-sort { display: flex; gap: 8px; align-items: center; padding: 9px 20px; border-bottom: 1px solid var(--dfsh-border); }
.dfsh-sort-label { font-size: .72rem; color: var(--dfsh-muted); }
.dfsh-sort-opt { font-size: .72rem; color: var(--dfsh-muted); padding: 3px 8px; border-radius: 4px; border: none; background: none; cursor: pointer; font-family: var(--dfsh-font); transition: all .15s; }
.dfsh-sort-opt.active { background: var(--dfsh-elevated); color: var(--dfsh-text); }
.dfsh-pinned-wrap { border-left: 3px solid var(--dfsh-gold); background: rgba(212,168,67,.04); }
.dfsh-thread { padding: 0 20px; }
.dfsh-comment { display: flex; gap: 10px; padding: 16px 0; border-bottom: 1px solid var(--dfsh-border); }
.dfsh-comment:last-child { border-bottom: none; }
.dfsh-comment--pinned { padding: 16px 20px; border-bottom: 1px solid var(--dfsh-border); display: flex; gap: 10px; }
.dfsh-comment-body { flex: 1; min-width: 0; }
.dfsh-comment-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 7px; }
.dfsh-comment-author { font-size: .82rem; font-weight: 700; color: var(--dfsh-text); }
.dfsh-staff-badge { font-size: .6rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 2px 6px; background: var(--dfsh-gold-bg); color: var(--dfsh-gold); border-radius: 3px; }
.dfsh-pinned-label { font-size: .6rem; color: var(--dfsh-muted); }
.dfsh-comment-time { font-size: .7rem; color: var(--dfsh-muted); margin-left: auto; }
.dfsh-comment-text { font-size: .86rem; color: var(--dfsh-muted); line-height: 1.6; margin-bottom: 9px; word-break: break-word; }
.dfsh-comment-actions { display: flex; gap: 12px; align-items: center; }
.dfsh-action { background: none; border: none; font-size: .7rem; color: var(--dfsh-muted); cursor: pointer; display: flex; align-items: center; gap: 4px; padding: 3px 6px; border-radius: 4px; font-family: var(--dfsh-font); transition: all .15s; }
.dfsh-action:hover { color: var(--dfsh-text); background: var(--dfsh-elevated); }
.dfsh-upvote-btn.dfsh-voted { color: var(--dfsh-green) !important; }
.dfsh-vote-count { font-weight: 700; }
.dfsh-empty-state { padding: 24px; text-align: center; color: var(--dfsh-muted); font-size: .85rem; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.dfsh-faq { background: var(--dfsh-card); border: 1px solid var(--dfsh-border); border-radius: var(--dfsh-radius); overflow: hidden; }
.dfsh-faq .dfsh-section-title { padding: 16px 20px 0; }
.dfsh-faq-item { border-bottom: 1px solid var(--dfsh-border); }
.dfsh-faq-item:last-child { border-bottom: none; }
.dfsh-faq-q { width: 100%; background: none; border: none; padding: 14px 20px; text-align: left; font-size: .88rem; font-weight: 600; color: var(--dfsh-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--dfsh-font); transition: background .15s; }
.dfsh-faq-q:hover { background: var(--dfsh-elevated); }
.dfsh-faq-chevron { flex-shrink: 0; font-size: .7rem; color: var(--dfsh-muted); transition: transform .2s; }
.dfsh-faq-q[aria-expanded="true"] .dfsh-faq-chevron { transform: rotate(180deg); }
.dfsh-faq-a { padding: 0 20px 14px; font-size: .84rem; color: var(--dfsh-muted); line-height: 1.7; }

/* ── Related Casinos ─────────────────────────────────────────────── */
.dfsh-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dfsh-related-card { background: var(--dfsh-card); border: 1px solid var(--dfsh-border); border-radius: var(--dfsh-radius-sm); padding: 16px; text-decoration: none; transition: border-color .15s; display: block; }
.dfsh-related-card:hover { border-color: var(--dfsh-accent); }
.dfsh-related-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; margin-bottom: 10px; }
.dfsh-related-logo-placeholder { width: 40px; height: 40px; background: var(--dfsh-elevated); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 800; color: var(--dfsh-accent); margin-bottom: 10px; }
.dfsh-related-name   { font-size: .85rem; font-weight: 700; color: var(--dfsh-text); margin-bottom: 3px; }
.dfsh-related-rating { font-size: .72rem; color: var(--dfsh-gold); margin-bottom: 6px; }
.dfsh-related-blurb  { font-size: .72rem; color: var(--dfsh-muted); line-height: 1.4; }

/* ── Disclosure ──────────────────────────────────────────────────── */
.dfsh-disclosure { background: var(--dfsh-card); border: 1px solid var(--dfsh-border); border-radius: var(--dfsh-radius-sm); padding: 16px 18px; }
.dfsh-disclosure p { font-size: .74rem; color: var(--dfsh-muted); line-height: 1.7; margin: 0 0 6px; }
.dfsh-disclosure p:last-child { margin-bottom: 0; }
.dfsh-disclosure a { color: var(--dfsh-blue); }

/* ── Sidebar ─────────────────────────────────────────────────────── */
.dfsh-sidebar-cta { background: linear-gradient(155deg, #0e1e3d 0%, #0a2b18 100%); border: 1px solid rgba(255,255,255,.1); border-radius: var(--dfsh-radius); padding: 20px; text-align: center; }
.dfsh-sidebar-casino-name { font-size: 1.2rem; font-weight: 800; color: var(--dfsh-text); margin-bottom: 4px; font-family: var(--dfsh-font); }
.dfsh-sidebar-rating { font-size: .82rem; color: var(--dfsh-gold); margin-bottom: 14px; }
.dfsh-sidebar-note { font-size: .62rem; color: var(--dfsh-muted); margin-top: 10px; }
.dfsh-positive { color: var(--dfsh-green) !important; }
.dfsh-sidebar-card { background: var(--dfsh-card); border: 1px solid var(--dfsh-border); border-radius: var(--dfsh-radius-sm); overflow: hidden; }
.dfsh-sidebar-card-title { padding: 10px 14px; font-size: .72rem; font-weight: 700; color: var(--dfsh-muted); text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid var(--dfsh-border); }
.dfsh-sidebar-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 14px; border-bottom: 1px solid var(--dfsh-border); font-size: .78rem; }
.dfsh-sidebar-row:last-child { border-bottom: none; }
.dfsh-sidebar-lbl { color: var(--dfsh-muted); }
.dfsh-sidebar-val { color: var(--dfsh-muted); font-weight: 500; text-align: right; font-size: .76rem; }
.dfsh-trust-row { display: flex; align-items: center; gap: 10px; padding: 7px 14px; border-bottom: 1px solid var(--dfsh-border); }
.dfsh-trust-row:last-child { border-bottom: none; }
.dfsh-trust-lbl { font-size: .72rem; color: var(--dfsh-muted); width: 68px; flex-shrink: 0; }
.dfsh-trust-track { flex: 1; height: 4px; background: var(--dfsh-elevated); border-radius: 2px; overflow: hidden; }
.dfsh-trust-fill { height: 100%; background: var(--dfsh-accent); border-radius: 2px; transition: width .6s ease; }
.dfsh-trust-score { font-size: .7rem; font-weight: 700; color: var(--dfsh-accent); width: 26px; text-align: right; flex-shrink: 0; }
.dfsh-sidebar-feed-item { display: flex; gap: 8px; align-items: flex-start; padding: 10px 14px; border-bottom: 1px solid var(--dfsh-border); cursor: pointer; transition: background .15s; text-decoration: none; }
.dfsh-sidebar-feed-item:last-child { border-bottom: none; }
.dfsh-sidebar-feed-item:hover { background: var(--dfsh-elevated); }
.dfsh-sidebar-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.dfsh-sidebar-feed-text { flex: 1; font-size: .74rem; color: var(--dfsh-muted); line-height: 1.4; }
.dfsh-sidebar-feed-time { font-size: .62rem; color: var(--dfsh-muted); opacity: .7; flex-shrink: 0; white-space: nowrap; }

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes dfsh-fadeup { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .dfsh-layout { grid-template-columns: 1fr; }
  .dfsh-sidebar-sticky { position: static; flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .dfsh-sidebar-cta { flex: 1 1 280px; }
  .dfsh-sidebar-card { flex: 1 1 200px; }
  .dfsh-rating-cats { display: none; }
}
@media (max-width: 768px) {
  .dfsh-hero-title { font-size: 1.4rem; }
  .dfsh-quick-stats { grid-template-columns: repeat(2, 1fr); }
  .dfsh-pros-cons { grid-template-columns: 1fr; }
  .dfsh-best-for-grid { grid-template-columns: repeat(2, 1fr); }
  .dfsh-offers-strip { grid-template-columns: 1fr 1fr; }
  .dfsh-games-grid { grid-template-columns: repeat(2, 1fr); }
  .dfsh-providers-grid { grid-template-columns: repeat(3, 1fr); }
  .dfsh-related-grid { grid-template-columns: repeat(2, 1fr); }
  .dfsh-bonus-card { padding: 16px; }
  .dfsh-review-content { padding: 16px; }
  .dfsh-info-table-wrap { padding: 0 16px 16px; }
  .dfsh-sidebar-sticky { flex-direction: column; }
}
@media (max-width: 480px) {
  .dfsh-offers-strip { grid-template-columns: 1fr; }
  .dfsh-related-grid { grid-template-columns: 1fr; }
  .dfsh-best-for-grid { grid-template-columns: 1fr; }
  .dfsh-hero-banner { height: 100px; }
  .dfsh-hero-body { padding: 14px 16px 18px; }
  .dfsh-rating-row { gap: 10px; }
}

/* ── UX-6: FAQ keyboard focus ring ──────────────────────────────── */
.dfsh-faq-q:focus-visible {
  outline: 2px solid var(--dfsh-accent);
  outline-offset: -2px;
}

/* ── Breadcrumb separator via CSS (replaces the removed <span>) ─── */
.dfsh-breadcrumb li + li::before {
  content: '›';
  margin-right: 6px;
  color: var(--dfsh-muted);
  opacity: .5;
}

/* ── UX-9: Quick stats — muted dash style when value is empty ───── */
.dfsh-qs-val:empty::before,
.dfsh-qs-val:not(:has(*)):empty { content: '—'; color: var(--dfsh-muted); }

/* Ensure quick stats bar always renders ────────────────────────── */
.dfsh-quick-stats { animation: dfsh-fadeup .35s .05s ease both; }

/* ── Bonus full-tcs expanded block ──────────────────────────────── */
.dfsh-bonus-full-tcs {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .74rem;
  color: rgba(240,240,245,.5);
  line-height: 1.65;
}

/* ── Toast accessible ─────────────────────────────────────────── */
[role="alert"] { pointer-events: none; }

/* ── Webpage (blog/news scraper) source type ─────────────────────── */
.dfsh-src-tag--webpage   { background: rgba(34,197,94,.1);  color: #22c55e; border: 1px solid rgba(34,197,94,.2); }
.dfsh-feed-icon--webpage { background: rgba(34,197,94,.08); }

/* ═══ Feed — fixed scrollable window (4 visible, 10 total) ══════════ */
/* Wrap the feed list so we can overlay a fade gradient ──────────────── */
.dfsh-feed-section .dfsh-feed-list {
  max-height: 380px;        /* ≈ 4 posts @ ~95px each                  */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--dfsh-accent) transparent;
  /* Remove the overflow:hidden that hides the scroll ─────────────────── */
  border-radius: 0 0 var(--dfsh-radius-sm) var(--dfsh-radius-sm);
}
.dfsh-feed-section .dfsh-feed-list::-webkit-scrollbar {
  width: 4px;
}
.dfsh-feed-section .dfsh-feed-list::-webkit-scrollbar-track {
  background: transparent;
}
.dfsh-feed-section .dfsh-feed-list::-webkit-scrollbar-thumb {
  background: var(--dfsh-accent);
  border-radius: 2px;
}

/* Fade overlay at the bottom signals scrollability ──────────────────── */
.dfsh-feed-section { position: relative; }
.dfsh-feed-section .dfsh-feed-list-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(transparent, var(--dfsh-card, #12121a));
  pointer-events: none;
  border-radius: 0 0 var(--dfsh-radius-sm) var(--dfsh-radius-sm);
  transition: opacity .2s;
}
/* Hide fade when scrolled to bottom — toggled by JS ─────────────────── */
.dfsh-feed-section .dfsh-feed-list-fade.hidden { opacity: 0; }

/* ── Social platform card ──────────────────────────────────────────── */
.dfsh-social-card {
  background: var(--dfsh-elevated, #1a1a26);
  border: 1px solid var(--dfsh-border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 8px;
}
.dfsh-social-card--twitter  { border-left: 3px solid #1d9bf0; }
.dfsh-social-card--instagram { border-left: 3px solid #e1306c; }
.dfsh-social-card--facebook  { border-left: 3px solid #1877f2; }

.dfsh-social-platform {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dfsh-muted);
  margin-bottom: 6px;
}
.dfsh-social-card--twitter  .dfsh-social-platform { color: #1d9bf0; }
.dfsh-social-card--instagram .dfsh-social-platform { color: #e1306c; }
.dfsh-social-card--facebook  .dfsh-social-platform { color: #1877f2; }

.dfsh-social-text {
  font-size: .84rem;
  color: var(--dfsh-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.dfsh-social-link {
  font-size: .7rem;
  color: var(--dfsh-accent);
  font-weight: 600;
  text-decoration: none;
}
.dfsh-social-link:hover { opacity: .8; }

/* X.com source badge ────────────────────────────────────────────────── */
.dfsh-src-tag--twitter  { background: rgba(29,155,240,.1); color: #1d9bf0; border: 1px solid rgba(29,155,240,.2); }
.dfsh-src-tag--instagram { background: rgba(225,48,108,.1); color: #e1306c; border: 1px solid rgba(225,48,108,.2); }
.dfsh-src-tag--facebook  { background: rgba(24,119,242,.1); color: #1877f2; border: 1px solid rgba(24,119,242,.2); }
