/*
Theme Name: DemoFreeSlots WordPress Theme
Theme URI: https://example.com/demofreeslots-wordpress-theme
Author: DemoFreeSlots
Description: DemoFreeSlots theme v3. 4-pillar navigation (Slots, Providers, Casinos, Tools). V1/V2 review system. Auto-generated content engine. Provider auto-creation. Awards and Big Wins sections removed.
Version: 3.1.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: demofreeslots
*/

/* ═══════════════════════════════════════════════
   DFS Design System v2.0
   Dark social aesthetic — elevated from WP theme
   ═══════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg: #0f0d15;
  --bg-card: #1a1725;
  --bg-elevated: #221f30;
  --bg-hover: #2a2640;
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --accent-glow: rgba(108,92,231,.15);
  --success: #00cec9;
  --danger: #ff6b6b;
  --warning: #fdcb6e;
  --text: #e8e6f0;
  --text-muted: #9b97a8;
  --text-dim: #6b6780;
  --border: rgba(255,255,255,.06);
  --border-hover: rgba(255,255,255,.12);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max-w: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.2);
  --shadow-md: 0 8px 32px rgba(0,0,0,.3);
  --shadow-lg: 0 16px 64px rgba(0,0,0,.4);
  --transition: .15s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.dfs-body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font); cursor: pointer; }

/* ── Container ── */
.dfs-container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ══════════════════ HEADER ══════════════════ */
.dfs-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,13,21,.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.dfs-header-inner {
  display: flex; align-items: center; gap: 16px;
  height: 60px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
}

/* Logo */
.dfs-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.dfs-logo-icon { font-size: 24px; }
.dfs-logo-text { font-size: 17px; font-weight: 800; color: var(--text); letter-spacing: -.3px; }
.dfs-logo-accent { color: var(--accent-light); }

/* Search trigger */
.dfs-cmd-trigger {
  display: flex; align-items: center; gap: 10px;
  flex: 1; max-width: 420px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-dim); font-size: 13px; cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.dfs-cmd-trigger:hover { border-color: var(--border-hover); background: var(--bg-elevated); }
.dfs-cmd-trigger kbd {
  padding: 2px 7px; border-radius: 4px;
  background: var(--bg); border: 1px solid var(--border);
  font-size: 11px; font-family: inherit; color: var(--text-dim);
}

/* Nav */
.dfs-nav { display: flex; gap: 4px; }
.dfs-nav a {
  padding: 6px 12px; border-radius: var(--radius-xs);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  transition: all var(--transition);
}
.dfs-nav a:hover { color: var(--text); background: var(--bg-hover); }

/* Fav link in header */
.dfs-header-fav {
  position: relative; font-size: 18px; color: var(--text-muted);
  padding: 6px 10px; transition: color var(--transition);
}
.dfs-header-fav:hover { color: var(--danger); }
.dfs-fav-count {
  position: absolute; top: 0; right: 0;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 8px; background: var(--danger); color: #fff;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}

/* ══════════════════ COMMAND PALETTE ══════════════════ */
.dfs-cmd-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 80px 20px 20px;
}
.dfs-cmd-modal {
  width: 100%; max-width: 560px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: cmdSlide .2s ease;
}
@keyframes cmdSlide { from { opacity: 0; transform: translateY(-12px); } }
.dfs-cmd-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.dfs-cmd-head input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 16px; font-family: var(--font); color: var(--text);
}
.dfs-cmd-head input::placeholder { color: var(--text-dim); }
.dfs-cmd-esc {
  font-size: 11px; padding: 3px 8px; border-radius: 4px;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text-dim); cursor: pointer;
}
.dfs-cmd-body { max-height: 400px; overflow-y: auto; }
.dfs-search-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; cursor: pointer;
  transition: background var(--transition);
}
.dfs-search-item:hover { background: var(--bg-hover); }
.dfs-search-item-icon { font-size: 22px; flex-shrink: 0; }
.dfs-search-item-title { font-size: 14px; font-weight: 600; display: block; }
.dfs-search-item-sub { font-size: 12px; color: var(--text-dim); display: block; }

/* ══════════════════ HERO ══════════════════ */
.dfs-hero {
  padding: 48px 0 36px;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-glow) 0%, transparent 70%);
}
.dfs-hero-title { font-size: 36px; font-weight: 900; letter-spacing: -.5px; line-height: 1.15; }
.dfs-gradient-text { background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dfs-hero-sub { font-size: 16px; color: var(--text-muted); margin-top: 10px; }
.dfs-hero-stats { display: flex; gap: 32px; margin-top: 24px; }
.dfs-stat-num { font-size: 28px; font-weight: 900; display: block; color: var(--text); }
.dfs-stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; }

/* ══════════════════ SECTIONS ══════════════════ */
.dfs-section { padding: 32px 0; }
.dfs-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dfs-section-head h2 { font-size: 20px; font-weight: 800; }

