/* ========================================
   CANARD JUMP — Toon / Doodle Style
   ======================================== */

/* ===== VARIABLES ===== */
:root {
  --paper: #f8fafc;
  --ink: #1e293b;
  --duck: #fbbf24;
  --duck-light: #fcd34d;
  --duck-dark: #b45309;
  --ocean-surface: #bae6fd;
  --ocean-mid: #7dd3fc;
  --ocean-deep: #3b82f6;
  --ocean-abyss: #1e3a8a;
  --coral: #fb7185;
  --seaweed: #4ade80;
  --shadow-toon: 4px 4px 0px 0px var(--ink);
  --shadow-toon-sm: 2px 2px 0px 0px var(--ink);
  --shadow-toon-lg: 8px 8px 0px 0px var(--ink);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: "Patrick Hand", cursive;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 1.6;
}

::selection {
  background: var(--duck);
  color: var(--ink);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f0f9ff;
}
::-webkit-scrollbar-thumb {
  background: var(--ocean-mid);
  border: 3px solid #f0f9ff;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: #38bdf8;
}

/* ===== KEYFRAMES ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes swim-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 200px));
  }
}

@keyframes swim-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100vw - 200px));
  }
}

@keyframes rise {
  from {
    transform: translateY(0);
    opacity: 0.6;
  }
  to {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

/* gentle dive animation for decorations */
@keyframes dive {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}

.decor {
  position: absolute;
  /* sit above aquarium and section background but behind main text */
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
  animation: dive 4s ease-in-out infinite;
}

/* ===== AQUARIUM BACKGROUND ===== */
#aquarium {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.fish {
  position: absolute;
}

.fish.swim-right {
  animation: swim-right linear forwards;
}

.fish.swim-left {
  animation: swim-left linear forwards;
}

.bubble {
  position: absolute;
  bottom: 0;
  animation: rise ease-in forwards;
}

/* ===== NAVIGATION ===== */

/* ===== DECORATIVE ASSETS ===== */
.decor {
  position: absolute;
  /* sit above aquarium and section background but behind main text */
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.decor-2,
.decor-3,
.decor-2b,
.decor-3b {
  width: 120px; /* smaller size */
}

/* each section will position its own decoration */
.concept-section,
.gameplay-section {
  position: relative;
}

.concept-section .decor-2 {
  position: absolute;
  top: 20px;
  left: 20px;
}
.concept-section .decor-2b {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.3;
}

.gameplay-section .decor-3 {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.gameplay-section .decor-3b {
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.3;
}
.nav-bar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 16px;
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--ink);
  border-radius: 50px;
  box-shadow: var(--shadow-toon);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  border: 2px solid var(--duck);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.nav-logo-icon i {
  color: var(--duck);
  font-size: 18px;
  transition: color 0.2s;
}

/* Page index : icône remplie jaune par défaut */
.page-index .nav-logo-icon {
  background: var(--duck);
  border-color: var(--ink);
}

.page-index .nav-logo-icon i {
  color: white;
}

/* Hover sur toutes les pages : rempli jaune */
.nav-logo:hover .nav-logo-icon {
  background: var(--duck);
  border-color: var(--ink);
  transform: scale(1.1);
}

.nav-logo:hover .nav-logo-icon i {
  color: white;
}

.nav-logo-text {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
}

.nav-logo-accent {
  color: var(--duck-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--ink);
  border: 2px solid transparent;
  transition: all 0.2s;
}

.nav-link:hover {
  background: var(--duck);
  color: white;
  border-color: var(--ink);
  box-shadow: var(--shadow-toon-sm);
  transform: translateY(-2px);
}

.nav-link.active {
  background: var(--duck);
  color: white;
  border-color: var(--ink);
  box-shadow: var(--shadow-toon-sm);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(to bottom, #bae6fd, #e0f2fe);
}

.hero-clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cloud {
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  animation: pulse-soft 4s ease-in-out infinite;
}
.cloud-1 {
  top: 80px;
  left: 40px;
  font-size: 8rem;
  animation-delay: 0.7s;
}
.cloud-2 {
  top: 140px;
  right: 80px;
  font-size: 7rem;
}
.cloud-3 {
  top: 60px;
  right: 30%;
  font-size: 5rem;
  animation-delay: 1.5s;
  color: rgba(255, 255, 255, 0.4);
}

.hero-grid {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: var(--duck);
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-toon-sm);
  margin-bottom: 24px;
  transform: rotate(-2deg);
  font-size: 1rem;
}

.hero-badge i {
  color: white;
  margin-right: 6px;
}

.hero-title-img {
  width: clamp(280px, 40vw, 500px);
  height: auto;
  filter: drop-shadow(4px 4px 0 var(--ink));
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.35rem;
  color: #475569;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-desc strong {
  color: var(--ocean-deep);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 28px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-toon);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover {
  box-shadow: var(--shadow-toon-lg);
  transform: translateY(-3px);
}
.btn-primary {
  background: var(--ocean-deep);
  color: white;
}
.btn-secondary {
  background: white;
  color: var(--ink);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-canard {
  width: clamp(250px, 30vw, 400px);
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(6px 6px 0 rgba(30, 41, 59, 0.2));
}

.hero-sticker {
  position: absolute;
  bottom: -10px;
  left: -10px;
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-toon);
  font-family: "Patrick Hand", cursive;
  font-weight: 700;
  font-size: 1.2rem;
  transform: rotate(6deg);
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  fill: var(--paper);
}

/* ===== CONCEPT SECTION ===== */
.concept-section {
  padding: 100px 0 80px;
  background: var(--paper);
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1; /* ensure container content covers the decoration */
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Doodle cards */
.doodle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.doodle-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-toon);
  transition: transform 0.3s ease;
}

