/* ============================================
   GameActive Zone — Production Stylesheet
   Domain: gameactivezone.site
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0A0A0F;
  --bg-card: #12121A;
  --bg-card-hover: #1A1A26;
  --bg-elevated: #16161F;

  --accent-lime: #22C55E;
  --accent-cyan: #06B6D4;
  --accent-pink: #EC4899;

  --text-primary: #FFFFFF;
  --text-secondary: #E5E7EB;
  --text-muted: #9CA3AF;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(34, 197, 94, 0.3);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-glow-lime: 0 0 40px rgba(34, 197, 94, 0.15);
  --shadow-glow-cyan: 0 0 40px rgba(6, 182, 212, 0.15);
  --shadow-glow-pink: 0 0 40px rgba(236, 72, 153, 0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.accent {
  color: var(--accent-lime);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-lime), #16A34A);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow-lime);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.3);
}

.btn--ghost {
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.05);
}

/* --- Section Shared --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lime);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__tag--cyan {
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.2);
}

.section__tag--pink {
  color: var(--accent-pink);
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.2);
}

.section__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 17px;
  color: var(--text-muted);
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav__logo-icon {
  color: var(--accent-lime);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link.active {
  color: var(--accent-lime);
}

.nav__link--cta {
  color: var(--bg-primary);
  background: var(--accent-lime);
  font-weight: 600;
}

.nav__link--cta:hover {
  background: #16A34A;
  color: var(--bg-primary);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 40px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero__glow--lime {
  width: 500px;
  height: 500px;
  background: var(--accent-lime);
  top: -10%;
  right: -5%;
}

.hero__glow--cyan {
  width: 400px;
  height: 400px;
  background: var(--accent-cyan);
  bottom: 10%;
  left: -10%;
  opacity: 0.25;
}

.hero__glow--pink {
  width: 300px;
  height: 300px;
  background: var(--accent-pink);
  top: 40%;
  left: 30%;
  opacity: 0.15;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-lime);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-lime), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Trending --- */
.trending {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-elevated) 100%);
}

.trending__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trend-card {
  position: relative;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}

.trend-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-lime), transparent);
  opacity: 0;
  transition: var(--transition);
}

.trend-card:hover {
  border-color: rgba(34, 197, 94, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-lime);
}

.trend-card:hover::before {
  opacity: 1;
}

.trend-card--featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(34, 197, 94, 0.15);
}

.trend-card--featured .trend-card__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-lime);
  filter: blur(100px);
  opacity: 0.08;
  top: -50px;
  right: -50px;
}

.trend-card--featured .trend-card__title {
  font-size: 28px;
}

.trend-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-lime);
  margin-bottom: 12px;
}

.trend-card__tag--cyan { color: var(--accent-cyan); }
.trend-card__tag--pink { color: var(--accent-pink); }

.trend-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.trend-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.trend-card__meta {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* --- Facts / Filter --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  transition: var(--transition);
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
  color: var(--bg-primary);
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.fact-card:hover {
  border-color: rgba(6, 182, 212, 0.2);
}

.fact-card.open {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: var(--shadow-glow-cyan);
}

.fact-card.hidden {
  display: none;
}

.fact-card__toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px;
  text-align: left;
  color: var(--text-primary);
  transition: var(--transition);
}

.fact-card__toggle:hover {
  background: var(--bg-card-hover);
}

.fact-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-sm);
}

.fact-card__question {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.fact-card__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.fact-card.open .fact-card__chevron {
  transform: rotate(180deg);
}

.fact-card__answer {
  padding: 0 20px 20px 70px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

.fact-card__answer strong {
  color: var(--accent-cyan);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Timeline --- */
.history {
  background: var(--bg-elevated);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-pink), var(--accent-cyan), var(--accent-lime));
  opacity: 0.3;
}

.timeline__item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--bg-primary);
  border: 3px solid var(--accent-pink);
  border-radius: 50%;
  z-index: 1;
}

.timeline__content {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.timeline__content:hover {
  border-color: rgba(236, 72, 153, 0.2);
  box-shadow: var(--shadow-glow-pink);
}

.timeline__year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-pink);
  margin-bottom: 8px;
}

.timeline__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline__content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- British Cards --- */
.british__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.british-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.british-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: var(--shadow-glow-lime);
}

.british-card__flag {
  font-size: 28px;
  margin-bottom: 16px;
}

