/* ============================================================
   Word Craze Answers — wordcrazeanswer.info
   Design: Matching CodyCross Answers template
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --c-bg:        #F5F3FF;
  --c-white:     #FFFFFF;
  --c-light:     #F8F7FF;
  --c-border:    #E5E7EB;
  --c-navy:      #1e1b4b;
  --c-violet:    #4c1d95;
  --c-purple:    #7c3aed;
  --c-muted:     #6B7280;
  --c-ink:       #111827;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 12px rgba(0,0,0,.09), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 24px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
}

a { color: var(--c-purple); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-violet); }
p { margin-bottom: .85rem; }

/* ===== Layout ===== */
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 22px; }

/* ===== Header ===== */
.site-header {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 55%, #5b21b6 100%);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.site-header .wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 13px; padding-bottom: 13px;
  gap: 16px;
}
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 20px;
  color: #fff; letter-spacing: -.01em;
  line-height: 1; display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; line-height: 1;
  box-shadow: 0 2px 8px rgba(109,40,217,.5);
  flex-shrink: 0; color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 800;
}
.logo em { color: #c4b5fd; font-style: normal; }
.site-nav { display: flex; gap: 3px; }
.site-nav a {
  color: rgba(255,255,255,.75);
  padding: 7px 13px; border-radius: 20px;
  font-size: 14px; font-weight: 500;
  transition: all .2s ease;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.15); }
.site-nav a.active { color: #fff; background: rgba(255,255,255,.12); }

/* ===== Breadcrumb ===== */
.breadcrumb-bar {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: .6rem 0;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .25rem; list-style: none;
  font-size: .83rem;
}
.breadcrumb a { color: var(--c-purple); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .bc-current { color: var(--c-muted); }
.bc-sep { color: var(--c-border); margin: 0 .1rem; }

/* ===== Page Hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-violet) 60%, #7c3aed 100%);
  padding: 3.5rem 1.25rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -120px; right: -80px;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  bottom: -80px; left: -40px;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #fff; line-height: 1.2;
  letter-spacing: -.02em;
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto .75rem;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  position: relative; z-index: 1;
  max-width: 560px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .82rem; font-weight: 600;
  padding: .35rem .9rem; border-radius: 20px;
  margin-bottom: 1.1rem;
  position: relative; z-index: 1;
}
.hero-wave {
  display: block; width: 100%; height: 48px;
  margin-top: -2px; color: var(--c-bg);
}

/* ===== Main content ===== */
.main-content { padding: 2rem 0 3rem; }

/* ===== Level block cards (home) ===== */
.blocks-grid-section { margin-top: 2rem; }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--c-navy); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px; height: 1.3rem;
  background: linear-gradient(to bottom, var(--c-purple), var(--c-violet));
  border-radius: 4px;
  flex-shrink: 0;
}
.section-intro {
  color: var(--c-muted); font-size: .95rem;
  margin-bottom: 1.5rem; line-height: 1.65;
}
.blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.block-card {
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: .4rem; text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 100px;
}
.block-card::after {
  content: '→';
  position: absolute; bottom: .8rem; right: 1rem;
  font-size: 1.2rem; color: rgba(255,255,255,.45);
  transition: color .2s;
}
.block-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.block-card:hover::after { color: rgba(255,255,255,.8); }
.block-range {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  color: #fff; line-height: 1.1;
}
.block-sub {
  font-size: .78rem; font-weight: 500;
  color: rgba(255,255,255,.75);
}

/* ===== Daily highlight ===== */
.daily-highlight {
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #0369a1 100%);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  margin-bottom: 2rem;
  color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.daily-highlight::after {
  content: '☀';
  position: absolute; right: 1.5rem; top: 1rem;
  font-size: 5rem; opacity: .08; line-height: 1;
  pointer-events: none;
}
.daily-eyebrow {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .25rem .75rem; border-radius: 20px;
  margin-bottom: .75rem;
}
.daily-highlight h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.25rem;
  color: #fff; margin: 0 0 1.1rem;
}
.daily-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--c-violet);
  padding: .55rem 1.4rem; border-radius: 22px;
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.daily-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  text-decoration: none; color: var(--c-violet);
}