.doodle-card:hover {
  transform: translateY(-8px);
}

.doodle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-toon-sm);
}

.doodle-icon i {
  font-size: 1.4rem;
  color: white;
}

.bg-slate {
  background: #334155;
}
.bg-ocean {
  background: var(--ocean-deep);
}
.bg-fire {
  background: #f97316;
}

.doodle-card h3 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.doodle-card p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.4;
}

/* ===== GAMEPLAY SECTION ===== */
.gameplay-section {
  padding: 80px 0;
  background: var(--paper);
}

.gameplay-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.gameplay-block.reverse {
  direction: rtl;
}
.gameplay-block.reverse > * {
  direction: ltr;
}

.gameplay-image img {
  width: 100%;
  border-radius: 20px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-toon-lg);
  transition: transform 0.3s ease;
}

.gameplay-image img:hover {
  transform: scale(1.02);
}

.gameplay-content h2 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 16px;
}

.gameplay-content p {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.6;
}

/* ===== BIOMES SECTION ===== */
.biomes-section {
  padding: 40px 0 80px;
  background: var(--paper);
}

.biomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* === BIOME CARD === */
.biome-card {
  position: relative;
  border-radius: 24px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-toon-lg);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.biome-card:hover {
  transform: translateY(-12px);
  box-shadow: 8px 20px 0px 0px var(--ink);
}