/* Slider */
.dfs-slider {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px;
}
.dfs-slider::-webkit-scrollbar { display: none; }
.dfs-slider > * { scroll-snap-align: start; flex-shrink: 0; }
.dfs-slider-nav { display: flex; gap: 6px; }
.dfs-slider-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.dfs-slider-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ══════════════════ SLOT CARD ══════════════════ */
.dfs-slot-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; width: 260px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.dfs-slot-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.dfs-card-gradient {
  display: flex; align-items: center; justify-content: center;
  height: 130px; position: relative; text-decoration: none;
}
.dfs-card-emoji { font-size: 44px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.dfs-badge {
  position: absolute; top: 8px; right: 8px;
  padding: 2px 8px; border-radius: 6px;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  font-size: 12px;
}
.dfs-card-body { padding: 14px; }
.dfs-card-provider { font-size: 11px; font-weight: 600; color: var(--accent-light); text-transform: uppercase; letter-spacing: .4px; }
.dfs-card-title { font-size: 16px; font-weight: 700; margin: 4px 0; line-height: 1.25; }
.dfs-card-title a { color: var(--text); }
.dfs-card-title a:hover { color: var(--accent-light); }
.dfs-card-tagline { font-size: 12px; color: var(--text-dim); line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dfs-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.dfs-tag {
  padding: 3px 8px; border-radius: var(--radius-xs);
  background: var(--bg-elevated); border: 1px solid var(--border);
  font-size: 11px; font-weight: 600; color: var(--text-muted); white-space: nowrap;
}
.dfs-tag-win { color: var(--warning); border-color: rgba(253,203,110,.2); }
.dfs-tag-vol { color: var(--danger); border-color: rgba(255,107,107,.2); }

.dfs-slot-card.is-review-only { opacity: .94; }
.dfs-slot-card.is-review-only .dfs-card-gradient { filter: saturate(.88); }
.dfs-tag-playable { border-color: rgba(0,206,201,.25); color: var(--success); }
.dfs-tag-review { border-color: rgba(253,203,110,.22); color: var(--warning); }

.dfs-card-cta {
  display: block; text-align: center; padding: 10px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  background: var(--accent); color: #fff; border: none;
  transition: all var(--transition); text-decoration: none;
}
.dfs-card-cta:hover { background: #5a4bd6; color: #fff; transform: translateY(-1px); }

/* Grid layout */
.dfs-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.dfs-slots-grid .dfs-slot-card { width: 100%; }

/* ══════════════════ FILTER BAR ══════════════════ */
.dfs-filter-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.dfs-filter-btn {
  padding: 7px 16px; border-radius: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.dfs-filter-btn:hover { border-color: var(--border-hover); color: var(--text); }
.dfs-filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Load more */
.dfs-load-more-wrap { text-align: center; padding: 24px 0; }
.dfs-load-more {
  padding: 12px 32px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); font-size: 14px; font-weight: 600;
  transition: all var(--transition);
}
.dfs-load-more:hover { border-color: var(--accent); color: var(--accent); }
.dfs-load-more:disabled { opacity: .5; cursor: wait; }

/* ══════════════════ CAROUSEL (compact cards) ══════════════════ */
.dfs-carousel-track {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 0;
}
.dfs-carousel-track::-webkit-scrollbar { display: none; }
.dfs-carousel-card {
  flex-shrink: 0; width: 160px; scroll-snap-align: start;
  text-decoration: none; color: var(--text);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.dfs-carousel-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.dfs-carousel-vis { height: 90px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.dfs-carousel-info { padding: 8px 10px; }
.dfs-carousel-info strong { font-size: 13px; display: block; line-height: 1.2; }
.dfs-carousel-info span { font-size: 11px; color: var(--text-dim); }

/* ══════════════════ SLOT DETAIL ══════════════════ */
.dfs-breadcrumbs { padding: 16px 0 8px; font-size: 13px; color: var(--text-dim); }
.dfs-breadcrumbs a { color: var(--text-muted); }
.dfs-breadcrumbs span { margin: 0 6px; opacity: .4; }

.dfs-jump-nav {
  display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 0 20px;
  border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.dfs-jump-nav a {
  padding: 6px 14px; border-radius: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  transition: all var(--transition);
}
.dfs-jump-nav a:hover { border-color: var(--accent); color: var(--accent); }

/* Slot hero */
.dfs-slot-hero { display: flex; gap: 28px; align-items: flex-start; padding-bottom: 24px; }
.dfs-slot-hero-visual {
  width: 200px; height: 200px; flex-shrink: 0;
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.dfs-slot-hero-emoji { font-size: 80px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
.dfs-slot-title { font-size: 30px; font-weight: 900; line-height: 1.15; letter-spacing: -.3px; }
.dfs-slot-tagline { font-size: 15px; color: var(--text-muted); margin-top: 6px; }
.dfs-slot-stats { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.dfs-slot-stat { text-align: center; }
.dfs-slot-stat-val { font-size: 20px; font-weight: 800; display: block; }
.dfs-slot-stat-lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .4px; }

/* CTA */
.dfs-cta-primary {
  display: inline-block; padding: 14px 28px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 700;
  background: var(--accent); color: #fff; border: none;
  cursor: pointer; transition: all var(--transition); text-decoration: none;
  box-shadow: 0 4px 16px rgba(108,92,231,.3);
}
.dfs-cta-primary:hover { background: #5a4bd6; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(108,92,231,.4); }
.dfs-cta-soon { opacity: .5; cursor: default; }

/* Fav button */
.dfs-fav-btn {
  display: inline-block; padding: 10px 18px; margin-top: 10px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer; transition: all var(--transition);
}
.dfs-fav-btn:hover { border-color: var(--danger); color: var(--danger); }
.dfs-fav-btn.active { background: rgba(255,107,107,.1); border-color: var(--danger); color: var(--danger); }

/* Share row */
.dfs-share-row { display: flex; gap: 8px; margin-top: 10px; }
.dfs-share-btn {
  padding: 8px 14px; border-radius: var(--radius-xs);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.dfs-share-btn:hover { border-color: var(--border-hover); color: var(--text); }

/* Content blocks */
.dfs-answer-block { padding: 24px 0; }
.dfs-answer-block h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; line-height: 1.25; }
.dfs-answer-block h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.dfs-answer-block p { color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.dfs-answer-block p:last-child { margin-bottom: 0; }

/* Info table */
.dfs-info-table { width: 100%; border-collapse: collapse; }
.dfs-info-table td { padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--border); }
.dfs-info-table td:first-child { color: var(--text-dim); font-weight: 600; width: 160px; }
.dfs-rtp-note { color: var(--text-dim); font-weight: 400; }

/* Feature chips */
.dfs-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.dfs-chip {
  padding: 6px 14px; border-radius: 20px;
  background: var(--accent-glow); border: 1px solid rgba(108,92,231,.2);
  font-size: 13px; font-weight: 600; color: var(--accent-light);
}

/* Who plays / skips */
.dfs-whowho { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dfs-whowho-card {
  padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.dfs-whowho-card h3 { font-size: 14px; margin-bottom: 8px; }
.dfs-whowho-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.dfs-whowho-yes { border-color: rgba(0,206,201,.2); background: rgba(0,206,201,.04); }
.dfs-whowho-yes h3 { color: var(--success); }
.dfs-whowho-no { border-color: rgba(255,107,107,.2); background: rgba(255,107,107,.04); }
.dfs-whowho-no h3 { color: var(--danger); }

/* Pros & Cons */
.dfs-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dfs-pros, .dfs-cons { padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); }
.dfs-pros { border-color: rgba(0,206,201,.2); background: rgba(0,206,201,.04); }
.dfs-cons { border-color: rgba(255,107,107,.2); background: rgba(255,107,107,.04); }
.dfs-pros h3 { color: var(--success); font-size: 14px; margin-bottom: 10px; }
.dfs-cons h3 { color: var(--danger); font-size: 14px; margin-bottom: 10px; }
.dfs-pros ul, .dfs-cons ul { list-style: none; padding: 0; }
.dfs-pros li, .dfs-cons li { font-size: 14px; color: var(--text-muted); padding: 4px 0; line-height: 1.5; }
.dfs-pros li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.dfs-cons li::before { content: '✕ '; color: var(--danger); font-weight: 700; }

/* FAQ */
.dfs-faq-item { border-bottom: 1px solid var(--border); }
.dfs-faq-item summary {
  padding: 14px 0; font-size: 15px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.dfs-faq-item summary::-webkit-details-marker { display: none; }
.dfs-faq-item summary::after { content: '+'; font-size: 20px; color: var(--text-dim); transition: transform var(--transition); }
.dfs-faq-item[open] summary::after { content: '−'; }
.dfs-faq-item p { padding-bottom: 14px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Casino card */
.dfs-casino-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; margin-bottom: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); flex-wrap: wrap; gap: 12px;
  transition: border-color var(--transition);
}
.dfs-casino-card:hover { border-color: var(--border-hover); }
.dfs-casino-info h4 { font-size: 16px; font-weight: 700; }
.dfs-casino-info h4 a { color: var(--text); }
.dfs-casino-bonus { font-size: 13px; color: var(--success); font-weight: 600; }
.dfs-casino-rating { font-size: 13px; color: var(--warning); font-weight: 600; }
.dfs-casino-visit {
  padding: 8px 18px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 700;
  display: inline-block; transition: all var(--transition);
}
.dfs-casino-visit:hover { background: #5a4bd6; color: #fff; transform: translateY(-1px); }

/* ══════════════════ DEMO MODAL ══════════════════ */
.dfs-demo-modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.9); display: flex; align-items: center; justify-content: center;
}
.dfs-demo-modal {
  width: 95vw; max-width: 1100px; height: 85vh;
  background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.dfs-demo-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.dfs-demo-modal-header h3 { font-size: 15px; font-weight: 700; }
.dfs-demo-modal-actions { display: flex; gap: 6px; }
.dfs-demo-modal-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.dfs-demo-modal-icon svg { width: 16px; height: 16px; }
.dfs-demo-modal-icon:hover { border-color: var(--accent); color: var(--accent); }
.dfs-demo-modal-frame { flex: 1; position: relative; background: #000; }
.dfs-demo-modal-loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 14px;
}
body.dfs-modal-open { overflow: hidden; }

/* ══════════════════ SEO FOOTER ══════════════════ */
.dfs-seo-footer { padding: 24px 0; border-top: 1px solid var(--border); margin-top: 24px; }
.dfs-seo-footer-content { font-size: 13px; color: var(--text-dim); line-height: 1.7; }
.dfs-seo-footer-content h2, .dfs-seo-footer-content h3 { color: var(--text-muted); font-size: 15px; margin: 16px 0 8px; }
.dfs-seo-footer-content p { margin-bottom: 10px; }

/* ══════════════════ FOOTER ══════════════════ */
.dfs-footer { padding: 48px 0 24px; border-top: 1px solid var(--border); margin-top: 48px; }
.dfs-footer-grid-v2 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.dfs-footer-tagline { font-size: 13px; color: var(--text-dim); margin-top: 8px; line-height: 1.5; }
.dfs-footer-links { display: flex; flex-direction: column; gap: 6px; }
.dfs-footer-links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.dfs-footer-links a:hover { color: var(--text); }
.dfs-footer-bottom { font-size: 12px; color: var(--text-dim); padding-top: 24px; border-top: 1px solid var(--border); }
.dfs-footer-disclosure { margin-top: 8px; font-size: 11px; line-height: 1.5; }

/* Pillar page copy */
.dfs-pillar-copy { padding: 32px 0 24px; max-width: 720px; }
.dfs-pillar-copy h2 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.dfs-pillar-copy p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }

/* ══════════════════ PROMO CALLOUTS ══════════════════ */
/* Dark premium cards — gradient as accent, text always readable */

.dfs-promo-feed,
.dfs-promo-single,
.dfs-promo-sidebar,
.dfs-demo-promo-col {
  container-type: inline-size;
}

/* Core promo card */
.dfs-promo {
  display: block; border-radius: var(--radius-sm); overflow: hidden;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  border: 1px solid var(--border);
}
.dfs-promo:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.4); border-color: var(--border-hover); }

.dfs-promo-bg {
  position: relative;
  padding: clamp(14px, 4cqi, 22px) clamp(14px, 4cqi, 22px);
  min-height: clamp(70px, 16cqi, 120px);
  display: flex; align-items: center;
  /* The gradient is the base layer */
}

/* Heavy dark scrim — guarantees text readability on ANY gradient */
.dfs-promo-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,16,.88) 0%, rgba(10,8,16,.75) 50%, rgba(10,8,16,.6) 100%);
  z-index: 1;
}

/* Colored accent bar at top — shows the gradient color without hurting readability */
.dfs-promo-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  z-index: 2;
}

/* Content — horizontal layout: text left, button right */
.dfs-promo-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(10px, 3cqi, 20px);
  width: 100%;
}

.dfs-promo-text {
  flex: 1; min-width: 0;
}

.dfs-promo-title {
  font-size: clamp(14px, 3.8cqi, 20px);
  font-weight: 800; color: #fff; line-height: 1.2;
  display: block;
  letter-spacing: -.2px;
}

.dfs-promo-sub {
  font-size: clamp(11px, 2.8cqi, 14px);
  color: var(--text-muted); line-height: 1.3;
  display: block; margin-top: 3px;
}

.dfs-promo-btn {
  flex-shrink: 0;
  padding: clamp(7px, 1.8cqi, 12px) clamp(14px, 3.5cqi, 24px);
  border-radius: clamp(6px, 1.2cqi, 10px);
  background: var(--accent); color: #fff;
  font-size: clamp(11px, 2.5cqi, 14px);
  font-weight: 700; white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.dfs-promo:hover .dfs-promo-btn { background: #5a4bd6; transform: translateX(2px); }

/* Narrow containers (sidebar): stack vertically */
@container (max-width: 220px) {
  .dfs-promo-content { flex-direction: column; align-items: flex-start; }
  .dfs-promo-btn { width: 100%; text-align: center; }
}

/* Feed grid */
.dfs-promo-feed {
  display: grid; gap: clamp(8px, 2cqi, 12px);
  grid-template-columns: 1fr;
}
@container (min-width: 500px) {
  .dfs-promo-feed { grid-template-columns: repeat(2, 1fr); }
}
@container (min-width: 900px) {
  .dfs-promo-feed { grid-template-columns: repeat(4, 1fr); }
}

.dfs-promo-single { margin: 16px 0; }

/* Sidebar column next to demo modal */
.dfs-promo-sidebar,
.dfs-demo-promo-col {
  display: flex; flex-direction: column; gap: 10px;
  width: clamp(160px, 15vw, 220px); flex-shrink: 0;
}

/* Demo wrapper */
.dfs-demo-with-promos {
  display: flex; gap: 16px; align-items: flex-start; justify-content: center;
  max-width: 1500px; width: 100%; padding: 0 16px;
}
.dfs-demo-with-promos .dfs-demo-modal { flex: 1; max-width: 1100px; }

/* ══════════════════ MOBILE NAV ══════════════════ */
.dfs-desktop-only { display: flex; }
.dfs-mobile-actions { display: none; gap: 4px; align-items: center; }
.dfs-mobile-search-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color var(--transition);
}
.dfs-mobile-search-btn:hover { border-color: var(--accent); }
.dfs-hamburger {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color var(--transition);
}
.dfs-hamburger:hover { border-color: var(--accent); }
.dfs-hamburger-lines { display: flex; flex-direction: column; gap: 4px; width: 18px; }
.dfs-hamburger-lines span {
  display: block; height: 2px; width: 100%;
  background: var(--text-muted); border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
.dfs-hamburger-lines.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.dfs-hamburger-lines.open span:nth-child(2) { opacity: 0; }
.dfs-hamburger-lines.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.dfs-mobile-nav-overlay {
  position: fixed; inset: 0; top: 60px; z-index: 99;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  animation: fadeIn .15s ease;
}
@keyframes fadeIn { from { opacity: 0; } }
.dfs-mobile-nav {
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 8px 0; box-shadow: var(--shadow-lg);
}
.dfs-mobile-nav-link {
  display: block; padding: 14px 24px;
  font-size: 16px; font-weight: 600; color: var(--text-muted);
  transition: all var(--transition); text-decoration: none;
}
.dfs-mobile-nav-link:hover, .dfs-mobile-nav-link.active {
  background: var(--bg-hover); color: var(--text);
}
.dfs-mobile-nav-link.active { color: var(--accent-light); border-left: 3px solid var(--accent); }

/* Active nav state (desktop) */
.dfs-nav a.active { color: var(--accent-light); background: var(--accent-glow); }

/* Search active result */
.dfs-search-item-active { background: var(--bg-hover); }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 768px) {
  .dfs-desktop-only { display: none !important; }
  .dfs-mobile-actions { display: flex; }
  .dfs-cmd-trigger { display: none; }
  .dfs-promo-sidebar, .dfs-demo-promo-col { display: none; }
  .dfs-demo-with-promos { padding: 0; }
  .dfs-promo-feed { grid-template-columns: repeat(2, 1fr); }
  .dfs-hero-title { font-size: 26px; }
  .dfs-hero-stats { gap: 20px; }
  .dfs-stat-num { font-size: 22px; }
  .dfs-header-inner { gap: 8px; }
  .dfs-slot-hero { flex-direction: column; }
  .dfs-slot-hero-visual { width: 140px; height: 140px; }
  .dfs-slot-title { font-size: 24px; }
  .dfs-slot-stats { gap: 12px; }
  .dfs-slot-stat-val { font-size: 17px; }
  .dfs-whowho, .dfs-proscons { grid-template-columns: 1fr; }
  .dfs-footer-grid-v2 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dfs-slots-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
  .dfs-jump-nav { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .dfs-jump-nav::-webkit-scrollbar { display: none; }
  .dfs-jump-nav a { white-space: nowrap; flex-shrink: 0; }
  .dfs-cmd-modal { margin-top: -40px; max-height: 80vh; }
}
@media (max-width: 480px) {
  .dfs-hero-title { font-size: 22px; }
  .dfs-hero-stats { flex-wrap: wrap; gap: 16px; }
  .dfs-slot-hero-visual { width: 100px; height: 100px; }
  .dfs-slot-hero-emoji { font-size: 48px; }
  .dfs-slot-title { font-size: 20px; }
  .dfs-slots-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dfs-slot-card { width: 100%; }
  .dfs-card-gradient { height: 100px; }
  .dfs-card-emoji { font-size: 32px; }
}

/* ══════════════════ SWIPE DISCOVER — MOBILE ONLY ══════════════════ */
.swipe-discover { display: none; }

@media (max-width: 768px) {
  .swipe-discover {
    display: block;
    padding: 12px 16px 8px;
    -webkit-user-select: none;
    user-select: none;
  }

  .swipe-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px;
  }
  .swipe-title {
    font-size: 15px; font-weight: 800; color: var(--text);
    letter-spacing: -.2px;
  }
  .swipe-counter {
    font-size: 12px; color: var(--text-dim); font-weight: 600;
  }

  .swipe-stage {
    position: relative;
    height: 320px;
    perspective: 800px;
  }

  .swipe-card {
    position: absolute; inset: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }
  .swipe-card-next {
    transform: scale(.95) translateY(8px);
    opacity: .5;
    z-index: 0;
  }
  .swipe-card-active {
    z-index: 2;
    will-change: transform;
    touch-action: pan-y;
  }
  .swipe-card-inner {
    display: flex; flex-direction: column;
    height: 100%;
    text-decoration: none; color: inherit;
  }
  .swipe-card-gradient {
    height: 140px; min-height: 140px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .swipe-card-emoji {
    font-size: 64px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  }
  .swipe-hot-badge {
    position: absolute; top: 10px; right: 12px;
    font-size: 20px;
  }

  .swipe-card-body {
    flex: 1; padding: 14px 16px 12px;
    display: flex; flex-direction: column;
  }
  .swipe-card-name {
    font-size: 19px; font-weight: 800; color: var(--text);
    line-height: 1.2; margin: 0 0 3px;
  }
  .swipe-card-provider {
    font-size: 13px; color: var(--text-dim); margin: 0 0 12px;
    font-weight: 600;
  }

  .swipe-card-stats {
    display: flex; gap: 16px; margin-bottom: 10px;
  }
  .swipe-stat-val {
    font-size: 15px; font-weight: 800; color: var(--text);
    display: block;
  }
  .swipe-stat-lbl {
    font-size: 10px; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: .4px;
    font-weight: 600;
  }

  .swipe-card-tagline {
    font-size: 13px; color: var(--text-muted); line-height: 1.5;
    margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
  }

  /* Swipe labels */
  .swipe-label {
    position: absolute; top: 20px; z-index: 10;
    padding: 6px 16px; border-radius: 8px;
    font-size: 18px; font-weight: 900; letter-spacing: 1px;
    pointer-events: none;
    transition: opacity .1s;
  }
  .swipe-label-like {
    right: 16px;
    color: #00cec9; border: 3px solid #00cec9;
    transform: rotate(12deg);
  }
  .swipe-label-nope {
    left: 16px;
    color: #ff6b6b; border: 3px solid #ff6b6b;
    transform: rotate(-12deg);
  }

  /* Action buttons */
  .swipe-actions {
    display: flex; justify-content: center; align-items: center;
    gap: 20px; padding: 12px 0 4px;
  }
  .swipe-btn {
    width: 52px; height: 52px; border-radius: 50%;
    border: 2px solid var(--border-hover);
    background: var(--bg-card);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; cursor: pointer;
    transition: all .15s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .swipe-btn:active { transform: scale(.9); }
  .swipe-btn-skip {
    color: #ff6b6b; width: 46px; height: 46px; font-size: 18px;
  }
  .swipe-btn-skip:active { border-color: #ff6b6b; background: rgba(255,107,107,.1); }
  .swipe-btn-play {
    color: var(--accent-light);
    border-color: var(--accent);
    background: var(--accent-glow);
    text-decoration: none;
  }
  .swipe-btn-play:active { background: rgba(108,92,231,.2); }
  .swipe-btn-save {
    color: #00cec9; width: 46px; height: 46px; font-size: 18px;
  }
  .swipe-btn-save:active { border-color: #00cec9; background: rgba(0,206,201,.1); }

  .swipe-hint {
    text-align: center; font-size: 11px;
    color: var(--text-dim); margin: 6px 0 0;
  }

  /* Toast */
  .swipe-toast {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px 24px; border-radius: 20px;
    font-size: 14px; font-weight: 800;
    pointer-events: none; z-index: 20;
    animation: swipe-toast-in .3s ease forwards;
  }
  .swipe-toast-save {
    background: rgba(0,206,201,.15); color: #00cec9;
    border: 1px solid rgba(0,206,201,.3);
  }
  .swipe-toast-skip {
    background: rgba(255,107,107,.1); color: #ff6b6b;
    border: 1px solid rgba(255,107,107,.2);
  }
  @keyframes swipe-toast-in {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(.8); }
    30% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
  }

  /* Empty state */
  .swipe-empty {
    text-align: center; padding: 48px 16px;
    background: var(--bg-card); border-radius: 16px;
    border: 1px solid var(--border);
  }
}

/* ═══ AWARDS ═══ */

.dfs-awards-hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, rgba(108,92,231,.12) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.dfs-awards-hero-title { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.dfs-awards-hero-sub { color: var(--text-muted); font-size: 15px; max-width: 640px; line-height: 1.6; }

/* Month navigation */
.dfs-awards-month-nav {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px;
}
.dfs-awards-nav-link {
  padding: 8px 16px; border-radius: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--accent-light);
  text-decoration: none; transition: var(--transition);
}
.dfs-awards-nav-link:hover { border-color: var(--accent); background: var(--accent-glow); }

/* Month header with "see all" link */
.dfs-awards-month-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.dfs-awards-month-header h2 { font-size: 22px; font-weight: 800; margin: 0; }
.dfs-awards-see-all {
  font-size: 13px; color: var(--accent); font-weight: 600; text-decoration: none;
}

/* Award card grid */
.dfs-award-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-bottom: 24px;
}

/* Award card */
.dfs-award-card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); position: relative;
}
.dfs-award-card:hover { border-color: rgba(108,92,231,.3); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.dfs-award-card-ribbon {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(108,92,231,.15), rgba(108,92,231,.05));
  border-bottom: 1px solid var(--border);
}
.dfs-award-card-emoji { font-size: 20px; }
.dfs-award-card-category { font-size: 12px; font-weight: 700; color: var(--accent-light); text-transform: uppercase; letter-spacing: .5px; }

.dfs-award-card-visual {
  display: flex; align-items: center; justify-content: center;
  height: 100px; text-decoration: none;
}
.dfs-award-card-slot-emoji { font-size: 48px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.3)); }

.dfs-award-card-body { padding: 14px; }
.dfs-award-card-provider { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; }
.dfs-award-card-title { font-size: 16px; font-weight: 700; margin: 4px 0 8px; }
.dfs-award-card-title a { color: var(--text); text-decoration: none; }
.dfs-award-card-title a:hover { color: var(--accent-light); }

.dfs-award-card-stats {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px;
  font-size: 11px; color: var(--text-muted);
}
.dfs-award-card-stats span {
  padding: 3px 8px; border-radius: 6px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
}

.dfs-award-card-rating { font-size: 12px; color: #ffd700; margin-bottom: 10px; }

/* Provider award card specifics */
.dfs-award-card-top-slots {
  display: flex; flex-direction: column; gap: 4px; margin: 8px 0 12px;
}
.dfs-award-card-top-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; }
.dfs-award-card-top-slot {
  font-size: 13px; color: var(--text-muted); text-decoration: none;
  padding: 4px 0; transition: color .15s;
}
.dfs-award-card-top-slot:hover { color: var(--accent-light); }

/* Award detail section (card + writeup side by side) */
.dfs-award-detail-section {
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.dfs-award-detail-section:last-child { border-bottom: none; }
.dfs-award-detail-grid {
  display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: start;
}

/* Slot of the Month hero */
.dfs-sotm-hero {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid rgba(108,92,231,.2); overflow: hidden;
  box-shadow: 0 0 40px rgba(108,92,231,.08);
}
.dfs-sotm-visual {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px; position: relative; min-height: 200px;
}
.dfs-sotm-trophy {
  font-size: 40px; margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(255,215,0,.4));
  animation: trophyFloat 3s ease-in-out infinite;
}
@keyframes trophyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.dfs-sotm-emoji { font-size: 64px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.dfs-sotm-content { padding: 28px 28px 28px 0; }
.dfs-sotm-label {
  font-size: 12px; font-weight: 700; color: var(--accent-light);
  text-transform: uppercase; letter-spacing: 1px;
}
.dfs-sotm-name { font-size: 28px; font-weight: 900; margin: 6px 0 4px; }
.dfs-sotm-provider { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.dfs-sotm-stats {
  display: flex; gap: 24px; margin-bottom: 16px; flex-wrap: wrap;
}
.dfs-sotm-stats .dfs-stat-num { font-size: 18px; font-weight: 800; display: block; }
.dfs-sotm-stats .dfs-stat-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; }
.dfs-sotm-tagline { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin-bottom: 16px; }
.dfs-sotm-cta {
  display: inline-block; padding: 10px 24px; border-radius: 10px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: var(--transition);
}
.dfs-sotm-cta:hover { background: var(--accent-light); transform: translateY(-1px); }

/* Top 10 list */
.dfs-top10-list {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  margin-top: 16px;
}
.dfs-top10-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; text-decoration: none; color: var(--text);
  transition: background .15s;
}
.dfs-top10-row:hover { background: rgba(108,92,231,.06); }
.dfs-top10-row:not(:last-child) { border-bottom: 1px solid var(--border); }

.dfs-top10-rank {
  width: 36px; text-align: center; font-size: 14px; font-weight: 700;
  color: var(--text-dim); flex-shrink: 0;
}
.dfs-top10-rank-top { font-size: 20px; }

.dfs-top10-vis {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.dfs-top10-info { flex: 1; min-width: 0; }
.dfs-top10-info strong { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dfs-top10-info span { font-size: 12px; color: var(--text-dim); }

.dfs-top10-stats { display: flex; gap: 4px; flex-shrink: 0; }
.dfs-top10-rating { font-size: 12px; color: #ffd700; flex-shrink: 0; margin-left: 4px; }

/* Jump navigation */
.dfs-awards-jump-nav {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  padding: 16px; background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.dfs-awards-jump-label { font-size: 12px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; }

/* Archive grid */
.dfs-awards-archive-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.dfs-awards-archive-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 12px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  text-decoration: none; transition: var(--transition);
  position: relative;
}
.dfs-awards-archive-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.dfs-awards-archive-current { border-color: rgba(108,92,231,.3); background: linear-gradient(135deg, rgba(108,92,231,.08), transparent); }
.dfs-awards-archive-month { font-size: 14px; font-weight: 700; color: var(--text); }
.dfs-awards-archive-year { font-size: 12px; color: var(--text-dim); }
.dfs-awards-archive-badge {
  position: absolute; top: 6px; right: 6px;
  padding: 2px 6px; border-radius: 4px;
  background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 700; text-transform: uppercase;
}

/* Award badge (inline on slot/provider pages) */
.dfs-award-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,215,0,.12), rgba(108,92,231,.08));
  border: 1px solid rgba(255,215,0,.2);
  text-decoration: none; transition: var(--transition);
}
.dfs-award-badge:hover { border-color: rgba(255,215,0,.4); transform: translateY(-1px); }
.dfs-award-badge-sm { padding: 4px 8px; font-size: 11px; }
.dfs-award-badge-lg { padding: 8px 16px; font-size: 14px; }
.dfs-award-badge-emoji { font-size: 16px; }
.dfs-award-badge-text strong { display: block; font-size: 12px; color: #ffd700; }
.dfs-award-badge-text span { font-size: 10px; color: var(--text-dim); }

.dfs-award-badge-inline {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 6px;
  background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.15);
  font-size: 11px; font-weight: 600; color: #ffd700;
  text-decoration: none; white-space: nowrap;
}
.dfs-award-badge-inline:hover { background: rgba(255,215,0,.15); }

/* Homepage awards section */
.dfs-awards-home-section {
  background: linear-gradient(180deg, rgba(108,92,231,.06) 0%, transparent 100%);
  border-top: 1px solid rgba(108,92,231,.1);
  border-bottom: 1px solid rgba(108,92,231,.1);
}
.dfs-awards-home-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px; margin-top: 16px;
}
.dfs-awards-home-card {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  text-decoration: none; transition: var(--transition);
}
.dfs-awards-home-card:hover { border-color: rgba(108,92,231,.3); transform: translateY(-1px); }
.dfs-awards-home-emoji { font-size: 28px; flex-shrink: 0; }
.dfs-awards-home-info { min-width: 0; }
.dfs-awards-home-cat { font-size: 10px; color: var(--accent-light); text-transform: uppercase; font-weight: 700; letter-spacing: .5px; }
.dfs-awards-home-name { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.dfs-awards-home-sub { font-size: 11px; color: var(--text-dim); }

/* Responsive */
@media (max-width: 768px) {
  .dfs-awards-hero-title { font-size: 24px; }
  .dfs-award-detail-grid { grid-template-columns: 1fr; }
  .dfs-sotm-hero { grid-template-columns: 1fr; }
  .dfs-sotm-content { padding: 20px; }
  .dfs-sotm-visual { min-height: 150px; }
  .dfs-sotm-name { font-size: 22px; }
  .dfs-top10-stats { display: none; }
  .dfs-awards-home-grid { grid-template-columns: 1fr 1fr; }
}




/* WordPress theme header info is above this block */
body.admin-bar .dfs-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .dfs-header { top: 46px; } }