/* ===== Level grid (group page) ===== */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .6rem; margin-bottom: 2.5rem;
}
.level-card {
  display: flex; align-items: center; justify-content: center;
  padding: .75rem .5rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-ink); font-weight: 600; font-size: .9rem;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
  text-decoration: none;
}
.level-card:hover {
  background: var(--c-purple); color: #fff;
  border-color: var(--c-purple);
  transform: translateY(-2px); box-shadow: var(--shadow);
  text-decoration: none;
}

/* Old level-index kept for compat */
.level-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 10px; margin: 0 0 2rem;
}
.level-index a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: #334155;
  font-weight: 500; font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}
.level-index a:hover {
  background: var(--c-purple); color: #fff;
  border-color: var(--c-purple);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.level-index a .arrow { color: var(--c-purple); transition: color .2s; font-size: 15px; }
.level-index a:hover .arrow { color: rgba(255,255,255,.75); }
.level-index.dense { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
.level-index.dense a { padding: 10px 14px; font-size: 13px; }

/* ===== Crossword Grid ===== */
.grid-wrap {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin: 1.5rem 0 1.75rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.grid-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--c-muted);
  background: var(--c-bg); padding: 5px 14px;
  border-radius: 20px; border: 1px solid var(--c-border);
}
.grid { display: grid; gap: 5px; }
.cell {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 21px;
  text-transform: uppercase; border-radius: 9px;
}
.cell.filled {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  box-shadow: 0 3px 8px rgba(109,40,217,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.cell.empty { background: transparent; }
.letter-tiles {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.tile {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 19px;
  text-transform: uppercase; border-radius: 10px;
  box-shadow: 0 4px 0 #4c1d95, 0 2px 8px rgba(109,40,217,.3);
}

/* ===== Word list ===== */
.word-list { margin: 0 0 2rem; }
.word-list h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--c-navy); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.word-count-badge {
  font-size: .75rem; font-weight: 600;
  color: var(--c-purple); background: #ede9fe;
  padding: 2px 10px; border-radius: 20px;
}
.words {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.word-entry {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, transform .15s;
}
.word-entry:hover { border-color: var(--c-purple); transform: translateY(-1px); }
.word-entry .w {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 17px;
  text-transform: uppercase; color: var(--c-ink);
}
.word-entry .len {
  font-size: 11px; font-weight: 600;
  color: var(--c-purple); background: #ede9fe;
  padding: 2px 7px; border-radius: 10px;
}

/* ===== Pager ===== */
.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 2.5rem 0; }
.pager a {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 18px 22px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-sm); transition: all .2s ease;
  text-decoration: none;
}
.pager a:hover { border-color: var(--c-purple); transform: translateY(-2px); box-shadow: var(--shadow); }
.pager a.next { align-items: flex-end; text-align: right; }
.pager div.empty { background: transparent; box-shadow: none; border: none; }
.pager .label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-purple);
}
.pager .target {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 15px; color: var(--c-ink);
}

/* ===== Related list ===== */
.related-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.related-list a {
  background: var(--c-white); border: 1px solid var(--c-border);
  padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 500; color: #334155;
  transition: all .2s ease;
}
.related-list a:hover { background: var(--c-purple); color: #fff; border-color: var(--c-purple); }

/* ===== About / text sections ===== */
.about-section {
  margin-top: 2rem;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.about-section h2, .about-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--c-navy); margin-bottom: .85rem;
}
.about-section p {
  font-size: .95rem; color: #374151;
  line-height: 1.75; margin-bottom: .75rem;
}
.about-section p:last-child { margin-bottom: 0; }
.about-section a { color: var(--c-purple); font-weight: 600; }
.about-section a:hover { text-decoration: underline; }

