/* GoQuizzle - Master Stylesheet
   Orange-and-white playful theme with 3D depth */

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

:root {
  --orange: #E8894E;
  --orange-dark: #D67437;
  --orange-light: #FFB68A;
  --orange-bg: #FFF4EC;
  --orange-glow: rgba(232, 137, 78, 0.3);

  --yellow: #FFD166;
  --pink: #FF6B9D;
  --teal: #06D6A0;
  --purple: #9B5DE5;
  --blue: #4ECDC4;

  --ink: #2A2545;
  --ink-soft: #4A4368;
  --muted: #8B8AA0;
  --line: #ECE7E0;
  --white: #FFFFFF;
  --bg: #FFFAF5;

  --shadow-sm: 0 2px 8px rgba(232, 137, 78, 0.08);
  --shadow-md: 0 8px 24px rgba(232, 137, 78, 0.12);
  --shadow-lg: 0 20px 60px rgba(42, 37, 69, 0.15);
  --shadow-3d: 0 12px 0 rgba(232, 137, 78, 0.25), 0 16px 40px rgba(232, 137, 78, 0.2);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; font-weight: 600; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

a { color: var(--orange-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange); }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; display: block; }
@media (max-width: 600px) {
  .nav-logo img { height: 40px; }
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-weight: 700; color: var(--ink); font-size: 15px;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--orange); border-radius: 3px;
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 99px;
  box-shadow: 0 4px 0 var(--orange-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange-dark); }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: 0.3s; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0;
    padding: 8px 0; box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height 0.3s;
  }
  .nav-links.open { max-height: 500px; }
  .nav-links a { padding: 14px 24px; width: 100%; border-bottom: 1px solid var(--line); }
}

/* ── MEGA MENU ────────────────────────────────────── */
.nav-item-mega {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-mega-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--ink); font-size: 15px;
  position: relative; padding: 6px 0;
  cursor: pointer;
}
.nav-mega-trigger::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--orange); border-radius: 3px;
  transition: width 0.3s;
}
.nav-mega-trigger:hover::after,
.nav-mega-trigger.active::after,
.nav-item-mega:hover .nav-mega-trigger::after { width: 100%; }
.nav-mega-trigger .chevron {
  font-size: 9px;
  transition: transform 0.25s;
  display: inline-block;
}
.nav-item-mega:hover .nav-mega-trigger .chevron {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 720px; max-width: calc(100vw - 32px);
  padding-top: 14px; /* invisible hover bridge */
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 200;
}
.nav-item-mega:hover .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.mega-inner {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(42, 37, 69, 0.18), 0 4px 12px rgba(232, 137, 78, 0.1);
  border: 1px solid var(--line);
  padding: 28px 28px 22px;
  overflow: hidden;
  transform: translateY(-6px);
  transition: transform 0.25s;
}
.nav-item-mega:hover .mega-inner {
  transform: translateY(0);
}

/* Decorative giant Quizzle wordmark in background */
.mega-watermark {
  position: absolute;
  top: -30px; right: -50px;
  font-family: 'Fredoka', sans-serif;
  font-size: 220px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.05;
  letter-spacing: -8px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.mega-eyebrow {
  position: relative;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mega-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mega-card {
  display: block;
  padding: 16px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  border: 2px solid transparent;
  background: var(--orange-bg);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.mega-card:hover {
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(232, 137, 78, 0.15);
  color: var(--ink);
  background: var(--white);
}
.mega-card .mega-icon { font-size: 28px; margin-bottom: 6px; line-height: 1; }
.mega-card .mega-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 15px; line-height: 1.2;
  margin-bottom: 2px;
}
.mega-card .mega-desc {
  font-size: 12px; color: var(--muted);
  line-height: 1.3;
}

.mega-cta {
  position: relative;
  display: flex;
  align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 12px;
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 0 var(--orange-dark);
}
.mega-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--orange-dark);
  color: var(--white) !important;
}
.mega-cta::after { display: none !important; }

/* Mobile: turn mega menu back into a simple link */
@media (max-width: 768px) {
  .nav-item-mega { width: 100%; display: block; }
  .nav-mega-trigger {
    padding: 14px 24px; width: 100%;
    border-bottom: 1px solid var(--line);
    display: flex; justify-content: space-between;
  }
  .nav-mega-trigger::after { display: none; }
  .nav-mega-trigger .chevron { display: none; }
  .mega-menu { display: none; }
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 99px; border: none;
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px;
  cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 6px 0 var(--orange-dark), 0 10px 24px var(--orange-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--orange-dark), 0 14px 32px var(--orange-glow); color: var(--white); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--orange-dark); }
.btn-outline {
  background: var(--white); color: var(--orange-dark);
  border: 2px solid var(--orange); box-shadow: 0 4px 0 var(--orange-light);
}
.btn-outline:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange-light); color: var(--orange-dark); }

