/* Where It Clicks — "Playground" edition (fun / bold / photo-forward) */

:root {
  --blue: #2f6bff;
  --blue-2: #1f52e0;
  --blue-deep: #14224f;
  --ink: #101a3d;
  --sky: #38c6ff;
  --sky-soft: #d5f1ff;
  --wash: #eaf1ff;
  --wash-2: #f4f8ff;
  --sun: #ffd23f;
  --coral: #ff6a5a;
  --white: #ffffff;
  --paper: #f4f8ff;
  --line: #dbe6ff;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-blue: 6px 6px 0 var(--blue-deep);
  --shadow-soft: 0 26px 50px -24px rgba(20, 34, 79, 0.42);
  --radius: 22px;
  --radius-lg: 34px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: var(--blue-2); text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.tight { max-width: 940px; }

/* ---------- Photo placeholders ---------- */
.photo {
  position: relative;
  background:
    repeating-linear-gradient(-45deg, rgba(47,107,255,0.05) 0 14px, rgba(47,107,255,0.10) 14px 28px),
    linear-gradient(140deg, var(--sky-soft), var(--wash));
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 120px;
}
.photo[data-label]::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--blue-2);
  opacity: 0.75;
}
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Nav ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 3px solid var(--ink);
}
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; }
.navbar nav { display: flex; align-items: center; gap: 0.3rem; }
.navbar nav a {
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.navbar nav a:hover { background: var(--wash); transform: translateY(-1px); }
.navbar nav a.active { color: var(--blue-2); background: var(--wash); }
.navbar nav a.nav-cta {
  background: var(--blue);
  color: #fff;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 0.5rem 1.1rem;
  margin-left: 0.35rem;
}
.navbar nav a.nav-cta:hover { background: var(--blue-2); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 1.12rem;
  color: #fff;
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  cursor: pointer;
  box-shadow: var(--shadow-hard);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--ink); background: var(--blue-2); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sun { background: var(--sun); color: var(--ink); }
.btn-sun:hover { background: #ffdd6b; }
.btn-white { background: #fff; color: var(--blue-2); }
.btn-white:hover { background: #fff; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn-ghost:hover { background: var(--wash); box-shadow: none; transform: translateY(-2px); }
.btn-secondary { background: var(--sky); color: var(--ink); }

/* ---------- Sticker / eyebrow ---------- */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--sun);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}
.sticker.sky { background: var(--sky); }
.sticker.white { background: #fff; }
.sticker.free { background: var(--coral); color: #fff; animation: wiggle 2.6s ease-in-out infinite; }
@keyframes wiggle { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(6rem, 11vw, 9rem);
  background:
    linear-gradient(135deg, rgba(20,34,79,0.86), rgba(47,107,255,0.72)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 22px, rgba(255,255,255,0.12) 22px 44px),
    linear-gradient(140deg, #2f6bff, #38c6ff);
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 760px; }
.hero-stickers { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.4rem; }
.hero h1 {
  font-size: clamp(2.7rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  text-shadow: 0 4px 0 rgba(20,34,79,0.25);
}
.hero h1 .pop { color: var(--sun); display: inline-block; }
.hero-lede {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  max-width: 34rem;
  margin: 1.3rem 0 2rem;
  color: rgba(255,255,255,0.94);
}
.hero-lede b { color: var(--sun); }
.location-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.14);
  border: 2.5px solid #fff;
  border-radius: 999px;
  padding: 0.55rem 1.1rem 0.55rem 0.8rem;
  color: #fff;
  font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 1.02rem;
  backdrop-filter: blur(4px);
  box-shadow: 4px 4px 0 rgba(20,34,79,0.35);
}
.location-badge svg { width: 22px; height: 22px; fill: var(--sun); flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.free-note {
  margin: 1.1rem 0 0;
  font-family: "Fredoka", sans-serif; font-weight: 500;
  font-size: 1.1rem; color: #fff;
}
.free-note b { color: var(--sun); }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.2rem;
  margin-top: 2.6rem;
}
.hero-stats .s .n {
  font-family: "Fredoka", sans-serif; font-weight: 600;
  font-size: 2.4rem; line-height: 1; color: var(--sun); display: block;
}
.hero-stats .s .l { font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,0.85); }

/* floaty decorative badges */
.floaty {
  position: absolute; z-index: 3;
  font-family: "Fredoka", sans-serif; font-weight: 500;
  background: #fff; color: var(--ink);
  border: 3px solid var(--ink); border-radius: 18px;
  padding: 0.6rem 0.95rem; box-shadow: var(--shadow-hard);
  display: flex; align-items: center; gap: 0.5rem;
}
.floaty .emoji { font-size: 1.3rem; }
.floaty.one { top: 20%; right: 6%; transform: rotate(6deg); animation: bob 4s ease-in-out infinite; }
.floaty.two { bottom: 16%; right: 15%; transform: rotate(-5deg); background: var(--sun); animation: bob 5s ease-in-out infinite 0.5s; }
.floaty.three { top: 48%; right: 16%; transform: rotate(-8deg); background: var(--sky); animation: bob 4.5s ease-in-out infinite 0.2s; }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* wavy divider */
.wave-divider { position: relative; line-height: 0; margin-top: -1px; }
.wave-divider svg { width: 100%; height: auto; display: block; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--sun);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  padding: 0.7rem 0;
}
.marquee-track {
  display: flex; gap: 2.2rem; width: max-content;
  animation: scroll-x 22s linear infinite;
  font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.25rem;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 2.2rem; }
.marquee-track .star { color: var(--blue); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section.alt { background: var(--wash-2); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin: 0.8rem 0 0.6rem; }
.section-head p { font-size: 1.12rem; color: #43507a; margin: 0; }
.center .sticker { }

/* ---------- Learn cards ---------- */
.learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.learn-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.9rem;
  box-shadow: var(--shadow-hard);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.learn-card:nth-child(1) { background: #fff; }
.learn-card:nth-child(2) { background: var(--wash); }
.learn-card:nth-child(3) { background: var(--sky-soft); }
.learn-card:hover { transform: translate(-3px,-4px) rotate(-1deg); box-shadow: 10px 12px 0 var(--ink); }
.learn-card .num {
  font-family: "Fredoka", sans-serif; font-weight: 600;
  width: 3.2rem; height: 3.2rem; border-radius: 16px;
  background: var(--blue); color: #fff;
  border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
  box-shadow: 3px 3px 0 var(--ink);
}
.learn-card:nth-child(2) .num { background: var(--coral); }
.learn-card:nth-child(3) .num { background: var(--sky); color: var(--ink); }
.learn-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.learn-card p { margin: 0; color: #3c4a72; font-weight: 600; }

/* ---------- Highlight cards (replaces photo collage) ---------- */
.collage { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 1.1rem; }
.collage .big { grid-column: span 2; grid-row: span 2; }
.collage .tall { grid-row: span 2; }
.highlight-card {
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 0.5rem;
  color: var(--ink);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.highlight-card:hover { transform: translate(-3px,-4px) rotate(-0.6deg); box-shadow: 10px 12px 0 var(--ink); }
.highlight-card.blue { background: linear-gradient(150deg, var(--sky-soft), var(--wash)); }
.highlight-card.coral { background: linear-gradient(150deg, #ffe1dc, #ffd0c7); }
.highlight-card.sky { background: var(--sky-soft); }
.highlight-card.sun { background: #fff4cf; }
.hl-badge {
  width: 2.6rem; height: 2.6rem; border-radius: 12px;
  background: #fff; border: 2.5px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--blue);
}
.highlight-card h3 { font-size: 1.2rem; margin: 0; }
.highlight-card p { margin: 0; font-size: 0.92rem; color: #3c4a72; }
.highlight-card.big h3 { font-size: 1.5rem; }

/* ---------- Testimonial bubble ---------- */
.quote-wrap { display: flex; justify-content: center; }
.quote-bubble {
  position: relative;
  background: var(--blue);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 30px;
  padding: 2.6rem 2.4rem;
  max-width: 720px;
  box-shadow: var(--shadow-hard);
  text-align: center;
}
.quote-bubble::after {
  content: ""; position: absolute; bottom: -22px; left: 60px;
  width: 34px; height: 34px; background: var(--blue);
  border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
}
.quote-bubble blockquote {
  font-family: "Fredoka", sans-serif; font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.2; margin: 0;
}
.quote-bubble blockquote .pop { color: var(--sun); }
.quote-cite { margin-top: 1.3rem; font-weight: 800; color: #fff; }
.quote-cite span { color: rgba(255,255,255,0.75); font-weight: 700; }

/* ---------- Two info cards ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.info-card {
  background: #fff; border: 3px solid var(--ink); border-radius: var(--radius-lg);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-hard);
}
.info-card h2 { font-size: 1.9rem; margin-bottom: 0.6rem; }
.info-card p { margin: 0; color: #3c4a72; font-weight: 600; }
.info-card .badge-emoji {
  font-size: 2rem; margin-bottom: 0.6rem; display: inline-flex;
  width: 3.4rem; height: 3.4rem; align-items: center; justify-content: center;
  background: var(--sun); border: 3px solid var(--ink); border-radius: 16px;
  box-shadow: 3px 3px 0 var(--ink);
}
.info-card.sky .badge-emoji { background: var(--sky); }

/* ---------- Big CTA band ---------- */
.cta-band {
  position: relative;
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  background:
    linear-gradient(130deg, rgba(20,34,79,0.82), rgba(47,107,255,0.7)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 18px, rgba(255,255,255,0.12) 18px 36px),
    linear-gradient(140deg, #2f6bff, #38c6ff);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.cta-band p { margin: 0.6rem 0 0; color: rgba(255,255,255,0.9); font-weight: 700; max-width: 30rem; }

/* ---------- Page hero (secondary pages) ---------- */
.page-hero {
  position: relative;
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    linear-gradient(135deg, rgba(20,34,79,0.85), rgba(47,107,255,0.7)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 20px, rgba(255,255,255,0.12) 20px 40px),
    linear-gradient(140deg, #2f6bff, #38c6ff);
  overflow: hidden;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 1rem 0 0.7rem; text-shadow: 0 4px 0 rgba(20,34,79,0.22); }
.page-hero p { font-size: 1.2rem; font-weight: 700; max-width: 34rem; color: rgba(255,255,255,0.94); }
.page-hero .floaty { display: flex; }

/* ---------- Game carousel ---------- */
.carousel { display: flex; align-items: center; gap: 1rem; }
.car-viewport { overflow: hidden; flex: 1; padding: 10px 6px 14px; margin: -10px -6px -14px; }
.car-track { display: flex; gap: 1.4rem; transition: transform 0.35s cubic-bezier(0.22,0.61,0.36,1); }
.mini-card {
  flex: 0 0 calc((100% - 2.8rem) / 3);
  box-sizing: border-box;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.mini-card:hover { transform: translate(-3px,-4px) rotate(-0.6deg); box-shadow: 10px 12px 0 var(--ink); }
.mini-slot {
  display: block; width: 100%; height: 118px;
  border-bottom: 3px solid var(--ink);
  background: linear-gradient(150deg, var(--sky), var(--blue));
  --image-slot-placeholder-color: rgba(255,255,255,0.9);
}
.mini-thumb { display: block; height: 118px; border-bottom: 3px solid var(--ink); position: relative; }
.mini-thumb::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 12px, rgba(255,255,255,0.12) 12px 24px);
}
.mini-thumb.t1 { background: linear-gradient(150deg, #3a2c1a, #a9701f 70%, #f4c150); }
.mini-thumb.t2 { background: linear-gradient(150deg, #2f6bff, #38c6ff); }
.mini-thumb.t3 { background: linear-gradient(150deg, #101a3d, #2b3f6e 65%, #5b4b8a); }
.mini-thumb.t4 { background: linear-gradient(150deg, #1b2440, #46516f); }
.mini-title {
  font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 1.1rem; line-height: 1.15;
  color: var(--ink); padding: 0.9rem 1rem 0.4rem;
}
.mini-play {
  font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 0.9rem;
  color: var(--blue-2); padding: 0 1rem 1rem; margin-top: auto;
}
.mini-card:hover .mini-play { color: var(--blue); }
.car-arrow {
  flex: none; width: 54px; height: 54px; border-radius: 999px;
  background: var(--blue); color: #fff; border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}
.car-arrow svg { width: 26px; height: 26px; }
.car-arrow:hover:not(:disabled) { background: var(--blue-2); transform: translate(-1px,-1px); box-shadow: 6px 6px 0 var(--ink); }
.car-arrow:active:not(:disabled) { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.car-arrow:disabled { opacity: 0.35; cursor: default; box-shadow: 2px 2px 0 var(--ink); }
.car-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.6rem; }
.car-dot {
  width: 12px; height: 12px; border-radius: 999px; padding: 0; cursor: pointer;
  background: #fff; border: 2.5px solid var(--ink); transition: background 0.15s ease, transform 0.15s ease;
}
.car-dot.active { background: var(--blue); transform: scale(1.15); }

/* ---------- About ---------- */
.about-intro { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.8rem; align-items: stretch; }
.about-intro > div:first-child { display: flex; flex-direction: column; }
.about-photo { position: relative; flex: 1; }
.monogram {
  width: 100%; height: 100%; aspect-ratio: 4/5;
  border: 3px solid var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-hard);
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 18px, rgba(255,255,255,0.12) 18px 36px),
    linear-gradient(150deg, var(--blue), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: "Fredoka", sans-serif; font-weight: 600; color: #fff;
  font-size: clamp(4rem, 10vw, 6.5rem);
  letter-spacing: -0.02em;
}
.about-photo .floaty { position: absolute; bottom: 18px; left: -14px; }
.credential-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.6rem; justify-content: center; }
.about-story .sticker { margin-bottom: 1rem; }
.about-story h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
.about-story p { font-size: 1.22rem; color: #33406b; margin: 0 0 1.4rem; font-weight: 600; }
.about-story .signoff {
  font-family: "Fredoka", sans-serif; font-weight: 500; color: var(--blue-2);
  font-size: 1.5rem; line-height: 1.25; margin-top: 0.4rem;
}
/* ---------- Gallery ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.6rem; }
.game-card {
  background: #fff; border: 3px solid var(--ink); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-hard);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  display: flex; flex-direction: column;
}
.game-card:hover { transform: translate(-3px,-4px) rotate(-0.6deg); box-shadow: 10px 12px 0 var(--ink); }
.game-card .thumb {
  position: relative;
  height: 172px; border-bottom: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.game-card .thumb svg { width: 74px; height: 74px; color: #fff; position: relative; z-index: 1;
  filter: drop-shadow(3px 3px 0 rgba(20,34,79,0.35)); }
.game-card .thumb::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 14px, rgba(255,255,255,0.12) 14px 28px);
}
.thumb-tag {
  position: absolute; z-index: 2; bottom: 10px; right: 10px;
  font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  background: #fff; color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 0.18rem 0.6rem; box-shadow: 2px 2px 0 var(--ink);
}
.thumb-mining { background: linear-gradient(150deg, #3a2c1a, #a9701f 70%, #f4c150); }
.thumb-mining svg { color: #ffd884; }
.thumb-button { background: linear-gradient(150deg, #2f6bff, #38c6ff); }
.thumb-hills  { background: linear-gradient(150deg, #101a3d, #2b3f6e 65%, #5b4b8a); }
.thumb-hills svg { color: #b9c6ff; }
.thumb-jail   { background: linear-gradient(150deg, #1b2440, #46516f); }
.game-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }
.thumb-slot {
  display: block; width: 100%; height: 190px;
  border-bottom: 3px solid var(--ink);
  background: linear-gradient(150deg, var(--sky), var(--blue));
  --image-slot-placeholder-color: rgba(255,255,255,0.9);
}
.game-card .body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.game-card h3 { font-size: 1.5rem; }
.game-card .student {
  font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--blue-2);
}
.game-card p { margin: 0; color: #3c4a72; font-weight: 600; font-size: 0.98rem; }
.game-card .btn { margin-top: auto; align-self: flex-start; }
.empty-state {
  grid-column: 1 / -1; text-align: center; padding: 3.5rem 1.5rem;
  background: var(--wash); border: 3px dashed var(--ink); border-radius: var(--radius-lg);
}
.empty-state h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.empty-state p { color: #3c4a72; font-weight: 600; }
.empty-state code { background: #fff; border: 2px solid var(--ink); padding: 0.1rem 0.45rem; border-radius: 8px; }

/* ---------- Booking form ---------- */
.form-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.2rem; align-items: start; }
.form-aside {
  background: var(--wash); border: 3px solid var(--ink); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow-hard);
}
.aside-visual {
  height: 190px; margin-bottom: 1.2rem; border: 3px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  background: linear-gradient(150deg, var(--sky), var(--blue));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.9rem;
  padding: 1.2rem; text-align: center; color: #fff;
}
.aside-visual .av-icon {
  width: 3.6rem; height: 3.6rem; border-radius: 999px;
  background: rgba(255,255,255,0.16); border: 2.5px solid #fff;
  display: flex; align-items: center; justify-content: center;
}
.aside-visual .av-icon svg { width: 28px; height: 28px; color: #fff; }
.aside-visual span { font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 1.02rem; }
.form-aside h2 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.form-aside > p { color: #3c4a72; font-weight: 600; }
.form-aside ul { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.8rem; }
.form-aside li { display: flex; gap: 0.7rem; align-items: flex-start; color: #33406b; font-weight: 600; }
.form-aside li::before { content: "✦"; color: var(--blue); font-size: 1.1rem; line-height: 1.4; }
form.booking {
  background: #fff; border: 3px solid var(--ink); border-radius: var(--radius-lg);
  padding: 1.9rem; box-shadow: var(--shadow-hard);
}
.form-row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
label { font-family: "Fredoka", sans-serif; font-weight: 500; font-size: 1rem; color: var(--ink); }
label .hint { font-family: "Nunito"; font-weight: 600; color: #7a86ab; font-size: 0.85rem; }
input, textarea {
  font-family: "Nunito", sans-serif; font-weight: 600; font-size: 1rem;
  padding: 0.8rem 0.95rem; border: 2.5px solid var(--ink); border-radius: 14px;
  background: var(--wash-2); color: var(--ink); width: 100%;
}
input::placeholder, textarea::placeholder { color: #8a95b8; font-weight: 600; }
input:focus, textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 3px 3px 0 var(--blue); }
textarea { resize: vertical; min-height: 110px; }
form.booking .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-status { margin-top: 1rem; font-weight: 700; }
.form-status.success { color: #1c8a4d; }
.form-status.error { color: #d33; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #fff;
  border-top: 3px solid var(--ink);
  padding: 3rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; }
.footer-brand-col .brand-logo {
  height: 40px; background: #fff; padding: 8px 12px; border-radius: 14px; border: 3px solid #fff;
}
.footer-brand-col .footer-logo {
  height: 62px; padding: 10px 16px; border-radius: 16px;
}
.footer-brand-col p { color: rgba(255,255,255,0.72); font-weight: 600; margin: 1rem 0 0; max-width: 27rem; }
.footer-col h4 { font-size: 1.15rem; margin-bottom: 0.9rem; color: var(--sun); }
.footer-col a { display: block; color: rgba(255,255,255,0.82); font-weight: 600; padding: 0.25rem 0; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6); font-size: 0.92rem; font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .floaty { display: none !important; }
}
@media (max-width: 980px) {
  .mini-card { flex-basis: calc((100% - 1.4rem) / 2); }
}
@media (max-width: 900px) {
  .learn-grid { grid-template-columns: 1fr; }
  .collage { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .form-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .navbar nav a:not(.nav-cta):not(.active) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .mini-card { flex-basis: 100%; }
  .car-arrow { width: 46px; height: 46px; }
  .hero-stats { gap: 1.4rem; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