/* ===== FAQ section ===== */
.faq-section {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 2px solid var(--c-border);
}
.faq-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--c-navy); margin-bottom: 1.1rem;
}
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  margin-bottom: .75rem;
  transition: box-shadow .15s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: .95rem; font-weight: 600;
  color: var(--c-navy); margin-bottom: .4rem;
}
.faq-item p { font-size: .9rem; color: #4b5563; line-height: 1.65; margin: 0; }

/* ===== Parent link ===== */
.parent-link { margin: 1rem 0 1.5rem; }
.parent-link a {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .88rem; font-weight: 500;
  color: var(--c-purple);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px; padding: .35rem .8rem;
  transition: box-shadow .15s, background .15s;
}
.parent-link a:hover {
  box-shadow: var(--shadow-sm);
  background: var(--c-light);
  text-decoration: none;
}

/* ===== Info cards ===== */
.info-section { margin-top: 2rem; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.info-card {
  background: linear-gradient(135deg, var(--c-navy), var(--c-violet));
  border-radius: var(--radius-md);
  padding: 1.5rem 1.3rem;
  color: rgba(255,255,255,.85);
}
.info-icon { font-size: 2rem; margin-bottom: .6rem; }
.info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: #fff; margin-bottom: .35rem;
}
.info-card p { font-size: .85rem; line-height: 1.6; margin: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--c-navy);
  margin-top: 4rem; padding: 2.5rem 0 0;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto; padding: 0 22px 2rem;
  display: flex; gap: 2rem; flex-wrap: wrap;
  justify-content: space-between; align-items: flex-start;
}
.footer-brand { display: flex; flex-direction: column; gap: .4rem; }
.footer-brand strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700; color: #fff;
}
.footer-brand em { color: #a78bfa; font-style: normal; }
.footer-brand p { font-size: .85rem; max-width: 280px; line-height: 1.6; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .15s; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-copy {
  background: rgba(0,0,0,.25);
  padding: 1rem 22px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ===== Misc ===== */
hr.rule { border: none; border-top: 1px solid var(--c-border); margin: 2rem 0; }
.small { font-size: 14px; color: var(--c-muted); }

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .site-nav a:not(.active) { display: none; }
  .page-hero { padding: 2.5rem 1.25rem 3rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .hero-sub { font-size: .95rem; }
  .blocks-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .cell { width: 36px; height: 36px; font-size: 17px; border-radius: 7px; }
  .grid-wrap { padding: 18px 14px; gap: 18px; }
  .pager { grid-template-columns: 1fr; gap: 10px; }
  .level-index { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); }
  .level-index.dense { grid-template-columns: repeat(3, 1fr); }
  .levels-grid { grid-template-columns: repeat(4, 1fr); }
  .words { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .about-section { padding: 1.25rem; }
  .footer-inner { flex-direction: column; gap: 1.25rem; }
}

/* ── Pack cards (home) ────────────────────────────────────── */
.packs-section { margin-top: 2rem; }
.section-count {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 600;
  color: var(--c-purple); background: #ede9fe;
  padding: 2px 10px; border-radius: 20px;
  margin-left: .5rem;
}
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem; margin-bottom: 1.5rem;
}
.pack-card {
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem 1rem;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: .3rem; text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  min-height: 110px;
}
.pack-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; }
.pack-emoji { font-size: 1.8rem; line-height: 1; margin-bottom: .2rem; }
.pack-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem; color: #fff; line-height: 1.2; }
.pack-levels { font-size: .73rem; color: rgba(255,255,255,.7); font-weight: 500; }

/* Search wrap (reuse world-search styles) */
.world-search-wrap { position: relative; margin-bottom: 1.25rem; max-width: 400px; }
.world-search-icon { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); font-size: 1rem; pointer-events: none; }
.world-search {
  width: 100%; padding: .6rem 1rem .6rem 2.5rem;
  border: 1.5px solid var(--c-border); border-radius: 50px;
  font-size: .9rem; background: var(--c-white);
  outline: none; font-family: 'Inter', sans-serif;
}
.world-search:focus { border-color: var(--c-purple); }

/* ── Clue list (level page) ───────────────────────────────── */
.answers-section { margin-top: 1.5rem; }
.clue-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.clue-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: .85rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s;
}
.clue-row:hover { border-color: var(--c-purple); }
.clue-text { font-size: .95rem; color: var(--c-ink); line-height: 1.4; flex: 1; }
.clue-answer {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--c-purple); letter-spacing: .05em;
  white-space: nowrap;
}

/* ── Puzzle nav (prev/next level) ────────────────────────── */
.puzzle-nav { display: flex; justify-content: space-between; gap: 1rem; margin: 2rem 0; }
.nav-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--c-white); border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm); padding: .6rem 1.2rem;
  font-weight: 600; font-size: .9rem; color: var(--c-ink);
  transition: all .15s;
}
.nav-btn:hover { border-color: var(--c-purple); color: var(--c-purple); text-decoration: none; }

/* FAQ answer highlight */
.clue-faq { display: flex; flex-direction: column; gap: .6rem; }
.faq-answer {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--c-purple); letter-spacing: .04em;
}

@media (max-width: 640px) {
  .packs-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .clue-row { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .clue-answer { font-size: .9rem; }
}
