/* ============================================================
   Grumpy Dad Cards — theme styles
   Design tokens + all sitewide components.
   Everything is prefixed .gdc- to avoid collisions.
   ============================================================ */

:root {
  --gdc-cream: #F4F0E7;
  --gdc-cream-2: #FBF8F1;
  --gdc-ink: #1C1A14;
  --gdc-red: #E23B2E;
  --gdc-red-dark: #C32C20;
  --gdc-gold: #E8A21C;
  --gdc-green: #3FBF6A.gdc-filterinput span { color: #A8A29E; display: inline-flex; align-items: center; }
  --gdc-text: #1C1A14;
  --gdc-muted: #57534E;
  --gdc-muted-2: #8A8472;
  --gdc-muted-3: #B8B2A2;
  --gdc-line: #E2DBCC;
  --gdc-line-2: #D6CEBD;
  --gdc-line-3: #E6E0D3;
  --gdc-max: 1280px;
  --gdc-display: 'Anton', 'Archivo', system-ui, sans-serif;
  --gdc-body: 'Archivo', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.gdc-body {
  background: var(--gdc-cream);
  font-family: var(--gdc-body);
  color: var(--gdc-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.gdc-body.gdc-locked { overflow: hidden; }

.gdc-body ::selection { background: var(--gdc-red); color: #fff; }

.gdc-body a { color: inherit; }
.gdc-body img { max-width: 100%; height: auto; display: block; }

.gdc-noscroll { scrollbar-width: none; -ms-overflow-style: none; }
.gdc-noscroll::-webkit-scrollbar { display: none; }

@keyframes gdcFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes gdcSlide { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes gdcMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.gdc-wrap { max-width: var(--gdc-max); margin: 0 auto; padding-left: 28px; padding-right: 28px; }

.gdc-display { font-family: var(--gdc-display); }
.gdc-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gdc-red); margin-bottom: 6px;
}

/* ---------- Announcement marquee ---------- */
.gdc-announce {
  background: var(--gdc-ink); color: var(--gdc-cream);
  overflow: hidden; white-space: nowrap;
  font-size: 12.5px; letter-spacing: 0.04em; font-weight: 600;
}
.gdc-announce__track {
  display: inline-flex; gap: 48px; padding: 9px 0;
  animation: gdcMarquee 28s linear infinite; will-change: transform;
}
.gdc-announce__track span { display: inline-block; }
.gdc-announce .gdc-star { color: var(--gdc-gold); }

/* ---------- Header + nav ---------- */
.gdc-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244, 240, 231, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gdc-line);
}
.gdc-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-top: 14px; padding-bottom: 14px;
}
.gdc-brand { display: flex; align-items: center; gap: 13px; cursor: pointer; text-decoration: none; }
.gdc-brand--logo img { display: block; max-height: 52px; width: auto; height: auto; }
.gdc-logo {
  width: 42px; height: 42px; background: var(--gdc-red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-4deg); box-shadow: 0 3px 0 var(--gdc-ink); flex: none;
}
.gdc-logo span {
  font-family: var(--gdc-display); color: #fff; font-size: 24px; line-height: 1;
  transform: rotate(4deg);
}
.gdc-brand__text { line-height: 0.92; }
.gdc-brand__text .l1 { font-family: var(--gdc-display); font-size: 21px; letter-spacing: 0.02em; color: var(--gdc-ink); }
.gdc-brand__text .l2 { font-family: var(--gdc-display); font-size: 21px; letter-spacing: 0.16em; color: var(--gdc-red); }

.gdc-header__actions { display: flex; align-items: center; gap: 10px; }

.gdc-btn-ghost {
  display: flex; align-items: center; gap: 7px; background: transparent;
  border: 1px solid var(--gdc-line-2); border-radius: 10px; padding: 10px 14px;
  font-family: var(--gdc-body); font-weight: 600; font-size: 13px; color: var(--gdc-muted);
  cursor: pointer; transition: border-color .15s, color .15s; text-decoration: none;
}
.gdc-btn-ghost:hover { border-color: var(--gdc-ink); color: var(--gdc-ink); }

.gdc-btn-dark {
  position: relative; display: flex; align-items: center; gap: 8px;
  background: var(--gdc-ink); border: none; border-radius: 10px; padding: 10px 18px;
  font-family: var(--gdc-body); font-weight: 700; font-size: 13px; letter-spacing: 0.03em;
  color: #fff; cursor: pointer; transition: background .15s; text-decoration: none;
}
.gdc-btn-dark:hover { background: #000; }
.gdc-count-badge {
  background: var(--gdc-red); color: #fff; font-size: 11px; font-weight: 800;
  min-width: 20px; height: 20px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
}

.gdc-nav { border-top: 1px solid var(--gdc-line); background: rgba(255, 255, 255, 0.55); }
.gdc-nav__inner { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.gdc-nav a {
  text-decoration: none; color: #3A372C; font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.02em; padding: 13px 14px; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.gdc-nav a:hover { color: var(--gdc-red); }
.gdc-nav a.gdc-nav--active,
.gdc-nav .current-menu-item > a,
.gdc-nav .current_page_item > a {
  color: var(--gdc-red); font-weight: 700; border-bottom-color: var(--gdc-red);
}
.gdc-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.gdc-nav .sub-menu { display: none; }

/* ---------- Hero ---------- */
.gdc-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 100% 0%, var(--gdc-cream-2) 0%, #F0EADC 55%, #EAE2D1 100%);
  border-bottom: 1px solid var(--gdc-line);
}
.gdc-hero__ghost {
  position: absolute; top: -40px; right: -40px; font-family: var(--gdc-display);
  font-size: 240px; color: rgba(28, 26, 20, 0.035); line-height: 1;
  pointer-events: none; user-select: none;
}
.gdc-hero__inner { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; padding: 56px 28px 48px; }
.gdc-hero__copy { flex: 1 1 460px; min-width: 320px; }
.gdc-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gdc-ink);
  color: var(--gdc-cream); border-radius: 999px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 22px;
}
.gdc-dot { width: 7px; height: 7px; background: var(--gdc-green); border-radius: 999px; display: inline-block; }
.gdc-hero__title {
  font-family: var(--gdc-display); font-size: clamp(44px, 6vw, 76px); line-height: 0.92;
  letter-spacing: 0.005em; margin: 0 0 16px; color: var(--gdc-ink);
}
.gdc-hero__title .hot { color: var(--gdc-red); }
.gdc-hero__sub { font-size: 17px; line-height: 1.5; color: var(--gdc-muted); max-width: 440px; margin: 0 0 26px; font-weight: 500; }