.british-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.british-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Myths --- */
.myths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.myth-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.myth-card__header {
  padding: 24px;
}

.myth-card__header--myth {
  background: rgba(236, 72, 153, 0.06);
  border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.myth-card__header--truth {
  background: rgba(34, 197, 94, 0.06);
}

.myth-card__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.myth-card__header--myth .myth-card__label {
  color: var(--accent-pink);
}

.myth-card__header--truth .myth-card__label {
  color: var(--accent-lime);
}

.myth-card__header p {
  font-size: 15px;
  line-height: 1.6;
}

.myth-card__header--myth p {
  color: var(--text-muted);
  font-style: italic;
}

.myth-card__header--truth p {
  color: var(--text-secondary);
}

/* --- Spotlight --- */
.spotlight {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-elevated) 50%, var(--bg-primary) 100%);
}

.spotlight__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.spotlight__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-cyan), var(--accent-pink));
}

.spotlight__visual {
  text-align: center;
}

.spotlight__icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 32px;
}

.spotlight__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.spotlight__stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-lime);
}

.spotlight__stat-key {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spotlight__intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.spotlight__highlights {
  margin-bottom: 32px;
}

.spotlight__highlights li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
}

.spotlight__highlights li:last-child {
  border-bottom: none;
}

.spotlight__highlights li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

.spotlight__highlights strong {
  color: var(--text-primary);
}

/* --- Quick Facts --- */
.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-fact {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
}

.quick-fact.visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-fact:hover {
  border-color: rgba(34, 197, 94, 0.2);
  transform: translateY(-2px);
}

.quick-fact__number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  opacity: 0.5;
}

.quick-fact p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.quick-fact strong {
  color: var(--text-primary);
}

/* --- FAQ --- */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.faq__intro .section__header {
  text-align: left;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition);
}

.faq-item__toggle:hover {
  color: var(--accent-cyan);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-cyan);
  transition: transform var(--transition);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

/* --- Read Next --- */
.read-next__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.read-next__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.read-next__card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
}

.read-next__card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-cyan);
}

.read-next__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.read-next__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.read-next__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 18px;
  color: var(--text-muted);
  transition: var(--transition);
}

.read-next__card:hover .read-next__arrow {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

/* --- Footer --- */
.site-footer {
  padding: 64px 0 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer__tagline {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__nav ul li {
  margin-bottom: 10px;
}

.footer__nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--accent-lime);
}

.footer__contact p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer__contact a:hover {
  color: var(--accent-lime);
}

.footer__domain {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent-cyan);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

.footer__note {
  font-style: italic;
}

/* --- Modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.modal__close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.modal__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-right: 40px;
}

.modal__body h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--accent-lime);
}

.modal__body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .trending__grid {
    grid-template-columns: 1fr;
  }

  .trend-card--featured {
    grid-row: span 1;
  }

  .british__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quick-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .read-next__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: center;
  }

  .facts__grid,
  .myths__grid {
    grid-template-columns: 1fr;
  }

  .british__grid {
    grid-template-columns: 1fr;
  }

  .faq__layout {
    grid-template-columns: 1fr;
  }

  .faq__intro .section__header {
    text-align: center;
  }

  .hero__stats {
    gap: 32px;
  }

  .hero__scroll {
    display: none;
  }

  .spotlight__wrapper {
    padding: 32px 24px;
  }

  .spotlight__stats {
    gap: 20px;
  }

  .read-next__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .fact-card__answer {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-facts__grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --- Subpages (About, Privacy) --- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 64px) 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg .hero__grid {
  mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black, transparent);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero__title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-content {
  padding: 64px 0 100px;
}

.page-content__inner {
  max-width: 720px;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 16px;
  padding-top: 8px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--accent-cyan);
}

.page-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
  margin: 0 0 20px 24px;
  color: var(--text-muted);
}

.page-content li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.page-content a {
  color: var(--accent-lime);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.page-content a:hover {
  color: var(--accent-cyan);
}

.page-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.page-meta {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.about-value {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-value:hover {
  border-color: rgba(34, 197, 94, 0.2);
}

.about-value__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.about-value__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-value p {
  font-size: 14px;
  margin-bottom: 0;
}

.page-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
}

.page-cta p {
  margin-bottom: 20px;
}

.footer__note a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__note a:hover {
  color: var(--accent-lime);
}

.nav__link--active {
  color: var(--accent-lime);
}

@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}