/* ── HERO 3D ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px; overflow: hidden;
  perspective: 1500px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, var(--orange-glow) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.15) 0%, transparent 40%);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(40px);
  pointer-events: none; opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}
.hero-blob.b1 { width: 320px; height: 320px; background: var(--orange-light); top: 10%; left: -8%; }
.hero-blob.b2 { width: 280px; height: 280px; background: var(--yellow); bottom: 5%; right: -5%; animation-delay: -7s; }
.hero-blob.b3 { width: 220px; height: 220px; background: var(--pink); top: 50%; left: 60%; animation-delay: -14s; }

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.1); }
  66% { transform: translate(-30px,40px) scale(0.95); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; } }

.hero-eyebrow {
  display: inline-block;
  background: var(--white); border: 2px solid var(--orange);
  border-radius: 99px; padding: 6px 16px;
  color: var(--orange-dark); font-weight: 700; font-size: 13px;
  margin-bottom: 20px; letter-spacing: 0.5px;
  box-shadow: 0 3px 0 var(--orange-light);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-title .accent {
  background: linear-gradient(120deg, var(--orange) 0%, var(--pink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--ink-soft); margin-bottom: 32px; max-width: 540px; }
@media (max-width: 900px) { .hero-sub { margin-left: auto; margin-right: auto; } }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-ctas { justify-content: center; } }

.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stat-num { font-family: 'Fredoka', sans-serif; font-size: 32px; font-weight: 700; color: var(--orange-dark); display: block; }
.hero-stat-lbl { font-size: 13px; color: var(--muted); font-weight: 600; }
@media (max-width: 900px) { .hero-stats { justify-content: center; } }

/* 3D Floating Card Stack */
.hero-3d {
  position: relative; height: 480px; transform-style: preserve-3d;
  animation: heroSpin 12s ease-in-out infinite;
}
@keyframes heroSpin {
  0%, 100% { transform: rotateY(-8deg) rotateX(6deg); }
  50% { transform: rotateY(8deg) rotateX(-6deg); }
}
.hero-card {
  position: absolute; border-radius: 28px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  transition: transform 0.4s;
}
.hero-card .ic { font-size: 48px; margin-bottom: 8px; }
.hero-card .lb { font-size: 16px; }
.hero-card.c1 { width: 200px; height: 200px; background: var(--orange); color: var(--white); top: 20px; left: 50%; transform: translate(-50%, 0) translateZ(80px); }
.hero-card.c2 { width: 160px; height: 160px; background: var(--white); border: 3px solid var(--yellow); top: 230px; left: 10%; transform: translateZ(40px) rotate(-8deg); }
.hero-card.c3 { width: 170px; height: 170px; background: var(--teal); color: var(--white); top: 250px; right: 8%; transform: translateZ(60px) rotate(6deg); }
.hero-card.c4 { width: 120px; height: 120px; background: var(--pink); color: var(--white); top: 0; left: 5%; transform: translateZ(20px) rotate(-12deg); }
.hero-card.c5 { width: 140px; height: 140px; background: var(--purple); color: var(--white); top: 60px; right: 5%; transform: translateZ(30px) rotate(10deg); }

@media (max-width: 900px) { .hero-3d { height: 380px; max-width: 460px; margin: 0 auto; } }

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 80px 24px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block; color: var(--orange-dark);
  font-weight: 800; font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title { margin-bottom: 12px; }
.section-sub { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 17px; }

/* ── GAME GRID ───────────────────────────────────── */
.cat-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px;
}
.cat-pill {
  background: var(--white); color: var(--ink-soft);
  border: 2px solid var(--line); border-radius: 99px;
  padding: 9px 20px; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Nunito', sans-serif;
}
.cat-pill:hover { border-color: var(--orange-light); }
.cat-pill.active { background: var(--orange); color: var(--white); border-color: var(--orange); box-shadow: 0 4px 12px var(--orange-glow); }

.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

.game-card {
  background: var(--white); border-radius: 24px; padding: 28px 24px;
  text-align: left; text-decoration: none; color: var(--ink);
  border: 2px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
}
.game-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--orange); transform: translateY(-6px); transition: transform 0.25s;
}
.game-card:hover {
  transform: translateY(-6px); border-color: var(--orange-light);
  box-shadow: var(--shadow-md); color: var(--ink);
}
.game-card:hover::before { transform: translateY(0); }
.game-card .icon { font-size: 44px; margin-bottom: 4px; }
.game-card .name { font-family: 'Fredoka', sans-serif; font-size: 20px; font-weight: 600; }
.game-card .desc { font-size: 14px; color: var(--muted); line-height: 1.45; }
.game-card .tag {
  align-self: flex-start; margin-top: 8px;
  background: var(--orange-bg); color: var(--orange-dark);
  font-size: 11px; font-weight: 800; padding: 4px 10px;
  border-radius: 99px; letter-spacing: 0.5px; text-transform: uppercase;
}

