*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0B0706;
  --surface:  #160C0E;
  --surface2: #1F1014;
  --border:   #2E1A1F;
  --border-subtle: rgba(46,26,31,0.7);
  --gold:     #C9A227;
  --gold-hi:  #EDD06A;
  --gold-dim: rgba(201,162,39,0.12);
  --red:      #B51E1E;
  --green:    #4caf7d;
  --text:     #F0E5CC;
  --muted:    #8a7a6a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── FLOATING SUITS BACKGROUND ── */
.suits-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.suit-float {
  position: absolute;
  font-size: 5rem;
  opacity: 0.025;
  animation: floatUp linear infinite;
  user-select: none;
}
@keyframes floatUp {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.025; }
  90%  { opacity: 0.025; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

/* ── NAV ── */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,7,6,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .nav-suits { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; font-family: 'DM Sans', sans-serif; font-weight: 400; opacity: 0.6; }
.nav-links { display: flex; align-items: center; gap: 28px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #8B6A10 100%);
  color: #0B0706;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(201,162,39,0.22);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse at 35% 15%, rgba(107,23,40,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(61,10,21,0.35) 0%, transparent 50%),
    var(--bg);
}
.hero-suits {
  display: flex;
  gap: 20px;
  font-size: 1.5rem;
  margin-bottom: 28px;
  opacity: 0.5;
}
.hero-suits span { animation: suitPulse 3s ease-in-out infinite; }
.hero-suits span:nth-child(1) { animation-delay: 0s;    color: var(--text); }
.hero-suits span:nth-child(2) { animation-delay: 0.4s;  color: var(--red); }
.hero-suits span:nth-child(3) { animation-delay: 0.8s;  color: var(--text); }
.hero-suits span:nth-child(4) { animation-delay: 1.2s;  color: var(--red); }
@keyframes suitPulse {
  0%, 100% { transform: translateY(0);    opacity: 0.5; }
  50%       { transform: translateY(-6px); opacity: 1;   }
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 80px rgba(201,162,39,0.2);
}
.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-desc {
  max-width: 500px;
  font-size: 1.05rem;
  color: rgba(240,229,204,0.65);
  line-height: 1.8;
  margin-bottom: 44px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary-lg {
  background: linear-gradient(135deg, var(--gold) 0%, #8B6A10 100%);
  color: #0B0706;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,162,39,0.28);
  letter-spacing: 0.02em;
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,162,39,0.4); }
.btn-ghost-lg {
  background: transparent;
  color: rgba(240,229,204,0.65);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(201,162,39,0.28);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-lg:hover { border-color: rgba(201,162,39,0.55); color: var(--text); }

/* Card fan */
.hero-cards {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  height: 200px;
  pointer-events: none;
}
.card-fan {
  position: absolute;
  bottom: -20px;
  left: 50%;
  display: flex;
}
.card-v {
  width: 62px;
  height: 92px;
  border-radius: 8px;
  border: 1px solid rgba(201,162,39,0.12);
  position: absolute;
  bottom: 0;
  transform-origin: bottom center;
  background: linear-gradient(145deg, #2A0810 0%, #190509 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
}
.card-v::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M30 10 L50 30 L30 50 L10 30 Z' fill='none' stroke='%23C9A227' stroke-width='0.8' opacity='0.25'/%3E%3Cline x1='30' y1='14' x2='30' y2='46' stroke='%23C9A227' stroke-width='0.6' opacity='0.18'/%3E%3Cline x1='14' y1='30' x2='46' y2='30' stroke='%23C9A227' stroke-width='0.6' opacity='0.18'/%3E%3Cline x1='16' y1='16' x2='44' y2='44' stroke='%23C9A227' stroke-width='0.45' opacity='0.1'/%3E%3Cline x1='44' y1='16' x2='16' y2='44' stroke='%23C9A227' stroke-width='0.45' opacity='0.1'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%23C9A227' opacity='0.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.card-v::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: 3px;
}
.card-v:nth-child(1) { transform: translateX(-140px) rotate(-22deg); }
.card-v:nth-child(2) { transform: translateX(-80px)  rotate(-11deg); }
.card-v:nth-child(3) { transform: translateX(-20px)  rotate(0deg);   }
.card-v:nth-child(4) { transform: translateX( 40px)  rotate(11deg);  }
.card-v:nth-child(5) { transform: translateX(100px)  rotate(22deg);  }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* ── FEATURES ── */
#features {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title em { font-style: normal; color: var(--gold); }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 480px; line-height: 1.75; margin-bottom: 60px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.feat-card:hover { border-color: rgba(201,162,39,0.3); transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; }
.feat-card.highlight { border-color: rgba(201,162,39,0.2); background: linear-gradient(145deg, #240810 0%, var(--surface) 100%); }
.feat-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.feat-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feat-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

/* ── HOW TO PLAY ── */
#how-to-play {
  padding: 100px 48px;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(107,23,40,0.3) 0%, var(--bg) 65%);
}
.how-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.steps { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.step p  { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* Table visual */
.table-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.table-wrap { position: relative; padding: 72px; }
.game-table {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, #0C4030 0%, #071E17 100%);
  border: 2px solid rgba(76,175,125,0.15);
  box-shadow: 0 0 60px rgba(76,175,125,0.05), inset 0 0 40px rgba(0,0,0,0.5);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-table::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1.5px dashed rgba(201,162,39,0.1);
  pointer-events: none;
}
.table-center-card {
  width: 62px; height: 90px;
  background: linear-gradient(145deg, #2A0810 0%, #190509 100%);
  border: 1.5px solid rgba(201,162,39,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
  z-index: 1;
  color: var(--gold);
}
.table-player {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.tp-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.3);
}
.tp-avatar.team-a { border-color: var(--gold);  box-shadow: 0 0 0 4px rgba(201,162,39,0.12); }
.tp-avatar.team-b { border-color: var(--green); box-shadow: 0 0 0 4px rgba(76,175,125,0.12); }
.tp-name { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.tp-name.team-a { color: var(--gold); }
.tp-name.team-b { color: var(--green); }
.table-player.top    { top: -58px;  left: 50%; transform: translateX(-50%); }
.table-player.bottom { bottom: -58px; left: 50%; transform: translateX(-50%); }
.table-player.left   { left: -66px; top: 50%; transform: translateY(-50%); }
.table-player.right  { right: -66px; top: 50%; transform: translateY(-50%); }
.team-legend { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.team-badge {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 7px 16px; border-radius: 20px;
  white-space: nowrap; display: flex; align-items: center; gap: 7px;
}
.team-badge.a { color: var(--gold);  background: rgba(201,162,39,0.1);  border: 1px solid rgba(201,162,39,0.28); }
.team-badge.b { color: var(--green); background: rgba(76,175,125,0.08); border: 1px solid rgba(76,175,125,0.25); }
.team-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.team-badge.a .team-dot { background: var(--gold); }
.team-badge.b .team-dot { background: var(--green); }

/* ── TRUMP SECTION ── */
#trump-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.trump-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.trump-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.trump-card:hover { transform: translateY(-4px); }
.trump-card.spades:hover  { border-color: rgba(240,229,204,0.35); background: rgba(240,229,204,0.04); }
.trump-card.hearts:hover  { border-color: rgba(181,30,30,0.5);   background: rgba(181,30,30,0.06); }
.trump-card.clubs:hover   { border-color: rgba(240,229,204,0.35); background: rgba(240,229,204,0.04); }
.trump-card.diamonds:hover{ border-color: rgba(181,30,30,0.5);   background: rgba(181,30,30,0.06); }
.trump-sym { font-size: 2.8rem; display: block; margin-bottom: 10px; }
.trump-name { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.trump-card.hearts .trump-sym,
.trump-card.diamonds .trump-sym { color: var(--red); }
.trump-card.spades .trump-sym,
.trump-card.clubs .trump-sym   { color: var(--text); opacity: 0.75; }

/* ── CTA SECTION ── */
#cta {
  padding: 120px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(107,23,40,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(61,10,21,0.3) 0%, transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '♠';
  position: absolute;
  font-size: 28rem;
  color: rgba(255,255,255,0.012);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}
.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  color: var(--text);
}
.cta-title em { font-style: normal; color: var(--gold); }
.cta-sub { color: var(--muted); font-size: 1rem; margin-bottom: 44px; max-width: 440px; margin-left: auto; margin-right: auto; position: relative; line-height: 1.7; }
.cta-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 28px; position: relative; }
.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 16px;
  opacity: 0.85;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .footer-note { font-size: 0.74rem; color: var(--muted); opacity: 0.7; }
.footer-bottom .footer-suits { font-size: 0.85rem; color: var(--muted); opacity: 0.4; letter-spacing: 0.4em; }

/* ── FAQ ── */
#faq {
  padding: 100px 48px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--surface);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-q:hover { background: rgba(201,162,39,0.04); }
.faq-q .faq-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 24px 20px; }

/* ── GLOSSARY ── */
#glossary {
  padding: 0 48px 100px;
  max-width: 800px;
  margin: 0 auto;
}
.gloss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.gloss-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.gloss-term { font-size: 0.82rem; font-weight: 700; color: var(--gold); margin-bottom: 5px; letter-spacing: 0.04em; }
.gloss-def  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── EXPLORE STRIP (cluster links on homepage + sub-pages) ── */
#explore {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.explore-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.explore-card:hover { border-color: rgba(201,162,39,0.35); transform: translateY(-2px); }
.explore-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--gold); letter-spacing: 0.02em; }
.explore-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ── ARTICLE / CLUSTER PAGE LAYOUT ── */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  position: relative;
  z-index: 1;
}
.article-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.85;
}
.article h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.article h1 em { font-style: normal; color: var(--gold); }
.article .lede {
  font-size: 1.1rem;
  color: rgba(240,229,204,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
}
.article h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 10px;
}
.article p, .article li {
  font-size: 0.98rem;
  color: rgba(240,229,204,0.78);
  line-height: 1.8;
  margin-bottom: 14px;
}
.article ul, .article ol { padding-left: 22px; margin-bottom: 16px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--text); font-weight: 700; }
.article a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,162,39,0.3);
  transition: border-color 0.2s;
}
.article a:hover { border-color: var(--gold); }
.article a.btn-primary-lg,
.article a.btn-ghost-lg {
  color: #0B0706;
  border-bottom: none;
}
.article a.btn-ghost-lg { color: rgba(240,229,204,0.75); }
.article a.btn-primary-lg:hover,
.article a.btn-ghost-lg:hover { border-bottom: none; }
.breadcrumbs {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; border: none; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }
.article-cta {
  background: linear-gradient(145deg, #240810 0%, var(--surface) 100%);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 14px;
  padding: 28px 30px;
  margin: 40px 0;
  text-align: center;
}
.article-cta h3 {
  font-family: 'Cinzel', serif;
  color: var(--text);
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.article-cta p { margin-bottom: 18px; }
.related-pages {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.related-pages h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 18px;
}
.related-list { display: flex; flex-direction: column; gap: 10px; }
.related-list a {
  display: block;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s;
}
.related-list a:hover { border-color: rgba(201,162,39,0.35); }
.related-list a span { color: var(--muted); font-size: 0.82rem; display: block; margin-top: 3px; font-weight: 400; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav.main-nav .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  #features, #trump-section, #how-to-play, #faq, #glossary, #cta, #explore { padding: 64px 20px; }
  #cta::before { display: none; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .table-visual { display: none; }
  .trump-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { gap: 32px; padding: 28px 20px; }
  .footer-inner { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .article { padding: 110px 20px 60px; }
}
