/* ===== EVG Noé Comte - God Michet George ===== */
/* Palette: neon rose #FF006E, neon bleu #00D9FF, orange fluo #FFA500, jaune fluo #FFFF00, noir profond #0A0E27 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Black+Ops+One&display=swap');

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

:root {
  --neon-rose: #FF006E;
  --neon-blue: #00D9FF;
  --neon-orange: #FFA500;
  --neon-yellow: #FFFF00;
  --dark-bg: #0A0E27;
  --dark-surface: #0F1535;
  --dark-card: #131A3A;
  --text-white: #FFFFFF;
  --text-dim: #8892B0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--neon-rose); border-radius: 3px; }

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
}

/* ===== ANIMATIONS ===== */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px currentColor, 0 0 40px currentColor, 0 0 80px currentColor, 0 0 120px currentColor;
    transform: scale(1.02);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(2deg); }
  75% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-5px) rotate(-1deg); }
  20% { transform: translateX(5px) rotate(1deg); }
  30% { transform: translateX(-5px) rotate(0deg); }
  40% { transform: translateX(5px) rotate(1deg); }
  50% { transform: translateX(-3px); }
}

@keyframes rainbow-border {
  0% { border-color: var(--neon-rose); box-shadow: 0 0 20px var(--neon-rose); }
  25% { border-color: var(--neon-blue); box-shadow: 0 0 20px var(--neon-blue); }
  50% { border-color: var(--neon-orange); box-shadow: 0 0 20px var(--neon-orange); }
  75% { border-color: var(--neon-yellow); box-shadow: 0 0 20px var(--neon-yellow); }
  100% { border-color: var(--neon-rose); box-shadow: 0 0 20px var(--neon-rose); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes slide-in-left {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-right {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fade-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes neon-pulse-border {
  0%, 100% { box-shadow: 0 0 5px var(--neon-rose), 0 0 15px var(--neon-rose), inset 0 0 5px rgba(255,0,110,0.1); }
  50% { box-shadow: 0 0 15px var(--neon-rose), 0 0 40px var(--neon-rose), inset 0 0 15px rgba(255,0,110,0.2); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes chaos-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes counter-ping {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--neon-rose);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 20px rgba(255,0,110,0.4);
}

.nav-logo {
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.2rem;
  color: var(--neon-rose);
  text-shadow: 0 0 10px var(--neon-rose);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--neon-rose);
  text-shadow: 0 0 8px var(--neon-rose);
  background: rgba(255,0,110,0.1);
}

/* ===== MARQUEE TICKER ===== */
.ticker {
  background: var(--neon-rose);
  padding: 8px 0;
  overflow: hidden;
  margin-top: 60px;
  position: relative;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.ticker-inner span {
  font-size: 0.85rem;
  font-weight: 800;
  color: #000;
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,0,110,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(0,217,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 80%, rgba(255,165,0,0.1) 0%, transparent 60%),
              var(--dark-bg);
}

.hero-balloons {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 0.5;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-balloons-left {
  position: absolute;
  left: -40px;
  top: 30%;
  width: 160px;
  opacity: 0.4;
  animation: float 5s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-novelty {
  position: absolute;
  left: 5%;
  bottom: 10%;
  width: 100px;
  opacity: 0.3;
  animation: wiggle 3s ease-in-out infinite;
  pointer-events: none;
}

.evg-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-rose), var(--neon-blue));
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255,0,110,0.5);
}

.hero h1 {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero h1 .line1 { color: var(--neon-rose); }
.hero h1 .line2 { color: var(--neon-yellow); }
.hero h1 .line3 { color: var(--neon-blue); }

.hero-subtitle {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: blink 1.5s step-end infinite;
  margin-bottom: 30px;
  text-shadow: 0 0 15px var(--neon-orange), 0 0 30px rgba(255,165,0,0.5);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-rose), #cc0059);
  color: white;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--neon-rose);
  animation: neon-pulse-border 2s ease-in-out infinite;
  transition: transform 0.2s;
}

.btn-primary:hover { transform: scale(1.05); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--neon-blue);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 15px rgba(0,217,255,0.3);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(0,217,255,0.1);
  transform: scale(1.05);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 80px 20px;
  position: relative;
}

.section-title {
  text-align: center;
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 60px;
  position: relative;
}

.section-title.rose { color: var(--neon-rose); text-shadow: 0 0 20px rgba(255,0,110,0.6); }
.section-title.blue { color: var(--neon-blue); text-shadow: 0 0 20px rgba(0,217,255,0.6); }
.section-title.yellow { color: var(--neon-yellow); text-shadow: 0 0 20px rgba(255,255,0,0.6); }
.section-title.orange { color: var(--neon-orange); text-shadow: 0 0 20px rgba(255,165,0,0.6); }

.section-divider {
  display: block;
  width: 80px;
  height: 4px;
  margin: -50px auto 60px;
  background: linear-gradient(90deg, var(--neon-rose), var(--neon-blue));
  border-radius: 2px;
}

/* ===== MARIE SECTION ===== */
.marie-section {
  background: var(--dark-surface);
}

.marie-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.marie-portrait {
  position: relative;
}

.marie-portrait img {
  width: 100%;
  border-radius: 16px;
  border: 4px solid var(--neon-rose);
  animation: rainbow-border 4s linear infinite;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}

.marie-portrait::before {
  content: 'MARIE';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-rose);
  color: #000;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 4px;
  padding: 4px 16px;
  border-radius: 999px;
  z-index: 1;
}