/* ── FEATURES ─────────────────────────────────────── */
.features { background: var(--orange-bg); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature {
  background: var(--white); border-radius: 24px; padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.feature:hover { transform: translateY(-4px); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 18px;
}
.feature h3 { margin-bottom: 8px; font-size: 22px; }
.feature p { color: var(--ink-soft); }

/* ── BLOG ─────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  border: 2px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 180px; background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.blog-card h3 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.blog-card p { color: var(--ink-soft); font-size: 14.5px; flex: 1; margin-bottom: 16px; }
.blog-card .read-more { color: var(--orange-dark); font-weight: 800; font-size: 14px; }

/* ── ARTICLE (blog post) ──────────────────────────── */
.article { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
.article-meta { color: var(--muted); font-size: 14px; margin-bottom: 12px; font-weight: 700; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; line-height: 1.15; }
.article-lead { font-size: 19px; color: var(--ink-soft); margin-bottom: 32px; line-height: 1.6; }
.article-body { font-size: 17px; color: var(--ink); line-height: 1.75; }
.article-body p { margin-bottom: 22px; }
.article-body h2 { margin-top: 40px; margin-bottom: 14px; font-size: 30px; }
.article-body h3 { margin-top: 28px; margin-bottom: 10px; font-size: 22px; }
.article-body ul, .article-body ol { margin: 16px 0 22px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--orange); padding: 8px 24px;
  background: var(--orange-bg); border-radius: 8px; margin: 24px 0;
  font-style: italic; color: var(--ink-soft);
}
.article-body a { font-weight: 700; }
.article-cta {
  background: var(--orange); color: var(--white);
  border-radius: 24px; padding: 32px; text-align: center;
  margin: 40px 0; box-shadow: var(--shadow-md);
}
.article-cta h3 { color: var(--white); margin-bottom: 8px; }
.article-cta p { color: rgba(255,255,255,0.92); margin-bottom: 16px; }

/* ── ASK QUIZZLE (chat) ───────────────────────────── */
.quizzle-chat {
  max-width: 720px; margin: 0 auto; padding: 32px 16px;
}
.chat-shell {
  background: var(--white); border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 2px solid var(--line);
}
.chat-header {
  background: linear-gradient(120deg, var(--orange) 0%, var(--pink) 100%);
  padding: 24px; color: var(--white);
  display: flex; align-items: center; gap: 16px;
}
.chat-avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  flex-shrink: 0;
}
.chat-header h2 { color: var(--white); font-size: 22px; margin: 0; }
.chat-header p { font-size: 13px; opacity: 0.95; margin: 0; }
.chat-body {
  padding: 24px; min-height: 360px; max-height: 60vh; overflow-y: auto;
  display: flex; flex-direction: column; gap: 14px;
}
.chat-msg { padding: 12px 18px; border-radius: 18px; max-width: 85%; line-height: 1.5; font-size: 15px; }
.chat-msg.bot { background: var(--orange-bg); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--orange); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.typing { color: var(--muted); font-style: italic; }
.chat-input-row { display: flex; gap: 10px; padding: 16px; border-top: 2px solid var(--line); }
.chat-input {
  flex: 1; border: 2px solid var(--line); border-radius: 99px;
  padding: 12px 20px; font-family: 'Nunito', sans-serif; font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--orange); }
.chat-send {
  background: var(--orange); color: var(--white); border: none;
  border-radius: 99px; padding: 0 24px; font-weight: 700; font-family: 'Nunito', sans-serif;
  cursor: pointer; transition: transform 0.15s;
}
.chat-send:hover { transform: scale(1.05); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }
.suggestion-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 16px; }
.suggestion-chip {
  background: var(--white); border: 2px solid var(--orange-light);
  color: var(--orange-dark); padding: 8px 14px; border-radius: 99px;
  font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s;
  font-family: 'Nunito', sans-serif;
}
.suggestion-chip:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: var(--ink); color: var(--white); padding: 64px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); }
.footer-tagline { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 280px; }
.footer-col h4 { color: var(--orange-light); font-size: 15px; margin-bottom: 14px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 14px; }
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}

/* ── AD SLOTS ─────────────────────────────────────── */
.ad-slot {
  margin: 32px auto; max-width: 1200px; padding: 0 24px;
  text-align: center;
}
.ad-slot.in-content { margin: 32px auto; }
.ad-placeholder {
  background: var(--orange-bg); border: 2px dashed var(--orange-light);
  border-radius: 16px; padding: 24px;
  color: var(--muted); font-size: 13px; font-weight: 600;
  min-height: 90px; display: flex; align-items: center; justify-content: center;
}

/* ── UTILS ────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.fade-in { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