.screen-reader-text { position:absolute; left:-9999px; }

.dfs-main { position: relative; z-index: 1; min-height: 60vh; }
.dfs-page-intro { padding: 24px 0 4px; }
.dfs-page-title { font-size: 30px; font-weight: 900; line-height: 1.2; margin: 0 0 8px; }
.dfs-page-sub { font-size: 15px; color: var(--text-muted); }

.dfs-breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; padding:18px 0 8px; font-size:13px; color:var(--text-dim); }
.dfs-breadcrumbs span { color: var(--text-dim); }

.dfs-answer-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 0 0 18px;
  box-shadow: var(--shadow-sm);
}
.dfs-answer-block h2 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.dfs-answer-block h3 { font-size: 18px; font-weight: 800; margin: 18px 0 8px; }
.dfs-answer-block p, .dfs-answer-block li { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.dfs-answer-block ul, .dfs-answer-block ol { padding-left: 20px; margin: 8px 0; }
.dfs-answer-block table { width: 100%; border-collapse: collapse; }
.dfs-answer-block table td, .dfs-answer-block table th { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.dfs-answer-block table td:first-child, .dfs-answer-block table th:first-child { color: var(--text-dim); width: 34%; }

.dfs-tag-link {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 8px 14px; border-radius: 999px; background: var(--bg-card);
  border: 1px solid var(--border); color: var(--text-muted);
  font-size: 13px; font-weight: 600;
}
.dfs-tag-link:hover { border-color: var(--accent); color: var(--text); }

.dfs-hero-stats > div { min-width: 70px; }

.dfs-slider-title { font-size: 20px; font-weight: 800; margin-bottom: 14px; }

.dfs-info-table { width: 100%; border-collapse: collapse; }
.dfs-info-table tr:last-child td { border-bottom: none; }

.dfs-footer { margin-top: 40px; padding: 36px 0 26px; border-top: 1px solid var(--border); background: rgba(0,0,0,.12); }
.dfs-footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.dfs-footer-tagline { font-size: 14px; color: var(--text-dim); line-height: 1.7; max-width: 280px; }
.dfs-footer-links { display:flex; flex-direction:column; gap: 8px; }
.dfs-footer-links a { font-size: 13px; color: var(--text-muted); }
.dfs-footer-links a:hover { color: var(--text); }
.dfs-footer-bottom { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-dim); }
.dfs-footer-disclosure { margin-top: 8px; line-height: 1.7; }

.dfs-desktop-only { display: flex; }
.dfs-mobile-actions { display: none; margin-left: auto; align-items: center; gap: 10px; }
.dfs-mobile-search-btn, .dfs-hamburger {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--bg-card); color: var(--text); display:flex; align-items:center; justify-content:center;
}
.dfs-hamburger-lines { display:flex; flex-direction:column; gap:4px; }
.dfs-hamburger-lines span { width: 18px; height: 2px; background: currentColor; display:block; transition: transform .2s, opacity .2s; }
.dfs-hamburger-lines.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.dfs-hamburger-lines.open span:nth-child(2) { opacity: 0; }
.dfs-hamburger-lines.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.dfs-mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 150; background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px); display:flex; justify-content:flex-end;
}
.dfs-mobile-nav {
  width: min(84vw, 360px); height: 100%; background: var(--bg-card);
  padding: 76px 20px 20px; border-left: 1px solid var(--border);
  display:flex; flex-direction:column; gap: 8px;
}
.dfs-mobile-nav-link {
  padding: 12px 14px; border-radius: 12px; background: var(--bg-elevated); color: var(--text);
  border: 1px solid var(--border);
}