.marie-info h2 {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--neon-rose);
  text-shadow: 0 0 15px rgba(255,0,110,0.5);
  margin-bottom: 8px;
}

.marie-subtitle {
  color: var(--neon-orange);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.marie-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.stat-item {
  background: var(--dark-card);
  border: 1px solid rgba(255,0,110,0.3);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: transform 0.2s;
}

.stat-item:hover {
  transform: scale(1.05);
  border-color: var(--neon-rose);
}

.stat-emoji { font-size: 1.8rem; display: block; margin-bottom: 4px; }
.stat-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.stat-value { font-size: 1rem; font-weight: 700; color: var(--text-white); }

.marie-quote {
  background: linear-gradient(135deg, rgba(255,0,110,0.1), rgba(0,217,255,0.1));
  border-left: 4px solid var(--neon-rose);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--neon-yellow);
  line-height: 1.6;
}

.marie-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 700;
}

/* ===== GOD MICHET SECTION ===== */
.god-michet-section {
  background: linear-gradient(135deg, #0A0E27 0%, #1a0525 50%, #0A0E27 100%);
  position: relative;
  overflow: hidden;
}

.god-michet-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,0,110,0.08) 0%, transparent 60%);
  animation: spin-slow 20s linear infinite;
}

.god-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.god-header {
  text-align: center;
  margin-bottom: 50px;
}

.god-crown {
  font-size: 4rem;
  display: block;
  animation: float 2s ease-in-out infinite;
  margin-bottom: 10px;
}

.god-subtitle {
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: 8px;
  font-style: italic;
}

.god-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.god-card {
  background: var(--dark-card);
  border: 2px solid var(--neon-rose);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  animation: neon-pulse-border 3s ease-in-out infinite;
  transition: transform 0.2s;
}

.god-card:nth-child(2) { animation-delay: 1s; border-color: var(--neon-blue); box-shadow: 0 0 20px rgba(0,217,255,0.3); }
.god-card:nth-child(3) { animation-delay: 2s; border-color: var(--neon-orange); box-shadow: 0 0 20px rgba(255,165,0,0.3); }

.god-card:hover { transform: translateY(-5px) scale(1.02); }

.god-card-icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.god-card h3 { font-family: 'Black Ops One', sans-serif; font-size: 1.1rem; color: var(--neon-rose); margin-bottom: 8px; }
.god-card:nth-child(2) h3 { color: var(--neon-blue); }
.god-card:nth-child(3) h3 { color: var(--neon-orange); }
.god-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

.god-assets {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.god-asset-img {
  width: 150px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(255,0,110,0.5));
}

.god-asset-img:nth-child(2) { animation-delay: 1s; width: 120px; }
.god-asset-img:nth-child(3) { animation-delay: 2s; width: 100px; }

.god-verdict {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255,0,110,0.15), rgba(0,217,255,0.15));
  border-radius: 20px;
  border: 2px dashed var(--neon-rose);
}

.god-verdict p {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-yellow);
  line-height: 1.5;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,255,0,0.4);
}

/* ===== GALERIE SECTION ===== */
.galerie-section {
  background: var(--dark-bg);
}

.galerie-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
}

.galerie-main {
  grid-row: 1 / 3;
  position: relative;
}

.galerie-main img {
  width: 100%;
  border-radius: 16px;
  border: 4px solid var(--neon-blue);
  box-shadow: 0 0 30px rgba(0,217,255,0.4);
  display: block;
  object-fit: cover;
  height: 100%;
  min-height: 300px;
}

