/* ─── Scalisco.com — Global Styles ─── */

:root {
  --text: #121212;
  --bg-white: #ffffff;
  --bg-light: #f7f7f7;
  --blue: #0098ff;
  --blue-dark: #0080dd;
  --accent-2: #334FB4;
  --cyan-magenta: linear-gradient(136deg, rgba(10, 234, 237, 1) 11%, rgba(250, 13, 253, 1) 84%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Assistant', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); }

/* ════════════════════════════════════
   NAV (transparent overlay)
   ════════════════════════════════════ */
.links-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 0 1.5rem; height: 50px;
  display: flex; align-items: center; justify-content: space-between;
}
.links-nav a.home-link {
  color: white; text-decoration: none; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.links-nav a.home-link img { height: 30px; }
.links-nav-links { display: flex; gap: 0.75rem; list-style: none; }
.links-nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.8rem; font-weight: 700;
}
.links-nav-links a:hover { color: white; }

/* ════════════════════════════════════
   HERO VIDEO
   ════════════════════════════════════ */
.hero-video-section {
  padding: 0;
}
.hero-video-section video {
  width: 100%; display: block;
}

/* Hero CTA section (below the video) */
.hero-cta-section { padding: 2rem 2rem; }
.hero-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.hero-cta-text { flex: 1; min-width: 200px; }
.hero-cta-text h1 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: white; margin-bottom: 0.3rem;
}
.hero-cta-text p {
  font-size: 0.95rem; color: rgba(255,255,255,0.8); margin: 0;
}
.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero-btn-img { height: 55px; width: auto; transition: transform 0.2s, filter 0.2s; border-radius: 8px; }
.hero-btn-img:hover { transform: scale(1.05); filter: brightness(1.1); }

/* Legacy hero (for subpages that might use it) */
.hero {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
  background: var(--blue);
}
.hero-content { max-width: 700px; }
.hero-logo { max-width: 420px; margin: 0 auto 1.5rem; }
.hero h1 { font-size: clamp(1.4rem, 3.5vw, 2rem); color: white; margin-bottom: 2rem; font-weight: 400; }

/* ════════════════════════════════════
   SECTIONS
   ════════════════════════════════════ */