.dfs-slot-hero {
  display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: center;
  padding: 18px 0 10px;
}
.dfs-slot-hero-visual {
  min-height: 220px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-md);
}
.dfs-slot-hero-emoji { font-size: 78px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }
.dfs-slot-title { font-size: 34px; font-weight: 900; line-height: 1.15; margin-top: 8px; }
.dfs-slot-tagline { font-size: 16px; color: var(--text-muted); margin-top: 8px; }
.dfs-slot-stats { display:flex; flex-wrap:wrap; gap: 10px; margin: 18px 0; }
.dfs-slot-stat {
  min-width: 110px; padding: 12px 14px; background: var(--bg-card); border:1px solid var(--border);
  border-radius: 12px;
}
.dfs-slot-stat-val { display:block; font-size: 18px; font-weight: 800; color: var(--text); }
.dfs-slot-stat-lbl { display:block; font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; }

.dfs-jump-nav {
  display:flex; gap:8px; flex-wrap:wrap; padding: 12px 0 18px; border-bottom: 1px solid var(--border); margin-bottom: 18px;
}
.dfs-jump-nav a {
  padding: 7px 12px; border-radius: 999px; background: var(--bg-card); border:1px solid var(--border);
  color: var(--text-muted); font-size: 12px; font-weight: 700;
}