.galerie-accent {
  border-radius: 12px;
  border: 3px solid var(--neon-orange);
  box-shadow: 0 0 20px rgba(255,165,0,0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galerie-accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 200px;
}

.galerie-label {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== PROGRAMME SECTION ===== */
.programme-section {
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

.programme-cheers {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 140px;
  opacity: 0.35;
  animation: float 4s ease-in-out infinite;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--neon-rose), var(--neon-blue), var(--neon-orange), var(--neon-yellow));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-item:nth-child(odd) .timeline-content { text-align: right; margin-right: 30px; margin-left: 0; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 30px; }

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 3px solid var(--neon-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255,0,110,0.5);
}

.timeline-item:nth-child(2) .timeline-dot { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(0,217,255,0.5); }
.timeline-item:nth-child(3) .timeline-dot { border-color: var(--neon-orange); box-shadow: 0 0 15px rgba(255,165,0,0.5); }
.timeline-item:nth-child(4) .timeline-dot { border-color: var(--neon-yellow); box-shadow: 0 0 15px rgba(255,255,0,0.5); }
.timeline-item:nth-child(5) .timeline-dot { border-color: var(--neon-rose); }

.timeline-content {
  flex: 1;
  background: var(--dark-card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255,0,110,0.2);
  transition: border-color 0.3s;
}

.timeline-content:hover { border-color: var(--neon-rose); box-shadow: 0 0 15px rgba(255,0,110,0.2); }

.timeline-time {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-rose);
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--neon-yellow);
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ===== COMPTEUR SECTION ===== */
.compteur-section {
  background: linear-gradient(135deg, var(--dark-bg), #0d0520, var(--dark-bg));
  background-size: 200% 200%;
  animation: chaos-bg 8s ease infinite;
  text-align: center;
}

.compteur-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.compteur-box {
  background: var(--dark-card);
  border-radius: 16px;
  padding: 24px 12px;
  border: 3px solid var(--neon-rose);
  animation: rainbow-border 3s linear infinite;
  animation-delay: calc(var(--delay) * 0.75s);
}

.compteur-box:nth-child(1) { --delay: 0; }
.compteur-box:nth-child(2) { --delay: 1; }
.compteur-box:nth-child(3) { --delay: 2; }
.compteur-box:nth-child(4) { --delay: 3; }

.compteur-number {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: var(--neon-yellow);
  text-shadow: 0 0 20px rgba(255,255,0,0.6);
  display: block;
  animation: counter-ping 1s ease-in-out infinite;
  line-height: 1;
}

.compteur-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-top: 6px;
  display: block;
}

.chaos-level {
  display: inline-block;
  margin: 0 auto 40px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--neon-rose), var(--neon-blue));
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.citations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.citation-card {
  background: var(--dark-card);
  border-radius: 16px;
  padding: 24px;
  border: 2px solid rgba(0,217,255,0.3);
  text-align: left;
  transition: transform 0.2s;
}

.citation-card:hover {
  transform: scale(1.03) rotate(-1deg);
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0,217,255,0.3);
}

.citation-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.citation-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 12px;
}
.citation-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-card);
  border-top: 3px solid var(--neon-rose);
  padding: 60px 20px 30px;
  text-align: center;
  box-shadow: 0 -10px 40px rgba(255,0,110,0.2);
}

.footer-cheers {
  width: 100px;
  margin: 0 auto 20px;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(0,217,255,0.5));
}

.footer-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: 2rem;
  color: var(--neon-rose);
  text-shadow: 0 0 15px rgba(255,0,110,0.5);
  margin-bottom: 10px;
}

.footer-subtitle {
  color: var(--neon-yellow);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 30px;
}

.footer-mvp {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-rose), var(--neon-orange));
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: pulse-glow 2s ease-in-out infinite;
}

.footer-potes {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(136,146,176,0.5);
  margin-top: 20px;
}

/* ===== NOVELTY FLOATERS ===== */
.novelty-floater {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

.novelty-floater-1 {
  bottom: 10%;
  right: 2%;
  width: 80px;
  animation: float 6s ease-in-out infinite;
}

.novelty-floater-2 {
  top: 40%;
  left: 1%;
  width: 60px;
  animation: float 8s ease-in-out infinite reverse;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .marie-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .marie-portrait img {
    max-width: 280px;
    margin: 0 auto;
  }

  .marie-portrait { text-align: center; }

  .timeline::before { left: 20px; }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    align-items: flex-start;
  }

  .timeline-dot { left: 20px; }

  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
  }

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

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

  .galerie-main { grid-row: auto; }

  .hero-balloons,
  .hero-balloons-left { display: none; }

  .god-assets { gap: 20px; }
  .god-asset-img { width: 100px; }
}

@media (max-width: 480px) {
  .compteur-grid { grid-template-columns: repeat(2, 1fr); }
  .marie-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== SCROLL REVEAL HELPERS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CHAOS STARS BG ===== */
.stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
