/* ── RESET ───────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #e0e0e0;
  padding: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
}

/* ── WRAP ────────────────────────────────────────── */
.b-wrap {
  background: #ffffff;
  color: #0a0a0a;
  width: 100%;
  overflow-x: hidden;
}

/* ── MASTHEAD ────────────────────────────────────── */
.b-masthead {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  border-bottom: 4px solid #0a0a0a;
  padding: clamp(12px, 2vw, 20px) clamp(16px, 3vw, 32px);
}

.b-masthead img {
  height: clamp(36px, 5vw, 56px);
  display: block;
}

/* ── NAV ─────────────────────────────────────────── */
.b-nav {
  display: flex;
  border-bottom: 4px solid #0a0a0a;
  background: #ffffff;
  overflow-x: auto;
}

.b-nav-item {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.2vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-right: 3px solid #0a0a0a;
  color: #0a0a0a;
  white-space: nowrap;
  text-decoration: none;
  min-width: fit-content;
}

.b-nav-item:last-child { border-right: none; }
.b-nav-item.active { background: #cc0000; color: #ffffff; }
.b-nav-item:hover { background: #cc0000; color: #ffffff; cursor: pointer; }

/* ── HERO ────────────────────────────────────────── */
.b-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 0px minmax(240px, 1fr);
  border-bottom: none;
}

.b-hero-divider {
  background: transparent;
  width: 0;
}

.b-hero {
  padding: clamp(20px, 3vw, 32px);
  min-width: 0;
}

.b-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 7vw, 80px);
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.b-deck {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-top: 3px solid #0a0a0a;
  border-bottom: 3px solid #0a0a0a;
  padding: 10px 0;
  margin: 0 0 20px;
}

.b-body {
  font-size: 16px;
  line-height: 1.7;
  columns: 2 280px;
  column-gap: 32px;
  column-rule: 3px solid #0a0a0a;
}

/* ── URBAN DICTIONARY ────────────────────────────── */
.b-ud-strip {
  display: flex;
  flex-direction: column;
  border-bottom: none;
  background: #cc0000;
}

.b-ud-label-col {
  background: #cc0000;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 4px solid #0a0a0a;
}

.b-ud-label-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.b-ud-content {
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.b-ud-word {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
}

.b-ud-def {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.3;
  margin: 10px 0 20px;
  font-style: normal;
  color: #ffffff;
}

.b-ud-eg-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 4px;
}

.b-ud-eg {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: #ffffff;
}

/* ── STATS ───────────────────────────────────────── */
.b-stats-wrap {
  background: #0a0a0a;
  border-bottom: 4px solid #0a0a0a;
  padding: 20px clamp(16px, 3vw, 32px) 0;
}

.b-stats-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  padding: 0 0 10px 0;
  border-bottom: 3px solid #cc0000;
  margin-bottom: 14px;
}

.b-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  padding: 0 0 32px 0;
}

.b-stat {
  padding: 0 clamp(12px, 2vw, 24px) 0 0;
  border-right: 1px solid #cccccc;
}

.b-stat:last-child { border-right: none; padding-right: 0; }
.b-stat:not(:first-child) { padding-left: clamp(12px, 2vw, 24px); }

.b-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  display: block;
  color: #ffffff;
}

.b-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cccccc;
  line-height: 1.4;
  margin-top: 6px;
}

/* ── SHARED ──────────────────────────────────────── */
.b-divider-vert { background: #0a0a0a; width: 4px; flex-shrink: 0; }

/* ── FAMOUS DAVES ────────────────────────────────── */
.b-famous {
  border-bottom: 4px solid #0a0a0a;
  padding: clamp(20px, 3vw, 28px) clamp(16px, 3vw, 32px);
}

.b-col-head-famous {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.b-fame-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
}

.b-fame-card {
  border: 3px solid #0a0a0a;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: #0a0a0a;
  background: #ffffff;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.b-fame-card:hover { background: #0a0a0a; color: #ffffff; }
.b-fame-card:hover .b-fame-name { color: #ffffff; }
.b-fame-card:hover .b-fame-note { color: #cccccc; }
.b-fame-card:hover .b-score { background: #cc0000; color: #ffffff; }

.b-fame-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.5vw, 22px);
  text-transform: uppercase;
  line-height: 1.1;
  color: #cc0000;
}

.b-fame-note {
  font-size: 16px;
  color: #0a0a0a;
  line-height: 1.5;
  margin-top: 4px;
}

.b-score {
  background: #cc0000;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  padding: 6px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

/* ── LINKS ───────────────────────────────────────── */
.b-link-arrow { display: inline-block; transition: transform 0.2s ease; }
.b-editorial-link:hover .b-link-arrow { transform: translateX(5px); }

.b-editorial-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: underline;
  color: #cc0000;
  width: fit-content;
}

/* ── EDITORIAL SECTIONS ──────────────────────────── */
.b-editorial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 4px solid #0a0a0a;
}

.b-editorial-divider {
  display: none;
}

.b-editorial {
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 32px);
  border-right: 4px solid #0a0a0a;
  border-bottom: none;
  min-width: 0;
}

.b-editorial:last-child { border-right: none; }

.b-editorial-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 1.8vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid currentColor;
}

