/* WikiFanta - app-promo / fantasy gaming theme - magenta + purple */
@import url("https://fonts.bunny.net/css?family=poppins:300,400,500,600,700,800,900&display=swap");

:root {
  --pink: #D42B71;
  --pink-dark: #c0175d;
  --purple: #2E2545;
  --purple-dark: #1f1830;
  --purple-deep: #33284d;
  --lilac: #EEEDF6;
  --lilac-soft: #F5F3F9;
  --lilac-border: #D6D6E8;
  --bg: #FBFCFF;
  --paper: #ffffff;
  --text: #2E2545;
  --text-muted: #696985;
  --star: #ffa600;
  --radius: 0.5rem;
  --radius-lg: 1rem;
}

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

::selection { background: var(--pink); color: #fff; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 { color: var(--purple); font-family: 'Poppins', sans-serif; line-height: 1.15; }
h1 { font-size: 5.2rem; font-weight: 900; letter-spacing: 0.05rem; }
h2 { font-size: 4.2rem; font-weight: 900; letter-spacing: 0.1rem; text-transform: uppercase; margin-bottom: 1.5rem; }
h3 { font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; }
h4 { font-size: 1.8rem; font-weight: 600; margin-bottom: 0.8rem; }
h5 { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08rem; }

p { font-size: 1.6rem; font-weight: 400; line-height: 1.7; color: var(--text); margin-bottom: 1.5rem; }
.muted, .lead { color: var(--text-muted); }
.lead { font-size: 1.8rem; line-height: 1.6; }

a { color: var(--pink); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--pink-dark); }

ul, ol { margin: 0 0 1.5rem 2rem; }
li { margin-bottom: 0.6rem; font-size: 1.6rem; line-height: 1.7; }

img, picture { max-width: 100%; height: auto; display: block; }
picture img { border-radius: var(--radius); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 8rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 5rem 0; } }
@media (max-width: 480px) { section { padding: 4rem 0; } h1 { font-size: 3.6rem; } h2 { font-size: 2.8rem; } }