.gdc-search {
  display: flex; align-items: stretch; background: #fff; border: 2px solid var(--gdc-ink);
  border-radius: 14px; overflow: hidden; max-width: 560px;
  box-shadow: 0 6px 0 rgba(28, 26, 20, 0.12);
}
.gdc-search__selectwrap { position: relative; display: flex; align-items: center; border-right: 1px solid var(--gdc-line-3); }
.gdc-search__select {
  appearance: none; -webkit-appearance: none; border: none; background: transparent;
  padding: 0 36px 0 16px; font-family: var(--gdc-body); font-weight: 600; font-size: 14px;
  color: var(--gdc-ink); cursor: pointer; height: 54px;
}
.gdc-search__caret { position: absolute; right: 14px; pointer-events: none; color: #A8A29E; font-size: 11px; }
.gdc-search__input {
  flex: 1; border: none; outline: none; padding: 0 16px; font-family: var(--gdc-body);
  font-size: 15px; color: var(--gdc-ink); background: transparent; min-width: 80px;
}
.gdc-search__btn {
  border: none; background: var(--gdc-red); color: #fff; font-family: var(--gdc-display);
  font-size: 16px; letter-spacing: 0.04em; padding: 0 26px; cursor: pointer; transition: background .15s;
}
.gdc-search__btn:hover { background: var(--gdc-red-dark); }

.gdc-hotrow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.gdc-hotrow__label { font-size: 12px; font-weight: 700; color: var(--gdc-muted-2); letter-spacing: 0.04em; text-transform: uppercase; }
.gdc-chip {
  background: #fff; border: 1px solid var(--gdc-line-2); border-radius: 999px; padding: 7px 13px;
  font-family: var(--gdc-body); font-weight: 600; font-size: 12.5px; color: #3A372C;
  cursor: pointer; text-decoration: none; transition: border-color .15s, color .15s;
}
.gdc-chip:hover { border-color: var(--gdc-red); color: var(--gdc-red); }

.gdc-hero__fan {
  flex: 1 1 340px; min-width: 300px; display: flex; justify-content: center;
  align-items: center; position: relative; min-height: 360px;
}
.gdc-fan-card {
  background: linear-gradient(165deg, #F7F4ED 0%, #ECE6D9 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  color: var(--gdc-muted-2); font-weight: 700; font-size: 13px; text-align: center;
}
.gdc-fan-card img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.gdc-fan-3 { position: absolute; width: 200px; height: 280px; transform: rotate(-13deg) translateX(-92px); box-shadow: 0 16px 34px rgba(28, 26, 20, 0.22); border-radius: 12px; }
.gdc-fan-2 { position: absolute; width: 212px; height: 296px; transform: rotate(8deg) translateX(96px) translateY(14px); box-shadow: 0 16px 34px rgba(28, 26, 20, 0.22); border-radius: 12px; }
.gdc-fan-1 { position: relative; width: 228px; height: 320px; z-index: 2; box-shadow: 0 22px 46px rgba(28, 26, 20, 0.3); border: 6px solid #fff; border-radius: 16px; }
.gdc-grail {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%) rotate(-3deg); z-index: 3;
  background: var(--gdc-gold); color: var(--gdc-ink); font-family: var(--gdc-display);
  font-size: 13px; letter-spacing: 0.06em; padding: 6px 14px; border-radius: 8px;
  box-shadow: 0 4px 0 rgba(28, 26, 20, 0.25);
}

/* ---------- Stats strip ---------- */
.gdc-stats { border-top: 1px solid var(--gdc-line); background: rgba(255, 255, 255, 0.5); }
.gdc-stats__inner { display: flex; flex-wrap: wrap; }
.gdc-stat { flex: 1 1 180px; padding: 22px 8px; display: flex; align-items: baseline; gap: 12px; border-right: 1px solid var(--gdc-line); }
.gdc-stat__val { font-family: var(--gdc-display); font-size: 38px; color: var(--gdc-ink); line-height: 1; }
.gdc-stat__label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gdc-muted-2); }

/* ---------- Section headers ---------- */
.gdc-section { padding-top: 46px; padding-bottom: 8px; }
.gdc-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.gdc-h2 { font-family: var(--gdc-display); font-size: 34px; margin: 0; color: var(--gdc-ink); letter-spacing: 0.01em; }
.gdc-quip { font-size: 14px; color: var(--gdc-muted-2); font-weight: 500; font-style: italic; }