.b-editorial-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 36px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-left: 8px solid #cc0000;
  background: #0a0a0a;
  color: #ffffff;
}

.b-editorial-body {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
}

/* ORIGIN — black bg */
.b-origin { background: #0a0a0a; color: #ffffff; }
.b-origin .b-editorial-quote { background: #ffffff; color: #0a0a0a; border-left-color: #cc0000; }
.b-origin .b-editorial-link { color: #ffffff; }

/* PERSONALITY — white bg */
.b-personality { background: #ffffff; color: #0a0a0a; }
.b-personality .b-editorial-quote { background: #0a0a0a; color: #ffffff; border-left-color: #cc0000; }
.b-personality .b-editorial-link { color: #cc0000; }

/* DAVE VS DAVID — red bg */
.b-davevdavid { background: #cc0000; color: #ffffff; border-bottom: none; }
.b-davevdavid .b-editorial-quote { background: #ffffff; color: #0a0a0a; border-left: 8px solid #0a0a0a; }
.b-davevdavid .b-editorial-body { color: #ffffff; }
.b-davevdavid .b-editorial-link { color: #ffffff; }

/* ── MERCH ───────────────────────────────────────── */
.b-merch-section {
  border-bottom: 4px solid #0a0a0a;
  background: #dedede;
  padding: clamp(16px, 2.5vw, 24px) clamp(16px, 3vw, 32px);
}

.b-merch-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 32px);
  text-transform: uppercase;
  border-bottom: 3px solid #cc0000;
  padding-bottom: 10px;
  margin-bottom: 14px;
  line-height: 1;
  color: #0a0a0a;
}

.b-merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.b-merch-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 14px;
  border: 1px solid #aaa;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0a0a0a;
}

.b-merch-dash {
  width: 14px;
  height: 3px;
  background: #cc0000;
  flex-shrink: 0;
}

/* ── NO MIKE'S ───────────────────────────────────── */
.b-no-mikes-section {
  border-bottom: 4px solid #0a0a0a;
  background: #ffffff;
}

.b-no-mikes-text-col {
  padding: clamp(20px, 3vw, 28px) clamp(16px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b-no-mikes-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
}

.b-no-mikes-bigtext {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: #cc0000;
}

.b-no-mikes-body {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  border-top: 3px solid #0a0a0a;
  padding-top: 14px;
  margin-top: 6px;
  max-width: 640px;
}

/* ── FOOTER ──────────────────────────────────────── */
.b-footer {
  background: #cc0000;
  text-align: center;
  padding: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.2vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.b-footer a{
  color: #fff;
}

/* ── PAGE LAYOUTS (inner pages) ──────────────────── */
.b-page-wrap {
  width: 100%;
}

.b-page-row {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 0;
  border-bottom: 4px solid #0a0a0a;
}

/* Hero-style split: matches the index hero ratio (2fr / 1fr) */
.b-page-row.b-page-row-split {
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
}

.b-page-content {
  padding: clamp(20px, 3vw, 40px) clamp(16px, 3vw, 32px);
  border-right: 4px solid #0a0a0a;
  min-width: 0;
}

.b-page-content-full {
  padding: clamp(20px, 3vw, 40px) clamp(16px, 3vw, 32px);
}

.b-page-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.b-page-deck {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-top: 3px solid #0a0a0a;
  border-bottom: 3px solid #0a0a0a;
  padding: 8px 0;
  margin: 12px 0 24px;
}

.b-page-body {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
}

.b-page-body p { margin-bottom: 18px; }

.b-page-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  border-top: 4px solid #cc0000;
  padding-top: 10px;
  margin: 32px 0 12px;
}

.b-page-pull {
  background: #0a0a0a;
  color: #ffffff;
  padding: 16px 20px;
  margin: 24px 0;
  border-left: 8px solid #cc0000;
}

.b-page-pull p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 28px);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

/* ── SIDEBAR ADS (all Dave, all CSS) ─────────────── */
.b-sidebar {
  padding: clamp(20px, 3vw, 24px);
  background: #0a0a0a;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b-ad-box {
  border: 4px solid #0a0a0a;
  background: #ffffff;
  overflow: hidden;
}

.b-ad-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #0a0a0a;
  padding: 6px 10px;
  border-bottom: 1px solid #ddd;
  background: #DEDEDE;
}

/* Built ad "creative" panel — replaces the old <img> */
.b-ad-creative {
  background: #fff;
  color: #0a0a0a;
  padding: 28px 18px;
  text-align: center;
  position: relative;
}

.b-ad-creative-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #cc0000;
  margin-bottom: 8px;
}

.b-ad-creative-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.b-ad-creative-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  margin-top: 10px;
}

/* Red variant for visual variety between ad units */
.b-ad-creative.b-ad-red { background: #cc0000; }
.b-ad-creative.b-ad-red .b-ad-creative-kicker { color: #fff; }
.b-ad-creative.b-ad-red .b-ad-creative-sub { color: #fff; }
.b-ad-creative.b-ad-red .b-ad-creative-title { color: #fff; }
.b-ad-caption {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  background: #DEDEDE;
  color: #0a0a0a;
}

/* ── QUIZ ────────────────────────────────────────── */
.b-quiz {
  background: #0a0a0a;
  padding: 32px;
  margin: 32px 0;
  border: 4px solid #0a0a0a;
}

.b-quiz-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 3px solid #cc0000;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.b-quiz-question {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.b-quiz-progress {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #cccccc;
  margin-bottom: 8px;
}

.b-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b-quiz-option {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  padding: 14px 20px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.b-quiz-option:hover { background: #cc0000; color: #ffffff; }

.b-quiz-result-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  color: #cc0000;
  margin-bottom: 12px;
}

.b-quiz-result-text {
  font-size: 17px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 24px;
  max-width: 560px;
}

.b-quiz-restart {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.b-quiz-restart:hover { background: #ffffff; color: #0a0a0a; }

/* ── MERCH PRODUCTS (inner page) ─────────────────── */
.b-merch-product {
  border: 3px solid #0a0a0a;
  background: #ffffff;
}

.b-merch-product-img {
  background: #0a0a0a;
  color: #cccccc;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  text-align: center;
  padding: 40px 20px;
  letter-spacing: 0.05em;
}

.b-merch-product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.6vw, 22px);
  text-transform: uppercase;
  padding: 14px 16px 4px;
  color: #cc0000;
}

.b-merch-product-desc {
  font-size: 15px;
  line-height: 1.5;
  padding: 0 16px 10px;
  color: #444;
}

.b-merch-product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  padding: 0 16px 12px;
  color: #0a0a0a;
}

.b-merch-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #cc0000;
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.b-merch-btn:hover { background: #0a0a0a; }

/* ── NARROW SCREENS (under 600px) ───────────────── */
@media (max-width: 600px) {
  .b-hero-row { grid-template-columns: 1fr; }
  .b-hero-divider { display: none; }
  .b-ud-strip { border-bottom: 4px solid #0a0a0a; }
  .b-body { columns: 1; }
  .b-editorial-row { grid-template-columns: 1fr; }
  .b-editorial { border-right: none; border-bottom: 4px solid #0a0a0a; }
  .b-editorial:last-child { border-bottom: none; }
  .b-stats { grid-template-columns: 1fr; }
  .b-stat { border-right: none; border-bottom: 1px solid #cccccc; padding: 16px 0; }
  .b-stat:last-child { border-bottom: none; }
  .b-stat:not(:first-child) { padding-left: 0; }
  .b-page-row { grid-template-columns: 1fr; }
  .b-page-row.b-page-row-split { grid-template-columns: 1fr; }
  .b-page-content { border-right: none; }
  .b-sidebar { border-top: 4px solid #0a0a0a; }
}