/* ===== NAV ===== */
header.site-head {
  background: var(--paper);
  padding: 1.6rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--lilac-border);
  box-shadow: 0 2px 12px rgba(46, 37, 69, 0.04);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--purple);
}
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-mark path { fill: var(--pink); }
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--purple);
  letter-spacing: -0.02em;
}
nav.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2.5rem; align-items: center; }
nav.main-nav li { margin: 0; }
nav.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple);
  transition: color 0.3s ease;
}
nav.main-nav a:hover { color: var(--pink); }
.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.3s ease;
}
.nav-cta:hover { background: var(--pink-dark); color: #fff !important; }
@media (max-width: 768px) {
  nav.main-nav ul { gap: 1.2rem; }
  nav.main-nav a { font-size: 1.3rem; }
  .nav-cta { padding: 0.6rem 1.2rem; }
  .brand-name { font-size: 1.8rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  min-width: 14rem;
  padding: 1rem 2.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--pink); color: #fff !important; border-color: var(--pink); }
.btn-primary:hover { background: var(--pink-dark); border-color: var(--pink-dark); color: #fff !important; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--purple) !important; border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff !important; }
.btn-white { background: #fff; color: var(--pink) !important; border-color: #fff; }
.btn-white:hover { background: var(--lilac); color: var(--pink) !important; }
.btn-group { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ===== HERO ===== */
section.hero {
  background: linear-gradient(135deg, #fff7fb 0%, var(--lilac) 60%, var(--lilac-soft) 100%);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
section.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 43, 113, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
section.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46, 37, 69, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 1.8rem;
}
.hero-title {
  font-size: 5.8rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--pink); }
.hero-lede { font-size: 1.9rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.55; max-width: 56rem; }
.hero-image picture, .hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(46, 37, 69, 0.25), 0 12px 24px -8px rgba(212, 43, 113, 0.15);
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-title { font-size: 4rem; }
  .hero-lede { font-size: 1.7rem; }
}

/* ===== SECTION HEADERS ===== */
.section-head {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto 5rem;
}
.section-head h2 { margin-bottom: 1.5rem; }
.section-head p { color: var(--text-muted); font-size: 1.7rem; }
.section-head.align-left { text-align: left; margin: 0 0 4rem; }

.eyebrow {
  display: inline-block;
  background: var(--lilac);
  color: var(--pink);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 1.5rem;
}

/* ===== HOW IT WORKS / 3-STEP ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.step-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid var(--lilac-border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(46, 37, 69, 0.15); }
.step-number {
  width: 6rem; height: 6rem;
  background: var(--pink);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 2rem;
  font-family: 'Poppins', sans-serif;
}
.step-card h3 { color: var(--purple); }
.step-card p { font-size: 1.5rem; color: var(--text-muted); margin: 0; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ===== FEATURE GRID (6 pillars) ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--lilac-border);
  transition: all 0.3s ease;
  display: block;
  color: var(--text);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(212, 43, 113, 0.18);
  border-color: var(--pink);
}
.feature-icon {
  width: 6.5rem; height: 6.5rem;
  background: var(--lilac);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 1.8rem;
  transition: background 0.3s ease;
}
.feature-card:hover .feature-icon { background: var(--pink); color: #fff; }
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { color: var(--purple); margin-bottom: 1rem; font-size: 2rem; }
.feature-card p { font-size: 1.5rem; color: var(--text-muted); margin: 0 0 1.2rem; }
.feature-card .read-on {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .feature-grid { grid-template-columns: 1fr; } }

/* ===== TWO-COLUMN ABOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col .col-text h2 { text-align: left; }
.two-col .col-image picture, .two-col .col-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -15px rgba(46, 37, 69, 0.15);
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 3rem; } }

/* ===== DARK SECTION (CTA band) ===== */
section.dark-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
section.dark-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 43, 113, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
section.dark-section h2, section.dark-section h3 { color: #fff; }
section.dark-section p { color: rgba(255, 255, 255, 0.78); }
.cta-band {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 { font-size: 3.6rem; text-transform: uppercase; }
.cta-band p { font-size: 1.7rem; }
@media (max-width: 768px) { .cta-band { grid-template-columns: 1fr; text-align: center; } }

/* ===== TESTIMONIAL / PRINCIPLE CARDS ===== */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.principle-card {
  background: var(--lilac);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--lilac-border);
  position: relative;
}
.principle-card .stars { color: var(--star); font-size: 2rem; letter-spacing: 0.3rem; margin-bottom: 1.5rem; }
.principle-card .quote { font-size: 1.6rem; line-height: 1.65; color: var(--purple); margin-bottom: 2rem; font-style: italic; }
.principle-card .quote::before { content: '"'; font-size: 4rem; color: var(--pink); line-height: 0; vertical-align: -0.5em; margin-right: 0.3rem; }
.principle-card .source { font-size: 1.3rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1rem; }
@media (max-width: 900px) { .principle-grid { grid-template-columns: 1fr; } }

/* ===== ARTICLE BODY ===== */
.article-head {
  background: linear-gradient(135deg, #fff7fb 0%, var(--lilac) 100%);
  padding: 6rem 0 5rem;
  text-align: center;
}
.article-head .eyebrow { background: var(--pink); color: #fff; }
.article-head h1 { font-size: 4.6rem; max-width: 90rem; margin: 0 auto 2rem; letter-spacing: -0.02em; line-height: 1.1; }
.article-head .standfirst { font-size: 1.9rem; color: var(--text-muted); max-width: 70rem; margin: 0 auto; line-height: 1.6; }
@media (max-width: 768px) { .article-head h1 { font-size: 3.2rem; } .article-head .standfirst { font-size: 1.6rem; } }

.article-image {
  max-width: 100rem;
  margin: -3rem auto 4rem;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}
.article-image picture, .article-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(46, 37, 69, 0.3);
}

.prose { padding: 3rem 0 4rem; }
.prose p, .prose li { font-size: 1.7rem; line-height: 1.75; color: var(--text); }
.prose h2 {
  font-size: 3.4rem;
  text-align: left;
  margin: 4rem 0 1.5rem;
  padding-top: 3rem;
  border-top: 2px solid var(--lilac-border);
}
.prose h2:first-child { padding-top: 0; border-top: none; margin-top: 0; }
.prose h3 { font-size: 2.4rem; margin: 2.5rem 0 1rem; color: var(--purple); }

.prose blockquote {
  background: var(--lilac);
  border-left: 4px solid var(--pink);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  border-radius: var(--radius);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--purple);
  line-height: 1.55;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  font-size: 1.5rem;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(46, 37, 69, 0.05);
}
.prose th {
  background: var(--purple);
  color: #fff;
  padding: 1.2rem 1.4rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.08rem;
}
.prose td { padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--lilac-border); font-size: 1.5rem; }
.prose tr:nth-child(even) td { background: var(--lilac-soft); }
.prose tr:last-child td { border-bottom: none; }

.callout {
  background: linear-gradient(135deg, var(--lilac) 0%, var(--lilac-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.8rem;
  margin: 3rem 0;
  border-left: 4px solid var(--pink);
}
.callout h4 { color: var(--pink); margin-bottom: 1rem; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.1rem; }
.callout p:last-child { margin: 0; }

.infographic {
  background: var(--paper);
  border: 1px solid var(--lilac-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem 2rem;
  margin: 3rem 0;
  box-shadow: 0 10px 30px -10px rgba(46, 37, 69, 0.10);
}
.infographic h4 {
  color: var(--pink);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  text-align: center;
}
.infographic svg { max-width: 100%; height: auto; display: block; }

/* ===== FAQ ACCORDION ===== */
.faq { margin: 3rem 0; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--lilac-border);
  border-radius: var(--radius);
  padding: 0 2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.faq details[open] { border-color: var(--pink); box-shadow: 0 8px 20px -8px rgba(212, 43, 113, 0.20); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--purple);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--pink);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.5rem; color: var(--text-muted); font-size: 1.5rem; margin: 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--lilac);
  padding: 1.5rem 0;
  font-size: 1.3rem;
}
.breadcrumb .container { display: flex; gap: 0.8rem; align-items: center; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { color: var(--lilac-border); }

/* ===== RELATED ===== */
section.related {
  background: var(--lilac-soft);
  padding: 6rem 0;
}
section.related .section-head { margin-bottom: 4rem; }

/* ===== FOOTER ===== */
footer.foot {
  background: var(--purple);
  color: #fff;
  padding: 6rem 0 3rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.foot-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 2rem; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-mark path { fill: var(--pink); }
.foot-blurb { font-size: 1.4rem; line-height: 1.65; color: rgba(255, 255, 255, 0.75); max-width: 32rem; }
.foot h5 { color: var(--pink); margin-bottom: 1.8rem; font-size: 1.3rem; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot ul li { margin-bottom: 1rem; font-size: 1.4rem; }
.foot ul a { color: rgba(255, 255, 255, 0.78); transition: color 0.3s ease; font-weight: 400; }
.foot ul a:hover { color: var(--pink); }
.foot-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ===== LEAGUE GRID (multi-league hub) ===== */
.league-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 1000px) { .league-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .league-grid { grid-template-columns: 1fr; } }

.league-card {
  background: var(--paper);
  border: 1px solid var(--lilac-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.league-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(212, 43, 113, 0.22);
  border-color: var(--pink);
}
.league-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #2E2545;
}
.league-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.league-card-body {
  padding: 2.4rem 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.league-card-body h3 {
  color: var(--purple);
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
}
.league-card-body > p {
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1.55;
  margin: 0;
}
.league-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 99rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  width: max-content;
}
.league-tag-fpl { background: linear-gradient(135deg, #4a1a6b 0%, #b94a2a 100%); color: #fff; }
.league-tag-seriea { background: linear-gradient(135deg, #1e88e5 0%, #2E2545 100%); color: #fff; }
.league-tag-ucl { background: linear-gradient(135deg, #1a1a4a 0%, #D42B71 100%); color: #fff; }

.league-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  background: var(--lilac-soft);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 0.5rem 0 0.8rem;
}
.league-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.league-meta strong {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  color: var(--pink);
}
.league-meta span {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--purple);
}
.league-card-body .btn-group { margin-top: auto; }
.league-card-body .btn { min-height: 4.4rem; min-width: 0; padding: 0.8rem 1.6rem; font-size: 1.35rem; flex: 1; }

/* ===== HERO STATS LINE ===== */
.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 2.5rem;
  border-right: 1px solid var(--lilac-border);
  margin: 0;
}
.hero-stats li:last-child { border-right: none; padding-right: 0; }
.hero-stats strong {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.hero-stats span {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-weight: 600;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .hero-stats { gap: 1.5rem; }
  .hero-stats li { padding-right: 1.5rem; }
  .hero-stats strong { font-size: 2.4rem; }
}

/* ===== HOMEPAGE GLOSSARY TEASER ===== */
.glossary-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.glossary-teaser-card {
  background: var(--paper);
  border: 1px solid var(--lilac-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem 2rem;
  position: relative;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: block;
}
.glossary-teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(212, 43, 113, 0.18);
  border-color: var(--pink);
  color: var(--text);
}
.glossary-letter {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--lilac);
  line-height: 1;
  transition: color 0.3s ease;
}
.glossary-teaser-card:hover .glossary-letter { color: var(--pink); }
.glossary-teaser-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 0.8rem;
  padding-right: 3rem;
}
.glossary-teaser-card p {
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 900px) { .glossary-teaser { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .glossary-teaser { grid-template-columns: 1fr; } }

/* ===== GLOSSARY PAGE - A-Z NAV ===== */
.az-nav {
  background: var(--paper);
  border: 1px solid var(--lilac-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  margin: 0 auto 2rem;
  position: sticky;
  top: 6.5rem;
  z-index: 50;
  box-shadow: 0 4px 12px -6px rgba(46, 37, 69, 0.08);
}
.az-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 0.4rem;
}
.az-list li { margin: 0; text-align: center; }
.az-list li a, .az-list li span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  padding: 0.6rem 0;
  border-radius: var(--radius);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.az-list li a { color: var(--pink); background: var(--lilac); }
.az-list li a:hover { background: var(--pink); color: #fff; transform: scale(1.05); }
.az-list li.disabled span { color: var(--lilac-border); background: transparent; opacity: 0.4; cursor: not-allowed; }
@media (max-width: 700px) {
  .az-list { grid-template-columns: repeat(7, 1fr); }
  .az-list li a, .az-list li span { font-size: 1.2rem; padding: 0.5rem 0; }
}
@media (max-width: 480px) {
  .az-nav { position: static; padding: 1rem; }
  .az-list { grid-template-columns: repeat(6, 1fr); }
}

/* ===== GLOSSARY PAGE - SECTIONS + TERMS ===== */
.glossary-body { padding-bottom: 4rem; }
.az-section { padding: 4rem 0 2rem; border-top: 1px solid var(--lilac-border); margin-top: -1px; }
.az-section:first-of-type { padding-top: 2rem; border-top: none; }
.az-letter {
  font-size: 6rem;
  font-weight: 900;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1;
}
.term-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 0;
}
.term {
  background: var(--paper);
  border: 1px solid var(--lilac-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.4rem;
  scroll-margin-top: 8rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.term:target {
  border-color: var(--pink);
  box-shadow: 0 8px 24px -8px rgba(212, 43, 113, 0.25);
}
.term dt { margin: 0; }
.term dt h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--purple);
  margin: 0 0 1rem;
  position: relative;
  display: inline-block;
}
.term:target dt h3::after {
  content: '#';
  position: absolute;
  left: -2rem;
  top: 0;
  color: var(--pink);
  font-weight: 400;
  opacity: 0.6;
}
.term dd {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.65;
  color: var(--text);
}
.term dd p { margin: 0 0 1rem; }
.term dd p:last-child { margin: 0; }
.term .see-also {
  font-size: 1.3rem;
  color: var(--text-muted);
  border-top: 1px solid var(--lilac-border);
  padding-top: 1rem;
  margin-top: 1.2rem;
}
.term .see-also strong {
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 1.1rem;
  color: var(--pink);
  margin-right: 0.4rem;
}
.term .see-also a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: var(--lilac-border);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.term .see-also a:hover { color: var(--pink); text-decoration-color: var(--pink); }

/* ===== INLINE GLOSSARY LINKS (on other pages) ===== */
.glos {
  text-decoration: none;
  background-image: linear-gradient(var(--pink), var(--pink));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  color: var(--pink);
  transition: color 0.2s ease, background-size 0.2s ease;
  padding-bottom: 0.1rem;
}
.glos:hover {
  color: var(--purple);
  background-size: 100% 2px;
}

/* ===== NARROW HERO IMAGE (glossary page uses smaller image) ===== */
.article-image-narrow {
  max-width: 72rem;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #2E2545 0%, #1f1830 60%, #D42B71 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}
#preloader::before, #preloader::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blob 6s ease-in-out infinite;
}
#preloader::before { background: #D42B71; top: -160px; right: -120px; }
#preloader::after { background: #c9a14a; bottom: -180px; left: -120px; animation-delay: -3s; }
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}
.preloader-ball {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.45)) drop-shadow(0 0 24px rgba(212,43,113,0.6));
  animation: pball-rotate 1.4s linear infinite, pball-bounce 1.4s ease-in-out infinite;
  transform-origin: center;
}
.preloader-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
}
.preloader-mark {
  width: 22px;
  height: 22px;
  animation: pmark-pulse 1.6s ease-in-out infinite;
}
.preloader-brand span {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.preloader-dots {
  display: flex;
  gap: 0.7rem;
}
.preloader-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D42B71;
  animation: pdot-pulse 1.2s ease-in-out infinite;
}
.preloader-dots span:nth-child(2) { background: #c9a14a; animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { background: #fff; animation-delay: 0.4s; }

@keyframes pball-rotate { to { transform: rotate(360deg); } }
@keyframes pball-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(180deg); }
}
@keyframes pmark-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.85; }
}
@keyframes pdot-pulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40%           { transform: scale(1.2); opacity: 1; }
}
@keyframes blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px,-30px) scale(1.1); }
}