section { padding: 4rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-light { background: var(--bg-light); }
.section-white { background: var(--bg-white); }
.section-blue { background: var(--blue); color: white; }
.section-blue .section-title { color: white; }

.section-title {
  font-size: 1.8rem; text-align: center; margin-bottom: 1.5rem; color: var(--text);
}
.section-subtitle { text-align: center; margin-bottom: 2rem; font-size: 1.05rem; color: #555; }

/* ════════════════════════════════════
   HOME — GAME CARDS
   ════════════════════════════════════ */
.home-games-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.home-game-card {
  background: white; border-radius: 12px; overflow: hidden;
  text-decoration: none; color: var(--text); text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 1.5rem;
}
.home-game-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.home-game-card img:first-child {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.home-game-card h3 { font-size: 1.15rem; margin: 1rem 0 0.25rem; padding: 0 1rem; }
.home-game-card p { font-size: 0.85rem; color: #777; padding: 0 1rem; }
.game-card-desc { margin-bottom: 0.5rem; }
.game-card-platform { font-size: 0.8rem; color: #999; font-weight: 700; margin-top: auto; }

/* ════════════════════════════════════
   INFO CARDS (We Make Games / etc.)
   ════════════════════════════════════ */
.info-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.info-card {
  text-align: center;
}
.info-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; margin-bottom: 1rem;
}
.info-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.info-card p { font-size: 0.95rem; color: #555; line-height: 1.6; }

/* ════════════════════════════════════
   HOME SIGNUP FORM
   ════════════════════════════════════ */
.home-signup-form {
  max-width: 500px; margin: 0 auto;
  background: white; padding: 2rem; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.home-signup-form h2 {
  font-family: 'Fredoka', sans-serif; text-align: center;
  font-size: 1.5rem; background: var(--blue); color: white;
  padding: 0.4rem 1rem; border-radius: 8px; margin-bottom: 0.75rem; font-weight: 700;
}
.home-signup-form p { text-align: center; color: #555; margin-bottom: 1rem; }
.home-signup-form label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.25rem; color: #333; }
.home-signup-form input[type="email"],
.home-signup-form input[type="text"] {
  width: 100%; padding: 0.6rem; border: 1px solid #ccc; border-radius: 8px;
  font-family: 'Assistant', sans-serif; font-size: 0.95rem; margin-bottom: 0.75rem;
}
.home-signup-form button { display: block; margin: 0.5rem auto 0; }

/* ════════════════════════════════════
   CONVENTION GALLERY
   ════════════════════════════════════ */
.convention-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem;
}
.convention-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }

.convention-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.convention-logos img {
  height: 50px; width: auto; object-fit: contain;
  opacity: 0.7; transition: opacity 0.2s;
}
.convention-logos img:hover { opacity: 1; }

/* ════════════════════════════════════
   STATS / MISSION
   ════════════════════════════════════ */
.stats-cards-row {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.stat-card {
  background: var(--bg-light); border-radius: 16px;
  padding: 1.75rem 2rem; min-width: 160px; flex: 1; max-width: 220px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.stat-number {
  font-family: 'Fredoka', sans-serif; font-size: 2.2rem; font-weight: 700;
  color: var(--blue); line-height: 1.1; margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.9rem; color: #555; line-height: 1.4;
}

.mission-text {
  text-align: center; max-width: 600px; margin: 0 auto 2rem;
  font-size: 1.05rem; line-height: 1.7;
}

.dog-photo { max-width: 350px; border-radius: 12px; margin: 0 auto; }

.partner-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem;
}
.partner-logos img { height: 70px; width: auto; object-fit: contain; border-radius: 6px; }

/* ════════════════════════════════════
   COLORING SHEETS
   ════════════════════════════════════ */
.coloring-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  max-width: 600px; margin: 0 auto;
}
.coloring-img { width: 100%; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

/* ════════════════════════════════════
   BUTTONS
   ════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: 4px;
  text-decoration: none; font-family: 'Assistant', sans-serif;
  font-weight: 700; font-size: 1rem;
  transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-accent { background: var(--cyan-magenta); color: white; }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--text); }
.btn-outline:hover { background: var(--text); color: white; }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer {
  background: #1a1a1a; color: rgba(255,255,255,0.6);
  text-align: center; padding: 3rem 2rem; font-size: 0.9rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-links {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.social-links {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.social-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.social-links a:hover { color: white; }
.footer-copy { color: rgba(255,255,255,0.3); }

/* ════════════════════════════════════
   SUBPAGE LAYOUT
   ════════════════════════════════════ */
.page-header { background: var(--blue); padding: 4rem 2rem 3rem; text-align: center; color: white; }
.page-header h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); color: white; }

.page-content {
  padding: 3rem 2rem; max-width: 800px; margin: 0 auto; line-height: 1.8; font-size: 1.05rem;
}
.page-content h2 { margin: 2rem 0 1rem; }
.page-content p { margin-bottom: 1rem; }
.page-content img { border-radius: 8px; margin: 1rem auto; }

/* ════════════════════════════════════
   GAME PAGE HERO
   ════════════════════════════════════ */
.game-hero {
  background: var(--blue); padding: 4rem 2rem 3rem; text-align: center; color: white;
}
.game-hero .hero-content { max-width: 700px; margin: 0 auto; }
.game-hero-logo { max-width: 350px; margin: 0 auto 1.5rem; }
.game-hero h1 { color: white; margin-bottom: 1rem; font-size: clamp(1.6rem, 4vw, 2.5rem); }
.game-hero p { max-width: 600px; margin: 0 auto 1rem; font-size: 1.1rem; }
.game-download-buttons {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem;
}
.game-download-buttons img { height: 50px; width: auto; }
.game-download-buttons a { transition: transform 0.2s; display: inline-block; }
.game-download-buttons a:hover { transform: scale(1.05); }
.press-link { display: block; margin-top: 1rem; color: rgba(255,255,255,0.8); font-size: 0.95rem; text-decoration: underline; }
.press-link:hover { color: white; }

/* ════════════════════════════════════
   GAME SCREENSHOTS
   ════════════════════════════════════ */
.video-embed {
  max-width: 800px; margin: 0 auto; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  aspect-ratio: 16/9;
}
.video-embed iframe { width: 100%; height: 100%; display: block; }
.game-screenshots {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; padding: 3rem 2rem; max-width: 1100px; margin: 0 auto;
}
.game-screenshots img { width: 100%; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

/* ════════════════════════════════════
   PRESS LOGOS
   ════════════════════════════════════ */
.press-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 2rem; flex-wrap: wrap; margin: 2rem 0;
}
.press-logos img { height: 45px; width: auto; object-fit: contain; opacity: 0.7; transition: opacity 0.2s; }
.press-logos img:hover { opacity: 1; }

/* ════════════════════════════════════
   TEAM CARDS
   ════════════════════════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(264px, 312px));
  gap: 2rem; justify-content: center;
}
.team-card {
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
}
.team-card > img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.team-card-body { padding: 1.25rem 1.25rem 1rem; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.team-card .role { color: var(--blue); font-weight: 700; font-size: 0.78rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.team-card p { color: #555; line-height: 1.6; font-size: 0.88rem; }
.team-card .links { margin-top: 0.9rem; }
.team-card .links a { margin-right: 0.75rem; font-weight: 700; font-size: 0.85rem; text-decoration: none; }

/* Convention coverflow carousel */
.convention-carousel-wrap {
  position: relative; margin-top: 0;
  perspective: 1000px;
}
.convention-carousel {
  display: flex; align-items: center; justify-content: center;
  height: 320px; overflow: hidden; position: relative;
}
@media (min-width: 800px) {
  .convention-carousel { height: 420px; }
  .convention-carousel img.slide-center { width: 56%; max-width: 560px; }
  .convention-carousel img.slide-side-1 { width: 40%; max-width: 360px; }
  .convention-carousel img.slide-side-2 { width: 30%; max-width: 260px; }
}
.convention-carousel img {
  position: absolute;
  aspect-ratio: 4/3; object-fit: cover;
  border-radius: 14px; cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.45s ease, opacity 0.45s ease;
  user-select: none;
}
.convention-carousel img.slide-center {
  width: 52%; max-width: 400px;
  transform: translateX(0) scale(1) translateZ(0);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  z-index: 3; opacity: 1;
}
.convention-carousel img.slide-side-1 {
  width: 38%; max-width: 290px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 2; opacity: 1;
}
.convention-carousel img.slide-side-2 {
  width: 28%; max-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  z-index: 1; opacity: 1;
}
.convention-carousel img.slide-hidden { opacity: 0; pointer-events: none; z-index: 0; }
/* Portrait variant for phone screenshots */
.portrait-carousel .convention-carousel { height: 480px; }
@media (min-width: 800px) {
  .portrait-carousel .convention-carousel { height: 790px; }
}
.portrait-carousel .convention-carousel img { aspect-ratio: 9/16; }
.convention-carousel img.slide-left-1  { transform: translateX(-72%) rotateY(18deg); }
.convention-carousel img.slide-left-2  { transform: translateX(-118%) rotateY(28deg); }
.convention-carousel img.slide-right-1 { transform: translateX(72%) rotateY(-18deg); }
.convention-carousel img.slide-right-2 { transform: translateX(118%) rotateY(-28deg); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: white; border: none; border-radius: 50%; width: 44px; height: 44px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18); cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.15s; z-index: 10;
}
.carousel-btn:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.28); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.9rem; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ccc; cursor: pointer; transition: background 0.2s;
}
.carousel-dot.active { background: var(--blue); }

/* Lightbox */
.carousel-lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.88); align-items: center; justify-content: center;
}
.carousel-lightbox.open { display: flex; }
.carousel-lightbox img {
  max-width: 92vw; max-height: 90vh;
  border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: pointer;
}
.carousel-lightbox-close {
  position: fixed; top: 1rem; right: 1.2rem; font-size: 2rem; color: white;
  cursor: pointer; line-height: 1; background: none; border: none;
}
.carousel-lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; border-radius: 50%;
  width: 52px; height: 52px; font-size: 1.4rem; color: white;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background 0.15s;
}
.carousel-lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.carousel-lightbox-nav.prev { left: 1.2rem; }
.carousel-lightbox-nav.next { right: 1.2rem; }