.dfs-demo-launch {
  display:inline-flex; align-items:center; gap:10px; padding: 12px 18px; border-radius: 12px;
  background: var(--accent); color: #fff; border:none; font-weight: 800; font-size: 14px;
}
.dfs-demo-launch.secondary {
  background: var(--bg-card); color: var(--text); border: 1px solid var(--border);
}
.dfs-demo-inline-actions { display:flex; gap: 10px; flex-wrap:wrap; }
.dfs-fav-btn {
  display:inline-flex; align-items:center; gap:10px; padding: 12px 18px; border-radius:12px;
  background: var(--bg-card); color: var(--text); border: 1px solid var(--border); font-weight: 800; font-size: 14px;
}
.dfs-fav-btn.active { border-color: rgba(255,107,107,.4); color: var(--danger); }

.dfs-demo-modal-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.75);
  display:flex; align-items:center; justify-content:center; padding: 20px;
}
.dfs-demo-with-promos {
  width: min(1400px, 100%); display:grid; grid-template-columns: 280px 1fr 280px; gap: 16px; align-items: stretch;
}
.dfs-demo-promo-col { display:flex; flex-direction:column; gap: 12px; }
.dfs-demo-modal {
  background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius); overflow:hidden;
  box-shadow: var(--shadow-lg);
}
.dfs-demo-modal-header {
  display:flex; align-items:center; justify-content:space-between; gap: 10px; padding: 14px 16px; border-bottom:1px solid var(--border);
}
.dfs-demo-modal-header h3 { font-size: 16px; font-weight: 800; }
.dfs-demo-modal-actions { display:flex; gap: 8px; }
.dfs-demo-modal-icon {
  width: 40px; height: 40px; border-radius: 10px; border:1px solid var(--border); background: var(--bg-elevated);
  color: var(--text); display:flex; align-items:center; justify-content:center;
}
.dfs-demo-modal-icon svg { width: 18px; height: 18px; }
.dfs-demo-modal-frame { aspect-ratio: 16 / 9; position: relative; background: #000; }
.dfs-demo-modal-loading {
  position:absolute; inset: 0; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700;
}
body.dfs-modal-open { overflow:hidden; }

.dfs-promo-feed, .dfs-promo-single { display:block; }
.dfs-promo-feed { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.dfs-promo {
  display:block; text-decoration:none; color:#fff; min-height: 128px;
}
.dfs-promo-bg {
  position:relative; min-height: 128px; border-radius: var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-sm);
}
.dfs-promo-scrim { position:absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.52)); }
.dfs-promo-accent { position:absolute; top:0; left:0; right:0; height: 4px; }
.dfs-promo-content { position:relative; z-index:2; display:flex; align-items:flex-end; justify-content:space-between; gap:10px; min-height:128px; padding:18px; }
.dfs-promo-title { display:block; font-size: 18px; font-weight: 800; line-height: 1.15; color:#fff; }
.dfs-promo-sub { display:block; margin-top: 5px; font-size: 13px; color: rgba(255,255,255,.8); }
.dfs-promo-btn { padding: 8px 12px; border-radius: 10px; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); font-size: 13px; font-weight:700; color:#fff; white-space: nowrap; }

.dfs-tool-grid {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.dfs-tool-card {
  display:block; padding: 20px; background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius);
  color: var(--text); text-decoration:none; transition: transform .15s, border-color .15s;
}
.dfs-tool-card:hover { transform: translateY(-2px); border-color: var(--border-hover); }
.dfs-tool-card strong { display:block; font-size: 17px; margin-bottom: 6px; }
.dfs-tool-card span { color: var(--text-dim); font-size: 14px; }

.dfs-letter-group { margin-bottom: 20px; }
.dfs-letter-head { font-size: 18px; font-weight: 800; color: var(--accent); margin: 0 0 8px; padding-bottom: 6px; border-bottom: 2px solid var(--accent); }

.dfs-entity-row {
  display:flex; align-items:center; gap: 12px; padding: 10px 14px; background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius-sm); color: var(--text);
}
.dfs-entity-row + .dfs-entity-row { margin-top: 8px; }