/* ===== HERO ANIMATED SVG ===== */
.hero-animated {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1;
  margin-left: auto;
  position: relative;
}
.hero-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hero-animated { cursor: pointer; }
.hero-animated.shooting { cursor: default; }

.hero-glow      { animation: glow-pulse 4s ease-in-out infinite; transform-origin: 250px 250px; transform-box: fill-box; }
.hero-glow-inner{ animation: glow-pulse 3s ease-in-out infinite reverse; transform-origin: 250px 250px; transform-box: fill-box; }
.hero-ring      { animation: spin-slow 60s linear infinite; transform-origin: 250px 270px; transform-box: fill-box; }
.hero-shadow    { animation: shadow-pulse 5s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.hero-ball-wrap { transform-origin: 250px 250px; transform-box: fill-box; will-change: transform; }
.hero-ball-spin { animation: ball-rotate 8s linear infinite; transform-origin: center; transform-box: fill-box; }
.hero-goal-bg   { filter: drop-shadow(0 4px 12px rgba(46,37,69,0.10)); }
.hero-animated.scoring .hero-goal-bg { animation: goal-shake 0.5s ease-out 0.45s 1; transform-origin: 250px 200px; transform-box: fill-box; }

.hero-orbit            { transform-origin: 250px 250px; transform-box: fill-box; }
.hero-orbit.cw1        { animation: orbit-spin 11s linear infinite; }
.hero-orbit.ccw1       { animation: orbit-spin 14s linear infinite reverse; }
.hero-orbit.cw2        { animation: orbit-spin 18s linear infinite; }
.hero-orbit.ccw2       { animation: orbit-spin 22s linear infinite reverse; }

.hero-sparkle          { transform-origin: center; transform-box: fill-box; animation: sparkle 2.4s ease-in-out infinite; }
.hero-sparkle.s2       { animation-delay: 0.6s; }
.hero-sparkle.s3       { animation-delay: 1.2s; }
.hero-sparkle.s4       { animation-delay: 1.8s; }

/* GOAL BANNER */
.goal-banner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.goal-banner span {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 9vw, 7rem);
  background: linear-gradient(135deg, #ffffff 0%, #ffd76b 50%, #D42B71 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  filter: drop-shadow(0 6px 18px rgba(212,43,113,0.55));
  transform: scale(0.6) rotate(-6deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.goal-banner.active { opacity: 1; }
.goal-banner.active span { transform: scale(1) rotate(-3deg); }

/* HERO HINT */
.hero-hint {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0.85;
  pointer-events: none;
  text-align: center;
}
.hero-hint strong { color: var(--pink); font-weight: 700; }
@media (max-width: 600px) { .hero-hint { font-size: 1rem; } }

@keyframes glow-pulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.08); opacity: 0.7; }
}
@keyframes spin-slow   { to { transform: rotate(360deg); } }
@keyframes ball-rotate { to { transform: rotate(360deg); } }
@keyframes shadow-pulse {
  0%, 100% { transform: scaleX(1)    scaleY(1);   opacity: 0.30; }
  50%      { transform: scaleX(0.82) scaleY(0.72); opacity: 0.20; }
}
@keyframes orbit-spin  { to { transform: rotate(360deg); } }
@keyframes sparkle {
  0%, 100% { transform: scale(0.6) rotate(0deg);   opacity: 0.4; }
  50%      { transform: scale(1.2) rotate(180deg); opacity: 1;   }
}
@keyframes goal-shake {
  0%   { transform: translate(0,0) rotate(0deg); }
  20%  { transform: translate(-3px,-2px) rotate(-2deg); }
  40%  { transform: translate(3px,2px) rotate(2deg); }
  60%  { transform: translate(-2px,1px) rotate(-1deg); }
  80%  { transform: translate(2px,-1px) rotate(1deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-ball,
  .preloader-mark,
  .preloader-dots span,
  #preloader::before,
  #preloader::after,
  .hero-glow,
  .hero-glow-inner,
  .hero-ring,
  .hero-shadow,
  .hero-ball-wrap,
  .hero-ball-spin,
  .hero-goal-bg,
  .hero-orbit,
  .hero-sparkle,
  .goal-banner,
  .goal-banner span {
    animation: none !important;
    transition: none !important;
  }
  #preloader { animation: none !important; }
  .hero-animated { cursor: default; }
  .hero-hint { display: none; }
}

/* ===== NEW LOGO ===== */
.brand { padding: 0.2rem 0; }
.brand-logo {
  display: block;
  height: 80px;
  width: auto;
  max-width: 280px;
  transition: transform 0.2s ease;
}
.brand:hover .brand-logo { transform: translateY(-1px); }
@media (max-width: 900px) { .brand-logo { height: 60px; max-width: 220px; } }
@media (max-width: 600px) { .brand-logo { height: 48px; max-width: 180px; } }

.brand-logo-inverted {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.foot-brand { display: flex; align-items: center; }
.foot-brand .brand-logo { height: 64px; max-width: 240px; }

.preloader-logo {
  display: block;
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  opacity: 0.95;
}

/* ===== MISS BANNER ===== */
.miss-banner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.miss-banner span {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(135deg, #ddd6e8 0%, #696985 60%, #2E2545 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  filter: drop-shadow(0 6px 16px rgba(46,37,69,0.4));
  transform: scale(0.6) rotate(4deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.miss-banner.active { opacity: 1; }
.miss-banner.active span { transform: scale(1) rotate(2deg); }