/* ---------- Browse tiles ---------- */
.gdc-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.gdc-tile {
  text-align: left; background: #fff; border: 1px solid var(--gdc-line); border-radius: 16px;
  padding: 20px; cursor: pointer; display: flex; flex-direction: column; gap: 14px;
  min-height: 148px; justify-content: space-between; text-decoration: none;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.gdc-tile:hover { border-color: var(--gdc-ink); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(28, 26, 20, 0.1); }
.gdc-tile__icon { font-size: 34px; }
.gdc-tile__label { font-family: var(--gdc-display); font-size: 19px; color: var(--gdc-ink); letter-spacing: 0.02em; }
.gdc-tile__count { font-size: 12.5px; color: var(--gdc-muted-2); font-weight: 600; margin-top: 2px; }

/* ---------- Showcase grid + toolbar ---------- */
.gdc-showcase { padding-top: 42px; padding-bottom: 16px; scroll-margin-top: 120px; }
.gdc-showcase__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 6px; flex-wrap: wrap; }
.gdc-h2--big { font-size: 44px; line-height: 0.95; }
.gdc-showcase__lead { font-size: 15px; color: var(--gdc-muted); max-width: 340px; margin: 0; font-weight: 500; }

.gdc-toolbar {
  position: sticky; top: 108px; z-index: 20; background: rgba(244, 240, 231, 0.94);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 16px 0; margin-top: 18px; border-bottom: 1px solid var(--gdc-line);
}
.gdc-toolbar__row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: space-between; }
.gdc-toolbar__group { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }

.gdc-fchip {
  background: #fff; border: 1px solid var(--gdc-line-2); border-radius: 999px; padding: 8px 14px;
  font-family: var(--gdc-body); font-weight: 700; font-size: 13px; color: #3A372C;
  cursor: pointer; transition: all .15s; white-space: nowrap;
}
.gdc-fchip:hover { border-color: var(--gdc-red); color: var(--gdc-red); }
.gdc-fchip.is-active { background: var(--gdc-ink); border-color: var(--gdc-ink); color: #fff; }

.gdc-toggle {
  background: #fff; border: 1px solid var(--gdc-line-2); border-radius: 10px; padding: 9px 14px;
  font-family: var(--gdc-body); font-weight: 700; font-size: 13px; color: #3A372C; cursor: pointer; transition: all .15s;
}
.gdc-toggle.is-active { background: var(--gdc-gold); border-color: var(--gdc-gold); color: var(--gdc-ink); }

.gdc-filterinput { display: flex; align-items: center; background: #fff; border: 1px solid var(--gdc-line-2); border-radius: 10px; padding: 0 12px; }
.gdc-filterinput span { color: #A8A29E; font-size: 14px; }
.gdc-filterinput input { border: none; outline: none; padding: 9px 8px; font-family: var(--gdc-body); font-size: 13.5px; width: 140px; background: transparent; }

.gdc-selectwrap { position: relative; display: flex; align-items: center; }
.gdc-select {
  appearance: none; -webkit-appearance: none; border: 1px solid var(--gdc-line-2); border-radius: 10px;
  background: #fff; padding: 9px 32px 9px 12px; font-family: var(--gdc-body); font-weight: 600;
  font-size: 13.5px; color: var(--gdc-ink); cursor: pointer;
}
.gdc-selectwrap .gdc-select__caret { position: absolute; right: 12px; pointer-events: none; color: #A8A29E; font-size: 10px; }

.gdc-resultcount { margin-top: 12px; font-size: 13px; color: var(--gdc-muted-2); font-weight: 600; }

.gdc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(218px, 1fr)); gap: 20px; margin-top: 24px; }

.gdc-card {
  position: relative; background: #fff; border: 1px solid var(--gdc-line); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column; transition: border-color .15s, transform .15s, box-shadow .15s;
}
.gdc-card:hover { border-color: var(--gdc-ink); transform: translateY(-4px); box-shadow: 0 14px 30px rgba(28, 26, 20, 0.12); }
.gdc-card__media { position: relative; padding: 16px 16px 0; background: linear-gradient(165deg, #F7F4ED 0%, #ECE6D9 100%); }
.gdc-card__badges { position: absolute; top: 14px; left: 14px; z-index: 3; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.gdc-badge-rookie { background: var(--gdc-red); color: #fff; font-family: var(--gdc-display); font-size: 11px; letter-spacing: 0.08em; padding: 4px 9px; border-radius: 6px; box-shadow: 0 2px 0 rgba(28, 26, 20, 0.2); }
.gdc-badge-pick { background: var(--gdc-gold); color: var(--gdc-ink); font-family: var(--gdc-display); font-size: 11px; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 6px; }
.gdc-wish {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid var(--gdc-line-3); background: rgba(255, 255, 255, 0.92); cursor: pointer; font-size: 16px;
  line-height: 1; display: flex; align-items: center; justify-content: center; color: var(--gdc-muted-2); transition: border-color .15s, color .15s;
}
.gdc-wish:hover { border-color: var(--gdc-red); }
.gdc-wish.is-wished { color: var(--gdc-red); }
.gdc-card__img { width: 100%; aspect-ratio: 5 / 7; display: block; border-radius: 10px 10px 0 0; overflow: hidden; background: linear-gradient(165deg, #F7F4ED 0%, #ECE6D9 100%); display: flex; align-items: center; justify-content: center; color: var(--gdc-muted-2); font-weight: 700; }
.gdc-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.gdc-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.gdc-card__player { font-family: var(--gdc-display); font-size: 18px; letter-spacing: 0.015em; color: var(--gdc-ink); line-height: 1.05; }
.gdc-card__playerlink { color: inherit; text-decoration: none; transition: color .15s; }
.gdc-card__playerlink:hover { color: var(--gdc-red); text-decoration: underline; }
.gdc-card__subline { font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gdc-muted-2); margin-top: 3px; }
.gdc-card__meta { font-size: 13px; color: var(--gdc-muted); font-weight: 500; }
.gdc-card__chips { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }
.gdc-pchip { background: #F0EADC; border: 1px solid var(--gdc-line); border-radius: 6px; padding: 3px 8px; font-size: 11.5px; font-weight: 700; color: #3A372C; }
.gdc-nchip { background: var(--gdc-ink); color: var(--gdc-gold); border-radius: 6px; padding: 3px 8px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; }
.gdc-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 6px; }
.gdc-price { font-family: var(--gdc-body); font-weight: 800; font-size: 20px; color: var(--gdc-ink); }
.gdc-price--tbd { color: var(--gdc-muted-2); }
.gdc-add {
  width: 100%; border: none; background: var(--gdc-ink); color: #fff; border-radius: 10px; padding: 11px;
  font-family: var(--gdc-body); font-weight: 700; font-size: 13px; letter-spacing: 0.03em; cursor: pointer; transition: background .15s;
}
.gdc-add:hover { background: #000; }
.gdc-add--tbd { background: var(--gdc-red); }
.gdc-add--tbd:hover { background: var(--gdc-red-dark); }

.gdc-empty { text-align: center; padding: 64px 20px; }
.gdc-empty__face { font-size: 46px; margin-bottom: 10px; }
.gdc-empty__title { font-family: var(--gdc-display); font-size: 26px; color: var(--gdc-ink); margin-bottom: 6px; }
.gdc-empty p { color: var(--gdc-muted-2); font-weight: 500; margin: 0 0 18px; }
.gdc-empty__btn { background: var(--gdc-ink); color: #fff; border: none; border-radius: 10px; padding: 11px 22px; font-family: var(--gdc-body); font-weight: 700; font-size: 13px; letter-spacing: 0.03em; cursor: pointer; }

/* ---------- Dad's Rant ---------- */
.gdc-rant { padding: 44px 28px; }
.gdc-rant__box { background: var(--gdc-ink); border-radius: 22px; padding: 42px 44px; display: flex; gap: 40px; align-items: center; flex-wrap: wrap; position: relative; overflow: hidden; }
.gdc-rant__ghost { position: absolute; right: -20px; bottom: -50px; font-family: var(--gdc-display); font-size: 200px; color: rgba(255, 255, 255, 0.04); line-height: 1; pointer-events: none; }
.gdc-rant__copy { flex: 1 1 420px; min-width: 300px; position: relative; }
.gdc-tag-red { display: inline-flex; align-items: center; gap: 8px; background: var(--gdc-red); color: #fff; border-radius: 999px; padding: 5px 13px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 18px; }
.gdc-rant__quote { font-family: var(--gdc-display); font-size: clamp(24px, 3vw, 34px); line-height: 1.12; color: var(--gdc-cream); margin: 0 0 16px; letter-spacing: 0.005em; }
.gdc-rant__body { font-size: 15px; line-height: 1.55; color: var(--gdc-muted-3); margin: 0; font-weight: 500; max-width: 520px; }
.gdc-grades { flex: 0 0 auto; display: flex; flex-direction: column; gap: 12px; position: relative; }
.gdc-grade { display: flex; align-items: center; gap: 14px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 14px 18px; }
.gdc-grade__mark { font-family: var(--gdc-display); font-size: 30px; line-height: 1; }
.gdc-grade__mark.a { color: var(--gdc-gold); }
.gdc-grade__mark.f { color: var(--gdc-red); }
.gdc-grade__text { font-size: 13px; color: #D8D2C2; font-weight: 500; max-width: 180px; }

/* ---------- Don't fear the rippin' ---------- */
.gdc-rip { padding: 8px 28px 52px; scroll-margin-top: 120px; }
.gdc-rip__box { background: linear-gradient(135deg, var(--gdc-red) 0%, var(--gdc-red-dark) 100%); border-radius: 22px; padding: 46px 40px; text-align: center; position: relative; overflow: hidden; }
.gdc-rip__ghost { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); font-family: var(--gdc-display); font-size: 170px; color: rgba(255, 255, 255, 0.08); line-height: 1; pointer-events: none; white-space: nowrap; }
.gdc-rip__inner { position: relative; }
.gdc-rip__title { font-family: var(--gdc-display); font-size: clamp(32px, 4.5vw, 52px); color: #fff; margin: 0 0 10px; letter-spacing: 0.02em; }
.gdc-rip__sub { font-size: 16px; color: rgba(255, 255, 255, 0.9); max-width: 480px; margin: 0 auto 26px; font-weight: 500; }
.gdc-rip__form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.gdc-rip__input { flex: 1; min-width: 200px; border: 2px solid var(--gdc-ink); border-radius: 12px; padding: 14px 16px; font-family: var(--gdc-body); font-size: 15px; outline: none; background: #fff; color: var(--gdc-ink); }
.gdc-rip__btn { border: 2px solid var(--gdc-ink); background: var(--gdc-ink); color: #fff; font-family: var(--gdc-display); font-size: 17px; letter-spacing: 0.04em; padding: 0 28px; border-radius: 12px; cursor: pointer; transition: background .15s; }
.gdc-rip__btn:hover { background: #000; }
.gdc-rip__done { display: inline-flex; align-items: center; gap: 10px; background: var(--gdc-ink); color: #fff; border-radius: 12px; padding: 14px 24px; font-family: var(--gdc-display); font-size: 18px; letter-spacing: 0.03em; }

/* ---------- Footer ---------- */
.gdc-footer { background: var(--gdc-ink); color: var(--gdc-muted-3); scroll-margin-top: 120px; }
.gdc-footer__top { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; padding: 48px 28px 28px; }
.gdc-footer__brand { flex: 1 1 280px; min-width: 240px; }
.gdc-footer__brandrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.gdc-footer__logo { width: 38px; height: 38px; background: var(--gdc-red); border-radius: 9px; display: flex; align-items: center; justify-content: center; transform: rotate(-4deg); }
.gdc-footer__logo span { font-family: var(--gdc-display); color: #fff; font-size: 21px; transform: rotate(4deg); }
.gdc-footer__name { font-family: var(--gdc-display); font-size: 20px; color: #fff; letter-spacing: 0.04em; }
.gdc-footer__about { font-size: 14px; line-height: 1.6; max-width: 300px; margin: 0; font-weight: 500; }
.gdc-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.gdc-footer__col-title { font-family: var(--gdc-display); font-size: 14px; letter-spacing: 0.08em; color: #fff; margin-bottom: 14px; }
.gdc-footer__col a { display: block; text-decoration: none; color: var(--gdc-muted-3); font-size: 14px; font-weight: 500; padding: 5px 0; transition: color .15s; }
.gdc-footer__col a:hover { color: var(--gdc-red); }
.gdc-footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.gdc-footer__barinner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #7C766A; padding: 18px 28px; }
.gdc-footer__bar em { font-style: italic; }

/* ---------- Cart drawer ---------- */
.gdc-cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(28, 26, 20, 0.5); animation: gdcFade 0.18s ease; display: none; }
.gdc-cart-overlay.is-open { display: block; }
.gdc-cart { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 100%); background: var(--gdc-cream); display: flex; flex-direction: column; box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25); animation: gdcSlide 0.26s cubic-bezier(0.16, 1, 0.3, 1); }
.gdc-cart__head { padding: 22px 24px; border-bottom: 1px solid var(--gdc-line); display: flex; align-items: center; justify-content: space-between; background: var(--gdc-ink); }
.gdc-cart__title { font-family: var(--gdc-display); font-size: 22px; color: #fff; letter-spacing: 0.03em; }
.gdc-cart__sub { font-size: 12.5px; color: var(--gdc-muted-3); font-weight: 600; margin-top: 2px; }
.gdc-cart__close { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255, 255, 255, 0.2); background: transparent; color: #fff; font-size: 18px; cursor: pointer; transition: background .15s; }
.gdc-cart__close:hover { background: rgba(255, 255, 255, 0.1); }
.gdc-cart__items { flex: 1; overflow-y: auto; padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.gdc-cart__empty { text-align: center; padding: 50px 16px; color: var(--gdc-muted-2); }
.gdc-cart__empty-face { font-size: 42px; margin-bottom: 10px; }
.gdc-cart__empty-title { font-family: var(--gdc-display); font-size: 20px; color: var(--gdc-ink); margin-bottom: 6px; }
.gdc-cart__empty p { font-size: 14px; font-weight: 500; margin: 0; }
.gdc-citem { display: flex; gap: 13px; background: #fff; border: 1px solid var(--gdc-line); border-radius: 13px; padding: 12px; }
.gdc-citem__img { width: 58px; height: 80px; flex: none; border-radius: 7px; overflow: hidden; background: linear-gradient(165deg, #F7F4ED 0%, #ECE6D9 100%); }
.gdc-citem__img img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.gdc-citem__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.gdc-citem__player { font-family: var(--gdc-display); font-size: 15px; color: var(--gdc-ink); line-height: 1.1; }
.gdc-citem__meta { font-size: 11.5px; color: var(--gdc-muted-2); font-weight: 600; }
.gdc-citem__row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 8px; }
.gdc-qty { display: flex; align-items: center; border: 1px solid var(--gdc-line); border-radius: 8px; overflow: hidden; }
.gdc-qty button { border: none; background: var(--gdc-cream); width: 28px; height: 28px; cursor: pointer; font-size: 15px; color: var(--gdc-ink); }
.gdc-qty span { width: 28px; text-align: center; font-weight: 700; font-size: 13px; }
.gdc-citem__line { font-weight: 800; font-size: 15px; color: var(--gdc-ink); }
.gdc-citem__remove { border: none; background: transparent; color: #A8A29E; font-size: 15px; cursor: pointer; align-self: flex-start; transition: color .15s; }
.gdc-citem__remove:hover { color: var(--gdc-red); }
.gdc-cart__foot { border-top: 1px solid var(--gdc-line); padding: 18px 22px; background: #fff; }
.gdc-cart__tbd { font-size: 12px; color: var(--gdc-red); font-weight: 600; margin-bottom: 10px; }
.gdc-cart__subtotal { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.gdc-cart__subtotal span:first-child { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gdc-muted-2); }
.gdc-cart__total { font-family: var(--gdc-display); font-size: 30px; color: var(--gdc-ink); }
.gdc-cart__checkout { width: 100%; border: none; background: var(--gdc-red); color: #fff; font-family: var(--gdc-display); font-size: 18px; letter-spacing: 0.04em; padding: 15px; border-radius: 12px; cursor: pointer; transition: background .15s; }
.gdc-cart__checkout:hover { background: var(--gdc-red-dark); }
.gdc-cart__note { text-align: center; font-size: 11.5px; color: #A8A29E; margin: 10px 0 0; font-weight: 500; }

.gdc-hide { display: none !important; }

/* ---------- Inner page shell (player, character, search, generic) ---------- */
.gdc-page { padding: 48px 28px 64px; }
.gdc-page__header { margin-bottom: 28px; }
.gdc-page__kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gdc-red); margin-bottom: 8px; }
.gdc-page__title { font-family: var(--gdc-display); font-size: clamp(34px, 5vw, 56px); line-height: 0.96; margin: 0; color: var(--gdc-ink); }
.gdc-page__layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; }
.gdc-prose { font-size: 16px; line-height: 1.7; color: var(--gdc-text); }
.gdc-prose h1, .gdc-prose h2, .gdc-prose h3 { font-family: var(--gdc-display); color: var(--gdc-ink); letter-spacing: 0.01em; line-height: 1.05; margin: 1.6em 0 0.5em; }
.gdc-prose h2 { font-size: 28px; } .gdc-prose h3 { font-size: 21px; }
.gdc-prose p { margin: 0 0 1.1em; }
.gdc-prose a { color: var(--gdc-red); text-decoration: underline; text-underline-offset: 2px; }
.gdc-prose img { border-radius: 14px; border: 1px solid var(--gdc-line); margin: 1em 0; }
.gdc-prose ul, .gdc-prose ol { margin: 0 0 1.1em; padding-left: 1.3em; }
.gdc-prose blockquote { margin: 1.2em 0; padding: 14px 20px; border-left: 4px solid var(--gdc-red); background: #fff; border-radius: 0 12px 12px 0; font-style: italic; color: var(--gdc-muted); }
.gdc-prose table { border-collapse: collapse; width: 100%; margin: 1.2em 0; font-size: 14px; }
.gdc-prose th, .gdc-prose td { border: 1px solid var(--gdc-line); padding: 8px 12px; text-align: left; }
.gdc-prose th { background: #F0EADC; font-family: var(--gdc-body); font-weight: 700; }

.gdc-archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 28px; }
.gdc-pcard { background: #fff; border: 1px solid var(--gdc-line); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: border-color .15s, transform .15s, box-shadow .15s; }
.gdc-pcard:hover { border-color: var(--gdc-ink); transform: translateY(-4px); box-shadow: 0 14px 30px rgba(28, 26, 20, 0.12); }
.gdc-pcard__img { aspect-ratio: 5 / 7; background: linear-gradient(165deg, #F7F4ED 0%, #ECE6D9 100%); display: flex; align-items: center; justify-content: center; color: var(--gdc-muted-2); font-weight: 700; }
.gdc-pcard__img img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.gdc-pcard__body { padding: 14px 16px 16px; }
.gdc-pcard__name { font-family: var(--gdc-display); font-size: 18px; color: var(--gdc-ink); line-height: 1.05; }
.gdc-pcard__meta { font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gdc-muted-2); margin-top: 4px; }

.gdc-pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 36px; justify-content: center; }
.gdc-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--gdc-line-2); border-radius: 10px; background: #fff; font-weight: 700; font-size: 14px; color: var(--gdc-ink); text-decoration: none; }
.gdc-pagination .page-numbers.current { background: var(--gdc-ink); border-color: var(--gdc-ink); color: #fff; }
.gdc-pagination .page-numbers:hover { border-color: var(--gdc-red); color: var(--gdc-red); }

.gdc-searchbar { display: flex; max-width: 560px; background: #fff; border: 2px solid var(--gdc-ink); border-radius: 14px; overflow: hidden; box-shadow: 0 6px 0 rgba(28, 26, 20, 0.12); margin-top: 18px; }
.gdc-searchbar input { flex: 1; border: none; outline: none; padding: 14px 16px; font-family: var(--gdc-body); font-size: 15px; background: transparent; }
.gdc-searchbar button { border: none; background: var(--gdc-red); color: #fff; font-family: var(--gdc-display); font-size: 16px; letter-spacing: 0.04em; padding: 0 26px; cursor: pointer; }

/* ---------- 404 ---------- */
.gdc-404 { text-align: center; padding: 90px 28px 100px; }
.gdc-404__code { font-family: var(--gdc-display); font-size: clamp(80px, 16vw, 180px); line-height: 0.9; color: var(--gdc-ink); }
.gdc-404__code span { color: var(--gdc-red); }
.gdc-404__msg { font-size: 18px; color: var(--gdc-muted); font-weight: 500; margin: 8px 0 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .gdc-toolbar { top: 0; }
  .gdc-hero__inner { padding: 40px 28px 36px; }
  .gdc-rant__box { padding: 30px; }
}
@media (max-width: 600px) {
  .gdc-wrap, .gdc-hero__inner, .gdc-rant, .gdc-rip, .gdc-footer__top, .gdc-footer__barinner { padding-left: 18px; padding-right: 18px; }
  .gdc-nav__inner { gap: 0; }
  .gdc-nav a { padding: 11px 10px; font-size: 12.5px; }
  .gdc-stat { flex-basis: 50%; border-bottom: 1px solid var(--gdc-line); }
}

/* ---------- Card zoom (full front + back) ---------- */
.gdc-card__img[data-gdc-zoom], .gdc-fan-card[data-gdc-zoom] { cursor: zoom-in; }
.gdc-zoom { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 28px; animation: gdcFade 0.18s ease; }
.gdc-zoom__back { position: absolute; inset: 0; background: rgba(28, 26, 20, 0.82); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); cursor: zoom-out; }
.gdc-zoom__inner { position: relative; z-index: 1; max-width: min(1100px, 94vw); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gdc-zoom__inner img { max-width: 100%; max-height: 78vh; width: auto; height: auto; object-fit: contain; border-radius: 12px; background: #fff; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5); }
.gdc-zoom__close { position: absolute; top: -16px; right: -16px; width: 42px; height: 42px; border-radius: 999px; border: none; background: #fff; color: var(--gdc-ink); font-size: 18px; cursor: pointer; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35); transition: transform .15s; }
.gdc-zoom__close:hover { transform: scale(1.06); }
.gdc-zoom__hint { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gdc-gold); }
.gdc-zoom__cap { color: #fff; text-align: center; display: flex; flex-direction: column; gap: 2px; }
.gdc-zoom__cap strong { font-family: var(--gdc-display); font-size: 20px; letter-spacing: 0.02em; }
.gdc-zoom__cap span { font-size: 12px; font-weight: 600; color: var(--gdc-muted-3); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   Player page (generated body) — .gdc-pp
   Comp: docs/design/comp-player-page.dc.html. Brand stays base;
   team color is an accent (bar / eyebrow pill / hero wash).
   ============================================================ */
.gdc-pp { width: 100%; color: var(--gdc-ink); }
.gdc-pp-wrap { max-width: var(--gdc-max); margin: 0 auto; padding: 0 28px; }
.gdc-pp-h2 {
  font-family: var(--gdc-display); font-size: 24px; letter-spacing: 0.02em;
  margin: 0 0 14px; color: var(--gdc-ink); text-transform: uppercase;
}
.gdc-pp-eyebrow-txt {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gdc-red); margin-bottom: 6px;
}

/* Team accent bar */
.gdc-pp-teambar { width: 100%; height: 6px; }

/* Hero */
.gdc-pp-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 100% 0%, #FBF8F1 0%, #F0EADC 55%, #EAE2D1 100%);
  border-bottom: 1px solid var(--gdc-line);
}
.gdc-pp-hero__wash { position: absolute; inset: 0; pointer-events: none; }
.gdc-pp-hero__inner { max-width: var(--gdc-max); margin: 0 auto; padding: 20px 28px 44px; position: relative; }
.gdc-pp-crumb {
  font-size: 13px; font-weight: 600; color: var(--gdc-muted-2);
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center; padding-bottom: 18px;
}
.gdc-pp-crumb a { text-decoration: none; color: var(--gdc-muted-2); }
.gdc-pp-crumb a:hover { color: var(--gdc-red); }
.gdc-pp-crumb__cur { color: var(--gdc-ink); }
.gdc-pp-hero__grid { display: flex; gap: 52px; align-items: center; flex-wrap: wrap; }
.gdc-pp-hero__copy { flex: 0 1 auto; min-width: 300px; max-width: 560px; }
.gdc-pp-eyebrow {
  display: inline-block; font-family: var(--gdc-display); font-size: 13px;
  letter-spacing: 0.05em; padding: 6px 14px; border-radius: 8px; margin-bottom: 16px;
}
.gdc-pp-name {
  font-family: var(--gdc-display); font-size: clamp(50px, 7vw, 98px); line-height: 0.85;
  letter-spacing: 0.01em; margin: 0 0 18px; color: var(--gdc-ink);
  text-transform: uppercase; text-wrap: balance;
}
.gdc-pp-name__last { color: var(--gdc-red); }
.gdc-pp-poschips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.gdc-pp-poschip {
  background: #fff; border: 1px solid var(--gdc-line); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; font-weight: 600; color: #3A372C;
}
.gdc-pp-stats { display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-end; }
.gdc-pp-stat__num { font-family: var(--gdc-display); font-size: 40px; line-height: 0.9; color: var(--gdc-ink); }
.gdc-pp-stat__num--green { color: #1B7A3D; }
.gdc-pp-stat__num--red { color: var(--gdc-red); }
.gdc-pp-stat__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gdc-muted-3); margin-top: 4px;
}
.gdc-pp-hero__cta { margin-top: 30px; }
.gdc-pp-btn {
  display: inline-block; text-decoration: none; background: var(--gdc-red); color: #fff;
  font-family: var(--gdc-display); font-size: 16px; letter-spacing: 0.04em;
  padding: 14px 26px; border-radius: 12px;
}
.gdc-pp-btn:hover { background: var(--gdc-red-dark); }
.gdc-pp-hero__cards { flex: 0 0 auto; min-width: 300px; display: flex; gap: 16px; align-items: flex-end; }
.gdc-pp-feat { text-align: center; }
.gdc-pp-feat__tag {
  display: inline-flex; align-items: center; gap: 6px; background: var(--gdc-ink);
  color: var(--gdc-gold); font-family: var(--gdc-display); font-size: 12px;
  letter-spacing: 0.05em; padding: 5px 12px; border-radius: 7px; margin-bottom: 10px;
}
.gdc-pp-feat__mini {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--gdc-muted-3); margin-bottom: 6px;
}
.gdc-pp-feat__row { display: flex; gap: 16px; align-items: flex-end; }
.gdc-pp-feat__img {
  width: 190px; height: 266px; border: 6px solid #fff; border-radius: 13px; overflow: hidden;
  box-shadow: 0 14px 30px rgba(28,26,20,0.18); background: #ECE6D9;
}
.gdc-pp-feat__img--lg {
  width: 236px; height: 330px; border-width: 7px; border-radius: 16px;
  box-shadow: 0 22px 46px rgba(28,26,20,0.22);
}
.gdc-pp-feat__img img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.gdc-pp-feat__ph {
  display: flex; align-items: center; justify-content: center;
  color: var(--gdc-muted-3); font-family: var(--gdc-display); font-size: 14px;
}

/* Gallery */
.gdc-pp-gallery { padding-top: 40px; padding-bottom: 8px; scroll-margin-top: 116px; }
.gdc-pp-gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.gdc-pp-gallery__sub { font-size: 14.5px; color: var(--gdc-muted); max-width: 330px; margin: 0; font-weight: 500; }
.gdc-pp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(216px, 1fr)); gap: 20px; margin-top: 26px; }

/* Dad's Take */
.gdc-pp-take {
  position: relative; overflow: hidden; background: #fff; border: 1px solid var(--gdc-line);
  border-left: 6px solid var(--gdc-red); border-radius: 0 22px 22px 0; padding: 38px 44px; margin: 40px 0;
}
.gdc-pp-take__emoji { position: absolute; right: -10px; bottom: -50px; font-size: 200px; line-height: 1; opacity: 0.05; pointer-events: none; }
.gdc-pp-take__inner { position: relative; max-width: 820px; }
.gdc-pp-take__head { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.gdc-pp-take__badge { background: var(--gdc-red); color: #fff; font-family: var(--gdc-display); font-size: 12px; letter-spacing: 0.06em; padding: 5px 12px; border-radius: 6px; }
.gdc-pp-take__on { font-family: var(--gdc-display); font-size: 18px; color: var(--gdc-ink); letter-spacing: 0.02em; }
.gdc-pp-take__body { font-size: 15.5px; line-height: 1.7; color: var(--gdc-muted); margin: 0; font-weight: 500; }

/* About + sidebar */
.gdc-pp-about { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; padding-bottom: 12px; }
.gdc-pp-about__p { font-size: 15.5px; line-height: 1.7; color: #3A372C; margin: 0 0 16px; font-weight: 500; }
.gdc-pp-cite { border-left: 4px solid var(--gdc-line); padding: 4px 0 4px 18px; margin: 18px 0 0; }
.gdc-pp-cite p { font-size: 14px; line-height: 1.6; color: var(--gdc-muted-2); font-style: italic; margin: 0; }
.gdc-pp-cite__src { font-size: 12px; font-weight: 700; color: var(--gdc-muted-3); margin-top: 8px; letter-spacing: 0.04em; }
.gdc-pp-aside { display: flex; flex-direction: column; gap: 18px; }
.gdc-pp-mw, .gdc-pp-notify { background: #fff; border: 1px solid var(--gdc-line); border-radius: 18px; padding: 22px; }
.gdc-pp-mw__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-family: var(--gdc-display); font-size: 16px; letter-spacing: 0.04em; }
.gdc-pp-mw__rows { display: flex; flex-direction: column; gap: 10px; }
.gdc-pp-mw__row { display: flex; align-items: center; justify-content: space-between; background: var(--gdc-cream); border-radius: 10px; padding: 12px 14px; }
.gdc-pp-mw__k { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gdc-muted-2); }
.gdc-pp-mw__v { font-family: var(--gdc-display); font-size: 20px; color: var(--gdc-ink); }
.gdc-pp-mw__v--green { color: #1B7A3D; }
.gdc-pp-notify__title { font-family: var(--gdc-display); font-size: 17px; letter-spacing: 0.03em; margin-bottom: 8px; }
.gdc-pp-notify__sub { font-size: 13px; line-height: 1.5; color: var(--gdc-muted-2); margin: 0 0 14px; font-weight: 500; }
.gdc-pp-notify__form { display: flex; flex-direction: column; gap: 10px; }
.gdc-pp-notify__input { border: 1px solid var(--gdc-line-2); background: var(--gdc-cream); border-radius: 10px; padding: 12px 14px; font-family: var(--gdc-body); font-size: 14px; color: var(--gdc-ink); outline: none; }
.gdc-pp-notify__btn { border: none; background: var(--gdc-red); color: #fff; font-family: var(--gdc-display); font-size: 15px; letter-spacing: 0.04em; padding: 12px; border-radius: 10px; cursor: pointer; }
.gdc-pp-notify__btn:hover { background: var(--gdc-red-dark); }
.gdc-pp-notify__done { background: var(--gdc-cream); border: 1px solid var(--gdc-line-2); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; font-weight: 600; color: #1B7A3D; }
.gdc-pp-explore { display: flex; flex-direction: column; gap: 10px; }
.gdc-pp-explore__link { text-decoration: none; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--gdc-line); color: var(--gdc-ink); border-radius: 12px; padding: 14px 18px; font-family: var(--gdc-body); font-weight: 700; font-size: 14px; }
.gdc-pp-explore__link:hover { border-color: var(--gdc-ink); background: #FBF9F4; }
.gdc-pp-explore__ico { font-size: 17px; }
.gdc-pp-explore__arrow { margin-left: auto; color: var(--gdc-red); }

/* Related players */
.gdc-pp-related { padding-top: 28px; padding-bottom: 8px; }
.gdc-pp-related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 18px; }
.gdc-pp-related__card { text-decoration: none; display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--gdc-line); border-radius: 14px; padding: 14px; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; }
.gdc-pp-related__card:hover { border-color: var(--gdc-ink); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(28,26,20,0.1); }
.gdc-pp-related__img { width: 50px; height: 70px; flex: none; border-radius: 7px; overflow: hidden; background: #ECE6D9; }
.gdc-pp-related__img img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.gdc-pp-related__mono { display: flex; align-items: center; justify-content: center; font-family: var(--gdc-display); font-size: 24px; color: var(--gdc-muted-3); }
.gdc-pp-related__body { flex: 1; min-width: 0; }
.gdc-pp-related__name { font-family: var(--gdc-display); font-size: 16px; color: var(--gdc-ink); line-height: 1.05; }
.gdc-pp-related__meta { font-size: 11.5px; color: var(--gdc-muted-2); font-weight: 600; margin-top: 3px; }
.gdc-pp-related__arrow { color: var(--gdc-red); font-weight: 800; }

/* FAQ (SEO) */
.gdc-pp-faq { padding-top: 28px; padding-bottom: 8px; }
.gdc-pp-faq__list { display: flex; flex-direction: column; gap: 14px; }
.gdc-pp-faq__item { background: #fff; border: 1px solid var(--gdc-line); border-radius: 14px; padding: 20px 24px; }
.gdc-pp-faq__q { margin: 0 0 8px; font-size: 16px; font-weight: 700; color: var(--gdc-ink); }
.gdc-pp-faq__a p { margin: 0; font-size: 14.5px; line-height: 1.7; color: #3A372C; }

@media (max-width: 900px) {
  .gdc-pp-about { grid-template-columns: 1fr; }
  .gdc-pp-hero__grid { gap: 28px; }
  .gdc-pp-hero__cards { order: -1; }
}
@media (max-width: 560px) {
  .gdc-pp-feat__img--lg { width: 180px; height: 252px; }
  .gdc-pp-feat__img { width: 130px; height: 182px; }
  .gdc-pp-stats { gap: 18px; }
}