.dfs-theme-grid, .dfs-glossary-grid, .dfs-vs-grid, .dfs-video-grid {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.dfs-theme-card, .dfs-glossary-card, .dfs-vs-card, .dfs-video-card {
  display:block; padding: 18px; background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius); color: var(--text); text-decoration:none;
}
.dfs-video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 12px; margin-bottom: 10px; background:#000; }
.dfs-mini-metadata { display:flex; gap: 10px; flex-wrap:wrap; margin-top: 8px; font-size: 12px; color: var(--text-dim); }

.dfs-side-by-side {
  display:grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.dfs-compare-table { width:100%; border-collapse: collapse; }
.dfs-compare-table th, .dfs-compare-table td { padding: 12px 14px; border-bottom:1px solid var(--border); text-align:left; }
.dfs-compare-table th { color: var(--text-dim); font-size: 12px; text-transform: uppercase; letter-spacing: .4px; }

.dfs-chart-wrap {
  background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius); padding: 18px;
}
.dfs-map-svg { width: 100%; height: auto; display:block; }
.dfs-map-tooltip {
  position: fixed; z-index: 50; pointer-events: none; padding: 10px 12px; border-radius: 10px;
  background: rgba(15,13,21,.96); border:1px solid var(--border); color: var(--text); font-size: 12px; box-shadow: var(--shadow-md);
  transform: translate(12px, 12px); display:none;
}
.dfs-map-tooltip strong { display:block; font-size: 13px; margin-bottom: 2px; }