/* Card backgrounds */
.biome-card-surface {
  background: linear-gradient(160deg, #c8f4e5 0%, #d6f8ff 60%, #b5efd4 100%);
}
.biome-card-mid {
  background: linear-gradient(160deg, #ffe0ec 0%, #ffd6b0 100%);
}
.biome-card-deep {
  background: linear-gradient(160deg, #0a1a2e 0%, #0d2640 100%);
}

/* Big decorative background number */
.biome-card-deco-num {
  position: absolute;
  top: -24px;
  right: 12px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 10rem;
  line-height: 1;
  color: var(--ink);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.biome-card-deep .biome-card-deco-num {
  color: white;
  opacity: 0.08;
}

/* Art area — floating platform shapes */
.biome-card-art {
  flex: 1;
  position: relative;
  min-height: 220px;
  z-index: 1;
}

.biome-shape {
  position: absolute;
  border-radius: 50px;
}
.bs-1 { animation: float 4s ease-in-out infinite; }
.bs-2 { animation: float 4s ease-in-out infinite; animation-delay: 0.8s; }
.bs-3 { animation: float 4s ease-in-out infinite; animation-delay: 1.6s; }

/* Surface — green lily pads */
.biome-card-surface .biome-shape {
  background: #4ade80;
  border: 3px solid #166534;
  box-shadow: 0 6px 0 #166534;
}
.biome-card-surface .bs-1 { width: 110px; height: 28px; bottom: 30px; left: 50%; transform: translateX(-15%); }
.biome-card-surface .bs-2 { width: 80px;  height: 22px; bottom: 105px; left: 14%; }
.biome-card-surface .bs-3 { width: 65px;  height: 18px; bottom: 65px;  right: 12%; }

/* Mid — red rock platforms */
.biome-card-mid .biome-shape {
  background: #dc2626;
  border-radius: 14px;
  border: 3px solid #7f1d1d;
  box-shadow: 0 6px 0 #7f1d1d;
}
.biome-card-mid .bs-1 { width: 105px; height: 30px; bottom: 30px; left: 50%; transform: translateX(-10%); }
.biome-card-mid .bs-2 { width: 75px;  height: 24px; bottom: 105px; left: 12%; }
.biome-card-mid .bs-3 { width: 58px;  height: 20px; bottom: 65px;  right: 15%; }

/* Deep — ice blue oval platforms */
.biome-card-deep .biome-shape {
  background: rgba(147, 197, 253, 0.65);
  border-radius: 50%;
  border: 3px solid rgba(96, 165, 250, 0.5);
  box-shadow: 0 6px 0 rgba(59, 130, 246, 0.3);
}
.biome-card-deep .bs-1 { width: 105px; height: 28px; bottom: 30px; left: 50%; transform: translateX(-20%); }
.biome-card-deep .bs-2 { width: 72px;  height: 20px; bottom: 100px; left: 14%; }
.biome-card-deep .bs-3 { width: 56px;  height: 16px; bottom: 62px;  right: 13%; }

/* Content area */
.biome-card-body {
  position: relative;
  z-index: 2;
  padding: 28px 28px 32px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 2px solid rgba(255, 255, 255, 0.55);
}
.biome-card-deep .biome-card-body {
  background: rgba(0, 0, 0, 0.25);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.biome-card-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--ink);
  margin: 8px 0 12px;
}
.biome-card-deep .biome-card-title {
  color: #e0f2fe;
}

.biome-card-desc {
  font-size: 1rem;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 20px;
}
.biome-card-deep .biome-card-desc {
  color: rgba(224, 242, 254, 0.82);
}

/* Badges */
.biome-badge {
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  border: 2px solid var(--ink);
  font-size: 0.9rem;
}
.badge-surface { background: white; color: #15803d; }
.badge-mid     { background: #dc2626; color: white; border-color: #7f1d1d; }
.badge-gold    { background: var(--duck); color: var(--ocean-abyss); border-color: var(--ink); }

/* Difficulty */
.biome-difficulty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.diff-label {
  font-family: "Patrick Hand", cursive;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}
.biome-card-deep .diff-label {
  color: rgba(148, 163, 184, 0.9);
}
.diff-stars {
  display: flex;
  gap: 4px;
}
.diff-stars i {
  color: var(--duck);
  font-size: 1rem;
}

/* ===== ARCADE SECTION ===== */
.arcade-section {
  padding: 80px 0;
  background: var(--paper);
}

.arcade-card {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-toon-lg);
  padding: 48px;
  text-align: center;
}

.arcade-logos {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Individual logo badge cards */
.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-toon);
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  width: 180px;
  height: 220px;
  flex-shrink: 0;
}

.logo-badge:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-toon-lg);
}

.logo-badge img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  display: block;
}