/* ════════════════════════════════════
   LINKS PAGE (Linktree-style)
   ════════════════════════════════════ */
.links-page {
  background: var(--blue);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(10, 234, 237, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(250, 13, 253, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 200, 255, 0.15) 0%, transparent 50%);
  min-height: 100vh;
  padding: 2rem 1rem 3rem;
  text-align: center; color: white;
  display: flex; flex-direction: column; align-items: center;
}

.links-page .links-mascot { width: 100px; margin-bottom: 0.5rem; }
.links-page .links-logo { width: 220px; margin-bottom: 0.5rem; }
.links-page h1 { font-size: 1.1rem; color: white; margin-bottom: 1.5rem; font-weight: 400; }

.links-social-icons {
  display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.links-social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: white;
  text-decoration: none; font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}
.links-social-icons a:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }

.links-buttons {
  display: flex; flex-direction: column; gap: 0.6rem;
  width: 100%; max-width: 340px; margin-bottom: 2rem;
}
.links-buttons a { display: block; transition: transform 0.2s; }
.links-buttons a img { width: 100%; border-radius: 10px; }
.links-buttons a:hover { transform: scale(1.03); }

/* Steam button glow (game pages) */
.steam-highlight {
  border-radius: 25px;
  box-shadow: 0 0 10px 5px #ff0;
  animation: rainbowShadow 1s infinite;
  max-height: 125px; width: auto;
}
@keyframes rainbowShadow {
  0%   { box-shadow: 0 0 10px 5px #ff0; }
  50%  { box-shadow: 0 0 10px 5px #fff; }
  100% { box-shadow: 0 0 10px 5px #ff0; }
}

/* Steam button glow */
.links-buttons a.steam-link { position: relative; }
.links-buttons a.steam-link::before {
  content: '';
  position: absolute; inset: -4px; border-radius: 14px;
  background: var(--cyan-magenta);
  z-index: -1;
  opacity: 0.7;
  filter: blur(8px);
  animation: steamGlow 2s ease-in-out infinite alternate;
}
@keyframes steamGlow {
  from { opacity: 0.5; filter: blur(8px); }
  to { opacity: 0.9; filter: blur(12px); }
}

.links-stats {
  display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.links-stats img { height: 90px; width: auto; }

.stats-row {
  display: flex; flex-direction: row; justify-content: center;
  align-items: center; gap: 1.5rem; flex-wrap: wrap;
  overflow-x: auto;
}

.stat-img { height: 80px; width: auto; flex-shrink: 0; min-width: 0; }

.links-convention-photo {
  width: 100%; max-width: 340px; border-radius: 12px; margin-bottom: 2rem;
}

.links-corgi-butt { width: 120px; margin-top: 1rem; opacity: 0.9; }

/* ════════════════════════════════════
   COLORING SHEETS — item wrapper
   ════════════════════════════════════ */
.coloring-item {
  display: flex; flex-direction: column; align-items: center;
}

/* ════════════════════════════════════
   PARTNER LOGOS — linked
   ════════════════════════════════════ */
.partner-logos a {
  display: inline-flex; align-items: center;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0.75;
}
.partner-logos a:hover { opacity: 1; transform: scale(1.05); }

/* ════════════════════════════════════
   FOOTER SOCIAL ICONS
   ════════════════════════════════════ */
.social-icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.2s;
}
.social-icon-link:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.social-icon-link img {
  width: 18px; height: 18px; display: block;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.social-icon-link:hover img { opacity: 1; }
.social-text-link {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.4) !important; text-decoration: none;
  font-size: 0.8rem; padding: 0 0.25rem;
  transition: color 0.2s;
}
.social-text-link:hover { color: white !important; }

/* ════════════════════════════════════
   NAV HAMBURGER BUTTON
   ════════════════════════════════════ */
.nav-hamburger {
  display: none;
  background: none; border: none;
  color: white; font-size: 1.4rem;
  cursor: pointer; padding: 0.25rem 0.5rem; line-height: 1;
}

/* ════════════════════════════════════
   MOBILE
   ════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .links-nav-links { display: none; }
  .links-nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 50px; left: 0; right: 0;
    background: rgba(20,20,20,0.97);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.5rem 1rem;
    z-index: 99; gap: 0;
  }
  .links-nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .links-nav-links.open a { display: block; padding: 0.8rem 0; font-size: 1rem; }

  .hero { min-height: 50vh; padding: 5.5rem 1.5rem 3rem; }
  .hero-logo { max-width: 280px; }
  .hero-btn-img { height: 42px; }

  section { padding: 3rem 1.5rem; }

  .hero-cta-inner { flex-direction: column; text-align: center; }
  .hero-btn-img { height: 44px; }

  .stats-cards-row { gap: 0.75rem; }
  .stat-card { min-width: 120px; padding: 1.25rem 1rem; }
  .stat-number { font-size: 1.7rem; }

  .home-games-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .info-cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .convention-gallery { grid-template-columns: 1fr; }
  .coloring-row { grid-template-columns: 1fr; }

  .convention-logos img { height: 35px; }
}

/* ════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════ */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