.dfs-inline-grid-2 {
  display:grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.dfs-status-pill {
  display:inline-flex; align-items:center; gap:8px; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: var(--bg-elevated); color: var(--text);
}
.dfs-status-pill.good { color: var(--success); border:1px solid rgba(0,206,201,.15); }
.dfs-status-pill.warn { color: var(--warning); border:1px solid rgba(253,203,110,.15); }
.dfs-status-pill.bad { color: var(--danger); border:1px solid rgba(255,107,107,.15); }

.dfs-swipe-widget {
  display:none; margin-top: 8px;
}
.dfs-swipe-card-wrap { position:relative; height: 380px; }
.dfs-swipe-card, .dfs-swipe-card-under {
  position:absolute; inset: 0; border-radius: var(--radius); overflow:hidden; border:1px solid var(--border);
  background: var(--bg-card);
}
.dfs-swipe-card-under { transform: scale(.97) translateY(10px); opacity:.55; }
.dfs-swipe-card-top { height: 58%; display:flex; align-items:center; justify-content:center; }
.dfs-swipe-card-top span { font-size: 72px; filter: drop-shadow(0 10px 20px rgba(0,0,0,.35)); }
.dfs-swipe-card-body { padding: 18px; }
.dfs-swipe-actions { display:flex; justify-content:center; gap: 14px; margin-top: 14px; }
.dfs-swipe-btn {
  width: 58px; height: 58px; border-radius: 50%; border:1px solid var(--border); background: var(--bg-card); color:var(--text); font-size: 22px;
}
.dfs-swipe-label {
  position:absolute; top: 20px; padding: 8px 16px; border-radius: 10px; font-size: 14px; font-weight:800; text-transform: uppercase; border:2px solid currentColor;
  background: rgba(0,0,0,.25); backdrop-filter: blur(4px); opacity: 0;
}
.dfs-swipe-like { left: 20px; color: #00cec9; transform: rotate(-8deg); }
.dfs-swipe-nope { right: 20px; color: #ff6b6b; transform: rotate(8deg); }
.dfs-swipe-empty {
  padding: 26px; text-align:center; background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius);
}
.dfs-quiz-progress { display:flex; gap:4px; margin-bottom:24px; }
.dfs-quiz-progress > span { flex:1; height: 4px; border-radius:2px; background: var(--bg-card); }
.dfs-quiz-progress > span.active { background: var(--accent); }
.dfs-quiz-option {
  width:100%; text-align:left; padding: 14px 18px; border-radius: 10px; font-size: 15px; font-weight:600; cursor:pointer;
  background: var(--bg-card); border:1px solid var(--border); color: var(--text);
}
.dfs-quiz-option + .dfs-quiz-option { margin-top: 8px; }

.dfs-sim-chart { width:100%; height: 260px; background: var(--bg-card); border:1px solid var(--border); border-radius: var(--radius); }

.dfs-legal-copy { max-width: 760px; margin: 0 auto; padding: 24px 20px 48px; }

@media (max-width: 1024px) {
  .dfs-footer-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .dfs-demo-with-promos { grid-template-columns: 1fr; }
  .dfs-demo-promo-col { display:none; }
  .dfs-slot-hero { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .dfs-desktop-only, .dfs-nav, .dfs-header-fav { display:none !important; }
  .dfs-cmd-trigger { display:none; }
  .dfs-mobile-actions { display:flex; }
  .dfs-hero-title { font-size: 30px; }
  .dfs-hero-stats { gap: 18px; }
  .dfs-side-by-side, .dfs-inline-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .dfs-container { padding: 0 16px; }
  .dfs-header-inner { padding: 0 16px; gap: 10px; }
  .dfs-page-title, .dfs-slot-title { font-size: 28px; }
  .dfs-answer-block { padding: 18px; }
  .dfs-footer-grid-v2 { grid-template-columns: 1fr; }
  .dfs-slot-hero-visual { min-height: 180px; }
  .dfs-swipe-widget { display:block; }
  .dfs-carousel-track .dfs-slot-card, .dfs-slider .dfs-slot-card { width: 220px; }
}


/* ══════════════════ WordPress refinement pass ══════════════════ */
.dfs-cmd-trigger {
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
}
.dfs-cmd-trigger-text { flex: 1; overflow: hidden; white-space: nowrap; }
.dfs-search-empty { padding: 20px; text-align: center; color: var(--text-dim); font-size: 13px; }
.dfs-footer-heading { font-size: 12px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.dfs-section-title { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.dfs-section-title-sm { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.dfs-link-pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.dfs-provider-pill {
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.dfs-provider-pill:hover { border-color: var(--border-hover); color: var(--text); }
.dfs-provider-pill-all { background: var(--accent-glow); border-color: rgba(108,92,231,.2); color: var(--accent-light); }
.dfs-pill-muted { color: var(--text-dim); font-weight: 400; }
.dfs-compact-section { padding: 16px 0; }
.dfs-compact-section-browse { padding-bottom: 20px; }
.dfs-compact-heading { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.dfs-tools-split { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }
.dfs-tools-split-quiz { flex: 1 1 300px; }
.dfs-tools-split-strip { flex: 2 1 400px; }
.dfs-alpha-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 20px; }
.dfs-alpha-nav a {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 13px; font-weight: 600;
}
.dfs-provider-letter-section { margin-bottom: 20px; }
.dfs-provider-letter-heading {
  font-size: 18px; font-weight: 800; color: var(--accent); margin: 0 0 8px;
  padding-bottom: 6px; border-bottom: 2px solid var(--accent);
}
.dfs-provider-list { display: flex; flex-direction: column; gap: 2px; }
.dfs-provider-list-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); transition: border-color var(--transition);
}
.dfs-provider-list-item:hover { border-color: var(--border-hover); color: var(--text); }
.dfs-provider-list-name { font-size: 14px; font-weight: 600; flex: 1; }
.dfs-provider-list-founded { font-size: 12px; color: var(--text-dim); }
.dfs-provider-list-count { font-size: 12px; color: var(--accent-light); font-weight: 600; }
.dfs-provider-list-arrow { color: var(--text-dim); font-size: 14px; }
.dfs-provider-hero { padding: 24px 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.dfs-provider-meta-row { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.dfs-rich-copy { color: var(--text-muted); line-height: 1.7; }
.dfs-rich-copy h2, .dfs-rich-copy h3, .dfs-rich-copy h4 { color: var(--text); margin: 18px 0 10px; }
.dfs-rich-copy p + p { margin-top: 12px; }
.dfs-vs-hero { padding: 24px 0 20px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.dfs-vs-hero-title { font-size: 30px; font-weight: 900; line-height: 1.2; }
.dfs-vs-hero-sub { font-size: 15px; color: var(--text-muted); margin-top: 8px; line-height: 1.6; max-width: 640px; }
.dfs-vs-provider-section { margin-bottom: 40px; }
.dfs-vs-provider-heading { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.dfs-vs-provider-heading a { color: inherit; }
.dfs-vs-provider-heading span { font-size: 14px; font-weight: 400; color: var(--text-dim); }
.dfs-vs-provider-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 12px; }
.dfs-vs-provider-card {
  display: block; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color var(--transition);
}
.dfs-vs-provider-card:hover { border-color: var(--border-hover); color: inherit; }
.dfs-vs-provider-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dfs-vs-provider-card-head span { font-size: 14px; font-weight: 700; color: var(--text); }
.dfs-vs-chip {
  font-size: 11px; font-weight: 700; color: var(--text-dim); padding: 2px 8px;
  background: var(--bg-elevated); border-radius: 10px; flex-shrink: 0;
}
.dfs-vs-provider-card-sub {
  display: flex; justify-content: space-between; margin-top: 6px; font-size: 12px; color: var(--text-dim);
}

@media (max-width: 720px) {
  .dfs-provider-list-item { flex-wrap: wrap; align-items: flex-start; }
  .dfs-provider-list-name { width: 100%; }
  .dfs-vs-provider-grid { grid-template-columns: 1fr; }
  .dfs-vs-provider-card-head { gap: 8px; }
  .dfs-vs-provider-card-head span { font-size: 13px; }
}
.dfs-mobile-swipe-wrap { padding-top: 0; }

/* ── DFS SEO: Casino widget styles (Issue #7 & #8 — casino ↔ provider/slot cross-linking) ── */
.dfs-casino-widget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.dfs-casino-card-mini {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--bg-card);
  gap: 12px;
}
.dfs-casino-card-mini-inner { flex: 1; }
.dfs-casino-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.dfs-casino-card-name:hover { color: var(--accent); }
.dfs-casino-card-bonus { font-size: 13px; color: var(--text-muted); margin: 0 0 4px; }
.dfs-casino-card-rating { font-size: 13px; color: var(--text-dim); margin: 0; }
.dfs-btn--casino-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.dfs-btn--casino-cta:hover { opacity: .88; }

/* ── Provider pill grid on casino pages ── */
.dfs-provider-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dfs-provider-pill-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 30px;
  text-decoration: none;
  background: var(--bg-card);
  transition: border-color .15s;
}
.dfs-provider-pill-card:hover { border-color: var(--accent); }
.dfs-provider-pill-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dfs-provider-pill-name { font-size: 14px; font-weight: 600; color: var(--text); }
.dfs-provider-pill-count { font-size: 12px; color: var(--text-dim); }

/* ── Ensure slot card taglines render their full text in the DOM.
   Visual truncation via CSS -webkit-line-clamp; Googlebot sees full text. ── */
.dfs-card-tagline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   DFS Enhancements — v1.0 additions
   All classes prefixed dfs- to avoid conflicts.
   ═══════════════════════════════════════════════════════════════ */

/* Volatile-o-meter (replaces plain vol pill on slot pages) */
.dfs-vol-meter { display:inline-flex;align-items:center;gap:7px;padding:5px 12px;border-radius:20px;background:var(--bg-elevated);font-size:13px }
.dfs-vol-meter-label { font-weight:700;color:var(--text) }
.dfs-vol-meter-track { display:flex;gap:3px;align-items:center }
.dfs-vol-dot { width:8px;height:8px;border-radius:50%;background:var(--border);transition:background .15s }
.dfs-vol-dot.active { background:currentColor }
.dfs-vol-meter[data-vol="low"]          .dfs-vol-dot.active { color:#27500a }
.dfs-vol-meter[data-vol="low-medium"]   .dfs-vol-dot.active { color:#27500a }
.dfs-vol-meter[data-vol="medium"]       .dfs-vol-dot.active { color:#854f0b }
.dfs-vol-meter[data-vol="medium-high"]  .dfs-vol-dot.active { color:#854f0b }
.dfs-vol-meter[data-vol="high"]         .dfs-vol-dot.active { color:#a32d2d }
.dfs-vol-meter[data-vol="very high"]    .dfs-vol-dot.active { color:#791f1f }
.dfs-vol-meter[data-vol="extreme"]      .dfs-vol-dot.active { color:#501313 }

/* Bankroll guide section */
.dfs-bankroll { margin:20px 0;padding:16px 20px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius) }
.dfs-bankroll h2 { font-size:16px;font-weight:700;margin-bottom:12px }
.dfs-bankroll-row { display:grid;grid-template-columns:120px 120px 1fr;gap:12px 20px;align-items:start }
.dfs-bankroll-stat { display:flex;flex-direction:column;gap:2px }
.dfs-bankroll-val { font-size:22px;font-weight:800;color:var(--text) }
.dfs-bankroll-lbl { font-size:12px;color:var(--text-dim) }
.dfs-bankroll-note { font-size:13px;color:var(--text-muted);line-height:1.5;align-self:center }
@media (max-width:520px) {
  .dfs-bankroll-row { grid-template-columns:1fr 1fr }
  .dfs-bankroll-note { grid-column:1/-1 }
}

/* Feature links in Quick Facts */
.dfs-feat-link { color:var(--text-muted);text-decoration:underline;text-decoration-color:var(--border);text-underline-offset:2px;transition:color .12s }
.dfs-feat-link:hover { color:var(--accent) }

/* Theme tag on slot cards */
.dfs-tag-theme { color:var(--text-dim) !important;font-style:italic;font-size:11px }
.dfs-tag-theme:hover { color:var(--accent) !important }

/* Quick-play button on listing cards */
.dfs-quick-play-btn { display:inline-flex;align-items:center;gap:4px;padding:4px 9px;font-size:11px;font-weight:700;background:var(--accent);color:#fff;border:none;border-radius:5px;cursor:pointer;margin-top:6px;transition:opacity .12s }
.dfs-quick-play-btn:hover { opacity:.85 }

/* Quick-play modal */
.dfs-qp-backdrop { position:fixed;inset:0;background:rgba(0,0,0,.75);z-index:99999;display:flex;align-items:center;justify-content:center;padding:12px }
.dfs-qp-modal { position:relative;width:100%;max-width:980px;background:#000;border-radius:10px;overflow:hidden;aspect-ratio:16/9 }
.dfs-qp-modal iframe { width:100%;height:100%;border:none;display:block }
.dfs-qp-close { position:absolute;top:8px;right:10px;z-index:2;background:rgba(0,0,0,.65);color:#fff;border:none;border-radius:6px;padding:6px 12px;font-size:13px;font-weight:700;cursor:pointer }
.dfs-qp-close:hover { background:#000 }

/* Recently viewed drawer */
.dfs-rv-drawer { border-top:1px solid var(--border);padding:16px 0;margin-top:24px }
.dfs-rv-title { font-size:11px;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px }
.dfs-rv-strip { display:flex;gap:10px;overflow-x:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch;padding-bottom:4px }
.dfs-rv-strip::-webkit-scrollbar { display:none }
.dfs-rv-card { flex-shrink:0;width:88px;text-decoration:none }
.dfs-rv-card-vis { width:88px;height:54px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:20px }
.dfs-rv-card-name { display:block;font-size:11px;color:var(--text-muted);margin-top:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:88px }

/* Provider stats sidebar on slot pages */
.dfs-prov-sidebar{margin:20px 0;padding:16px 18px;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius)}
.dfs-prov-sidebar-head{display:flex;align-items:baseline;gap:10px;margin-bottom:12px}
.dfs-prov-sidebar-name{font-size:15px;font-weight:700;color:var(--text);text-decoration:none}
.dfs-prov-sidebar-name:hover{color:var(--accent)}
.dfs-prov-sidebar-meta{font-size:12px;color:var(--text-dim)}
.dfs-prov-sidebar-stats{display:flex;gap:20px;margin-bottom:12px;flex-wrap:wrap}
.dfs-prov-stat{display:flex;flex-direction:column;gap:1px}
.dfs-prov-stat-val{font-size:18px;font-weight:800;color:var(--text)}
.dfs-prov-stat-lbl{font-size:11px;color:var(--text-dim)}
.dfs-prov-sidebar-cta{font-size:13px;color:var(--accent);font-weight:600;text-decoration:none}
.dfs-prov-sidebar-cta:hover{text-decoration:underline}

/* RTP context pill */
.dfs-pill--rtp{display:inline-flex;align-items:baseline;gap:0}