.logo-badge-label {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ESRB badge — dark themed */
.logo-badge-esrb {
  background: #1e293b;
  border-color: #1e293b;
}
.logo-badge-esrb .logo-badge-label { color: #94a3b8; }

/* Unity badge — green accent */
.logo-badge-unity {
  background: #f0fdf4;
  border-color: #4ade80;
}
.logo-badge-unity .logo-badge-label { color: #166534; }

/* Borne badge — duck yellow */
.logo-badge-borne {
  background: var(--duck-light);
  border-color: var(--duck-dark);
}
.logo-badge-borne .logo-badge-label { color: var(--duck-dark); }

.arcade-text {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
}

.arcade-text i {
  margin-right: 8px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--ocean-abyss);
  color: white;
  padding-top: 80px;
  padding-bottom: 40px;
  margin-top: 0;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: var(--paper);
}

.footer-inner {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-heart {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  border: 4px solid var(--ocean-mid);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.footer-heart i {
  color: var(--coral);
  font-size: 1.5rem;
}

.footer-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 48px;
}

/* Team members */
.team-members {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}

.member-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #e0f2fe;
  border: 2px solid var(--ink);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-toon);
  transition: transform 0.3s;
}

.member:hover .member-avatar {
  transform: scale(1.05);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  transform: rotate(1deg);
  transition: transform 0.2s;
}

.member:hover .member-name {
  transform: rotate(0deg);
}

.member-role {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--duck-dark);
  margin-bottom: 8px;
}

.member-desc {
  background: white;
  color: #64748b;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 10px;
  border: 2px dashed var(--ink);
  text-align: center;
  width: 100%;
}

/* Social links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: white;
  color: var(--ocean-abyss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
  background: var(--ocean-deep);
  color: white;
  transform: translateY(-4px);
}

.social-links a i {
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}

.footer-bottom p {
  font-family: "Fredoka", sans-serif;
  font-size: 0.95rem;
  color: var(--ocean-surface);
}

/* ===== PLATEFORMES À VENIR ===== */
.platforms-section {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 80px 0;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.platform-card {
  position: relative;
  background: #fff;
  border: 3px solid #1e293b;
  border-radius: 20px;
  box-shadow: var(--shadow-toon);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 8px 8px 0px 0px #1e293b;
}

.platform-card-switch { border-top: 6px solid #e4000f; }
.platform-card-ps5    { border-top: 6px solid #003791; }
.platform-card-xbox   { border-top: 6px solid #107c10; }

.platform-badge-soon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--duck);
  color: #1e293b;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 99px;
  border: 2px solid #1e293b;
  box-shadow: 2px 2px 0 #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(4px 6px 14px rgba(0,0,0,0.3));
}

.platform-cover-placeholder {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #1e293b;
}

.cover-placeholder-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px 20px;
  gap: 12px;
}

.ps5-cover {
  background: linear-gradient(160deg, #003791 0%, #00439c 60%, #0070cc 100%);
}

.xbox-cover {
  background: linear-gradient(160deg, #107c10 0%, #0e6b0e 60%, #1a9a1a 100%);
}

.cover-placeholder-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.cover-placeholder-logo {
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
}

.cover-placeholder-text {
  font-family: "Patrick Hand", sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.4;
}

.platform-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.platform-icon-switch { background: #e4000f; }
.platform-icon-ps5    { background: #003791; }
.platform-icon-xbox   { background: #107c10; }

.platform-name {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1e293b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-sticker {
    display: none;
  }

  .doodle-grid {
    grid-template-columns: 1fr;
  }

  .gameplay-block,
  .gameplay-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .biomes-grid {
    grid-template-columns: 1fr;
  }

  .biome-card {
    min-height: 400px;
  }

  .nav-links {
    display: none;
  }

  .team-members {
    gap: 32px;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
