/* ========================================
   FranceInsightLab - Aqua Design System
   Water / Ocean / Calm Editorial Theme
   ======================================== */

/* Aqua Color Palette */
:root {
  --ocean-deep: #0a1628;
  --sea-dark: #0d2137;
  --water-navy: #122d4a;
  --teal-depth: #1a4a5e;
  --aqua-primary: #2d8fa5;
  --cyan-light: #5ec4d4;
  --seafoam: #7ed9c4;
  --wave-teal: #3aa89f;
  --pearl-white: #f0f7f9;
  --mist-blue: #c8dfe8;
  --kelp-green: #4a9e7d;
  --sand-gold: #d4a855;
  --text-bright: #eaf4f7;
  --text-dim: #9bbcc8;
  --glass-border: rgba(45, 143, 165, 0.35);
  --glow-aqua: rgba(94, 196, 212, 0.18);
  --glow-teal: rgba(58, 168, 159, 0.22);
  --glow-seafoam: rgba(126, 217, 196, 0.15);
}

/* Reset & Foundation */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--sea-dark);
  color: var(--text-bright);
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Animated Ocean Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(45, 143, 165, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(94, 196, 212, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(58, 168, 159, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--ocean-deep) 0%, var(--sea-dark) 50%, var(--water-navy) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Floating Bubbles Layer */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle 3px at 10% 20%, rgba(94, 196, 212, 0.25), transparent),
    radial-gradient(circle 2px at 25% 60%, rgba(126, 217, 196, 0.2), transparent),
    radial-gradient(circle 4px at 40% 35%, rgba(94, 196, 212, 0.15), transparent),
    radial-gradient(circle 2px at 55% 80%, rgba(58, 168, 159, 0.2), transparent),
    radial-gradient(circle 3px at 70% 25%, rgba(126, 217, 196, 0.18), transparent),
    radial-gradient(circle 2px at 85% 55%, rgba(94, 196, 212, 0.22), transparent),
    radial-gradient(circle 3px at 15% 85%, rgba(58, 168, 159, 0.15), transparent),
    radial-gradient(circle 2px at 90% 90%, rgba(126, 217, 196, 0.2), transparent);
  animation: bubbleFloat 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Gentle Bubble Rise Animation */
@keyframes bubbleRise {
  0%, 100% { opacity: 0.4; transform: translateY(0) scale(1); }
  50% { opacity: 0.7; transform: translateY(-8px) scale(1.1); }
}

@keyframes bubbleRise2 {
  0%, 100% { opacity: 0.5; transform: translateY(0) scale(1.05); }
  50% { opacity: 0.3; transform: translateY(-12px) scale(0.95); }
}

/* Water Droplet Float Animation */
@keyframes dropletFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-12px) translateX(5px); }
  50% { transform: translateY(-6px) translateX(-3px); }
  75% { transform: translateY(-15px) translateX(3px); }
}

@keyframes dropletFloat2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-10px) translateX(-6px); }
  66% { transform: translateY(-18px) translateX(8px); }
}

/* Gentle Wave Animation */
@keyframes gentleWave {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(5px) translateY(-3px); }
  50% { transform: translateX(0) translateY(-5px); }
  75% { transform: translateX(-5px) translateY(-3px); }
  100% { transform: translateX(0) translateY(0); }
}

/* Ripple Pulse Animation */
@keyframes ripplePulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.5; }
}

/* Slow Drift Animation */
@keyframes slowDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-20px); }
}

/* Water Glow Pulse Animation */
@keyframes waterPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.02); }
}

/* Aqua Glow Animation */
@keyframes aquaGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(94, 196, 212, 0.25); }
  50% { box-shadow: 0 0 30px rgba(94, 196, 212, 0.4); }
}

/* Calm Float Animation */
@keyframes calmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ========================================
   ANIMATED BUBBLES SYSTEM
   ======================================== */

/* Rising Bubbles Container */
.bubbles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Individual Bubble Styles */
.bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.4), 
    rgba(94, 196, 212, 0.2) 40%, 
    rgba(58, 168, 159, 0.1) 60%, 
    transparent 70%);
  border-radius: 50%;
  animation: riseBubble linear infinite;
  opacity: 0;
  box-shadow: 
    inset 0 -5px 15px rgba(255, 255, 255, 0.1),
    inset 5px 5px 15px rgba(255, 255, 255, 0.2),
    0 0 8px rgba(94, 196, 212, 0.3);
}

.bubble::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 25%;
  height: 25%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 50%;
}

/* Bubble Size Variations */
.bubble--xs { width: 8px; height: 8px; }
.bubble--sm { width: 14px; height: 14px; }
.bubble--md { width: 22px; height: 22px; }
.bubble--lg { width: 32px; height: 32px; }
.bubble--xl { width: 45px; height: 45px; }

/* Bubble Position Variations */
.bubble--1 { left: 5%; animation-duration: 18s; animation-delay: 0s; }
.bubble--2 { left: 12%; animation-duration: 22s; animation-delay: 2s; }
.bubble--3 { left: 20%; animation-duration: 16s; animation-delay: 4s; }
.bubble--4 { left: 28%; animation-duration: 25s; animation-delay: 1s; }
.bubble--5 { left: 35%; animation-duration: 19s; animation-delay: 3s; }
.bubble--6 { left: 42%; animation-duration: 21s; animation-delay: 5s; }
.bubble--7 { left: 50%; animation-duration: 17s; animation-delay: 2.5s; }
.bubble--8 { left: 58%; animation-duration: 24s; animation-delay: 0.5s; }
.bubble--9 { left: 65%; animation-duration: 20s; animation-delay: 4.5s; }
.bubble--10 { left: 72%; animation-duration: 23s; animation-delay: 1.5s; }
.bubble--11 { left: 80%; animation-duration: 18s; animation-delay: 3.5s; }
.bubble--12 { left: 88%; animation-duration: 26s; animation-delay: 2s; }
.bubble--13 { left: 95%; animation-duration: 15s; animation-delay: 0s; }
.bubble--14 { left: 8%; animation-duration: 28s; animation-delay: 6s; }
.bubble--15 { left: 45%; animation-duration: 20s; animation-delay: 7s; }

/* Rising Bubble Animation */
@keyframes riseBubble {
  0% {
    transform: translateY(0) translateX(0) scale(0.4);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
    transform: translateY(-10vh) translateX(5px) scale(0.8);
  }
  30% {
    transform: translateY(-30vh) translateX(-8px) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-50vh) translateX(10px) scale(1.05);
  }
  70% {
    transform: translateY(-70vh) translateX(-5px) scale(0.95);
  }
  90% {
    opacity: 0.3;
    transform: translateY(-90vh) translateX(8px) scale(0.85);
  }
  100% {
    transform: translateY(-110vh) translateX(0) scale(0.6);
    opacity: 0;
  }
}

/* Wobble variation for some bubbles */
.bubble--wobble {
  animation-name: riseBubbleWobble;
}

@keyframes riseBubbleWobble {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
    transform: translateY(-10vh) translateX(15px) rotate(10deg) scale(0.9);
  }
  25% {
    transform: translateY(-25vh) translateX(-20px) rotate(-8deg) scale(1);
  }
  40% {
    opacity: 0.6;
    transform: translateY(-40vh) translateX(25px) rotate(12deg) scale(1.1);
  }
  55% {
    transform: translateY(-55vh) translateX(-15px) rotate(-6deg) scale(1);
  }
  70% {
    opacity: 0.4;
    transform: translateY(-70vh) translateX(20px) rotate(8deg) scale(0.9);
  }
  85% {
    transform: translateY(-85vh) translateX(-10px) rotate(-4deg) scale(0.8);
  }
  100% {
    transform: translateY(-110vh) translateX(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
}

/* Glowing bubble variation */
.bubble--glow {
  box-shadow: 
    inset 0 -5px 15px rgba(255, 255, 255, 0.15),
    inset 5px 5px 15px rgba(255, 255, 255, 0.25),
    0 0 20px rgba(94, 196, 212, 0.5),
    0 0 40px rgba(126, 217, 196, 0.3);
  animation-name: riseBubbleGlow;
}

@keyframes riseBubbleGlow {
  0% {
    transform: translateY(0) scale(0.3);
    opacity: 0;
    box-shadow: 
      inset 0 -5px 15px rgba(255, 255, 255, 0.1),
      0 0 10px rgba(94, 196, 212, 0.3);
  }
  20% {
    opacity: 0.7;
    transform: translateY(-20vh) translateX(8px) scale(1);
    box-shadow: 
      inset 0 -5px 15px rgba(255, 255, 255, 0.2),
      0 0 25px rgba(94, 196, 212, 0.6),
      0 0 50px rgba(126, 217, 196, 0.4);
  }
  50% {
    transform: translateY(-50vh) translateX(-12px) scale(1.1);
    box-shadow: 
      inset 0 -5px 15px rgba(255, 255, 255, 0.25),
      0 0 35px rgba(94, 196, 212, 0.7),
      0 0 70px rgba(126, 217, 196, 0.5);
  }
  80% {
    opacity: 0.4;
    transform: translateY(-80vh) translateX(6px) scale(0.9);
    box-shadow: 
      inset 0 -5px 15px rgba(255, 255, 255, 0.15),
      0 0 20px rgba(94, 196, 212, 0.4);
  }
  100% {
    transform: translateY(-110vh) scale(0.5);
    opacity: 0;
    box-shadow: 
      inset 0 -5px 15px rgba(255, 255, 255, 0.05),
      0 0 5px rgba(94, 196, 212, 0.2);
  }
}

/* Cluster of tiny bubbles */
.bubble-cluster {
  position: absolute;
  bottom: -50px;
  width: 60px;
  height: 60px;
  animation: riseCluster 30s linear infinite;
  opacity: 0;
}

.bubble-cluster::before,
.bubble-cluster::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.5), 
    rgba(94, 196, 212, 0.3) 50%, 
    transparent 70%);
}

.bubble-cluster::before {
  width: 12px;
  height: 12px;
  top: 0;
  left: 20px;
  animation: clusterWobble 3s ease-in-out infinite;
}

.bubble-cluster::after {
  width: 8px;
  height: 8px;
  top: 15px;
  left: 35px;
  animation: clusterWobble 2.5s ease-in-out infinite 0.5s;
}

.bubble-cluster--1 { left: 15%; animation-delay: 0s; }
.bubble-cluster--2 { left: 40%; animation-delay: 8s; }
.bubble-cluster--3 { left: 65%; animation-delay: 16s; }
.bubble-cluster--4 { left: 85%; animation-delay: 24s; }

@keyframes riseCluster {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  95% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-120vh);
    opacity: 0;
  }
}

@keyframes clusterWobble {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(3px, -2px); }
  50% { transform: translate(-2px, 3px); }
  75% { transform: translate(2px, 1px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 700;
  color: var(--pearl-white);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

a {
  color: var(--cyan-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--seafoam);
  text-shadow: 0 0 8px rgba(94, 196, 212, 0.4);
}

/* Layout Container */
.galactic-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Accent Utilities */
.neon-text {
  background: linear-gradient(135deg, var(--cyan-light), var(--wave-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aqua-text {
  background: linear-gradient(135deg, var(--seafoam), var(--aqua-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Navigation - Aqua Header
   ======================================== */
.stellar-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.96) 0%, rgba(13, 33, 55, 0.94) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 25px rgba(45, 143, 165, 0.12);
}

.stellar-header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.875rem 0;
}

.cosmos-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* Logo Wave Animation */
@keyframes logoWave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.cosmos-brand-symbol {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--aqua-primary), var(--cyan-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(45, 143, 165, 0.35);
  animation: aquaGlow 4s ease-in-out infinite, logoWave 6s ease-in-out infinite;
}

.cosmos-brand-symbol svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.cosmos-brand-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pearl-white);
  letter-spacing: 0.02em;
}

.stellar-nav {
  display: none;
  justify-content: center;
  gap: 0.2rem;
}

.stellar-nav-link {
  padding: 0.5rem 0.85rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}

.stellar-nav-link:hover,
.stellar-nav-link:focus {
  color: var(--cyan-light);
  background: var(--glow-aqua);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.age-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sand-gold);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--sand-gold);
  border-radius: 6px;
  display: none;
  text-shadow: 0 0 6px rgba(212, 168, 85, 0.3);
}

.nav-toggle {
  background: linear-gradient(135deg, var(--aqua-primary), var(--wave-teal));
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(45, 143, 165, 0.3);
}

.nav-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(45, 143, 165, 0.45);
}

.mobile-stellar-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  border-top: 1px solid var(--glass-border);
}

.mobile-stellar-nav.expanded {
  display: flex;
}

.mobile-stellar-nav .stellar-nav-link {
  padding: 0.75rem 0;
  border-radius: 0;
}

/* ========================================
   Hero - Aqua Gateway Section
   ======================================== */
.cosmic-gateway {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.cosmic-gateway::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(45, 143, 165, 0.12) 0%, transparent 70%);
  animation: waterPulse 10s ease-in-out infinite;
  pointer-events: none;
}

.gateway-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.gateway-headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 0.7rem;
  line-height: 1.15;
}

.gateway-headline-glow {
  display: block;
  background: linear-gradient(100deg, var(--cyan-light), var(--aqua-primary), var(--seafoam));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.gateway-intro {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 1.8rem;
  line-height: 1.85;
}

.gateway-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.cosmic-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cosmic-btn-primary {
  background: linear-gradient(135deg, var(--aqua-primary), var(--wave-teal));
  color: white;
  box-shadow: 0 0 20px rgba(45, 143, 165, 0.35);
}

.cosmic-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(45, 143, 165, 0.5);
  color: white;
}

/* Button Wave Animation */
@keyframes btnWave {
  0%, 100% { box-shadow: 0 0 20px rgba(45, 143, 165, 0.35); }
  50% { box-shadow: 0 0 32px rgba(45, 143, 165, 0.5), 0 0 50px rgba(94, 196, 212, 0.2); }
}

.cosmic-btn-primary {
  animation: btnWave 4s ease-in-out infinite;
}

.gateway-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.gateway-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
}

.gateway-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cyan-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-light);
}

.floating-age-marker {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.1rem;
  background: rgba(212, 168, 85, 0.08);
  border: 1px solid var(--sand-gold);
  border-radius: 10px;
  animation: calmFloat 6s ease-in-out infinite;
}

.floating-age-value {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--sand-gold);
  text-shadow: 0 0 10px rgba(212, 168, 85, 0.35);
}

.floating-age-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Animated Water Decorative Elements */
.cosmic-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan-light);
  box-shadow: 0 0 8px var(--cyan-light), 0 0 16px rgba(94, 196, 212, 0.3);
}

.particle-1 {
  width: 4px;
  height: 4px;
  top: 15%;
  left: 10%;
  animation: bubbleRise 4s ease-in-out infinite;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 25%;
  right: 15%;
  background: var(--seafoam);
  box-shadow: 0 0 8px var(--seafoam), 0 0 16px rgba(126, 217, 196, 0.3);
  animation: bubbleRise2 5s ease-in-out infinite 0.5s;
}

.particle-3 {
  width: 3px;
  height: 3px;
  top: 60%;
  left: 20%;
  background: var(--aqua-primary);
  box-shadow: 0 0 6px var(--aqua-primary), 0 0 12px rgba(45, 143, 165, 0.3);
  animation: bubbleRise 3.5s ease-in-out infinite 1s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 40%;
  right: 25%;
  animation: bubbleRise2 4.5s ease-in-out infinite 0.3s;
}

.particle-5 {
  width: 4px;
  height: 4px;
  top: 75%;
  right: 10%;
  background: var(--wave-teal);
  box-shadow: 0 0 8px var(--wave-teal), 0 0 16px rgba(58, 168, 159, 0.3);
  animation: bubbleRise 5s ease-in-out infinite 1.5s;
}

.particle-6 {
  width: 3px;
  height: 3px;
  top: 85%;
  left: 30%;
  background: var(--seafoam);
  box-shadow: 0 0 6px var(--seafoam), 0 0 12px rgba(126, 217, 196, 0.3);
  animation: bubbleRise2 4s ease-in-out infinite 0.8s;
}

/* Floating Water Droplets */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  right: 5%;
  background: radial-gradient(circle at 30% 30%, rgba(94, 196, 212, 0.12), transparent 70%);
  border: 1px solid rgba(94, 196, 212, 0.1);
  animation: dropletFloat 10s ease-in-out infinite;
}

.orb-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 3%;
  background: radial-gradient(circle at 30% 30%, rgba(45, 143, 165, 0.1), transparent 70%);
  border: 1px solid rgba(45, 143, 165, 0.08);
  animation: dropletFloat2 14s ease-in-out infinite;
}

.orb-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(126, 217, 196, 0.1), transparent 70%);
  border: 1px solid rgba(126, 217, 196, 0.08);
  animation: dropletFloat 12s ease-in-out infinite 2s;
}

/* Gentle Water Streams */
.shooting-star {
  position: absolute;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(94, 196, 212, 0.4), transparent);
  border-radius: 2px;
  opacity: 0.6;
  pointer-events: none;
}

.shooting-star-1 {
  top: 20%;
  right: 10%;
  animation: gentleWave 8s ease-in-out infinite;
}

.shooting-star-2 {
  top: 40%;
  right: 30%;
  width: 60px;
  background: linear-gradient(90deg, rgba(126, 217, 196, 0.35), transparent);
  animation: gentleWave 10s ease-in-out infinite 2s;
}

.shooting-star-3 {
  top: 60%;
  right: 20%;
  width: 50px;
  background: linear-gradient(90deg, rgba(58, 168, 159, 0.35), transparent);
  animation: gentleWave 12s ease-in-out infinite 4s;
}

/* Water Ripple Rings */
.cosmic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(94, 196, 212, 0.15);
  pointer-events: none;
}

.ring-1 {
  width: 200px;
  height: 200px;
  top: 5%;
  left: -50px;
  animation: ripplePulse 8s ease-in-out infinite;
}

.ring-2 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  right: -30px;
  border-color: rgba(126, 217, 196, 0.12);
  animation: ripplePulse 10s ease-in-out infinite 3s;
}

/* Water Glow Spots */
.glow-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.glow-spot-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
  background: rgba(45, 143, 165, 0.12);
  animation: ripplePulse 8s ease-in-out infinite;
}

.glow-spot-2 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  right: 15%;
  background: rgba(94, 196, 212, 0.1);
  animation: ripplePulse 10s ease-in-out infinite 2s;
}

/* ========================================
   Platform Cards - Analysis Cards
   ======================================== */
.orbital-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 45, 74, 0.25) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.section-subtitle {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
}

.compliance-notice {
  background: rgba(94, 196, 212, 0.06);
  border: 1px solid rgba(94, 196, 212, 0.2);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.compliance-notice strong {
  color: var(--cyan-light);
}

.orbital-grid {
  display: grid;
  gap: 1.5rem;
}

.orbital-card {
  background: linear-gradient(155deg, rgba(18, 45, 74, 0.55), rgba(13, 33, 55, 0.75));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.orbital-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-light), var(--aqua-primary), var(--seafoam));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.orbital-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 196, 212, 0.35);
  box-shadow: 0 18px 45px rgba(45, 143, 165, 0.18), 0 0 25px rgba(94, 196, 212, 0.1);
}

.orbital-card:hover::before {
  opacity: 1;
}

/* Card Water Shimmer Animation */
@keyframes cardWaterShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.orbital-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(94, 196, 212, 0.03) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: cardWaterShimmer 10s linear infinite;
  pointer-events: none;
  border-radius: 16px;
}

.orbital-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.orbital-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.orbital-card-icon {
  width: 100px;
  height: 44px;
  background: linear-gradient(135deg, rgba(45, 143, 165, 0.2), rgba(94, 196, 212, 0.12));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Rating Glow Animation */
@keyframes ratingGlow {
  0%, 100% { text-shadow: 0 0 6px rgba(212, 168, 85, 0.35); }
  50% { text-shadow: 0 0 12px rgba(212, 168, 85, 0.6), 0 0 20px rgba(212, 168, 85, 0.3); }
}

.orbital-stars {
  display: flex;
  gap: 2px;
  color: var(--sand-gold);
  text-shadow: 0 0 6px rgba(212, 168, 85, 0.35);
  animation: ratingGlow 3s ease-in-out infinite;
}

.orbital-score {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pearl-white);
}

.orbital-card-body {
  flex: 1;
}

.orbital-card-name {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--pearl-white);
}

.orbital-card-desc {
  list-style: none;
}

.orbital-card-desc li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.orbital-card-desc li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--cyan-light);
  margin-top: 3px;
}

.orbital-card-action {
  display: flex;
  justify-content: center;
}

.orbital-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--aqua-primary), var(--wave-teal));
  color: white;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.orbital-link:hover {
  background: linear-gradient(135deg, var(--cyan-light), var(--aqua-primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(94, 196, 212, 0.28);
  color: white;
}

/* ========================================
   Info Sections - Water Blocks
   ======================================== */
.nebula-section {
  padding: 4rem 0;
  position: relative;
}

.nebula-section.tinted {
  background: linear-gradient(180deg, rgba(45, 143, 165, 0.06) 0%, rgba(94, 196, 212, 0.04) 100%);
}

.nebula-content {
  max-width: 880px;
  margin: 0 auto;
}

.nebula-content.centered {
  text-align: center;
}

.data-cards {
  display: grid;
  gap: 1rem;
  list-style: none;
}

.data-cards li {
  padding: 1.1rem 1.3rem;
  background: rgba(18, 45, 74, 0.45);
  border-left: 3px solid var(--cyan-light);
  border-radius: 0 10px 10px 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.mission-text {
  margin-top: 1.3rem;
}

.mission-text p {
  margin-bottom: 1rem;
  color: var(--text-dim);
  line-height: 1.85;
}

/* ========================================
   Responsible Gaming - Prevention Zone
   ======================================== */
.guardian-zone {
  padding: 4rem 0;
  background: 
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(212, 168, 85, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(18, 45, 74, 0.35) 0%, rgba(13, 33, 55, 0.5) 100%);
}

.guardian-container {
  max-width: 980px;
  margin: 0 auto;
}

.guardian-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Prevention Symbol Pulse */
@keyframes preventionPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(212, 168, 85, 0.2);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 35px rgba(212, 168, 85, 0.35), 0 0 50px rgba(212, 168, 85, 0.15);
    transform: scale(1.04);
  }
}

.guardian-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(212, 168, 85, 0.1);
  border: 2px solid var(--sand-gold);
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(212, 168, 85, 0.2);
  animation: preventionPulse 4s ease-in-out infinite;
}

.guardian-symbol span {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--sand-gold);
  text-shadow: 0 0 8px rgba(212, 168, 85, 0.35);
}

.guardian-title {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.guardian-desc {
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto;
}

.guardian-body {
  display: grid;
  gap: 2rem;
}

.guardian-rules {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.guardian-rules li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.1rem;
  background: rgba(18, 45, 74, 0.45);
  border-radius: 10px;
  color: var(--text-dim);
  font-weight: 500;
}

.guardian-rules li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--sand-gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--sand-gold);
}

.guardian-links {
  text-align: center;
}

.guardian-links p {
  margin-bottom: 0.7rem;
  color: var(--text-dim);
}

.official-portal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--sand-gold);
  border-radius: 10px;
  color: var(--sand-gold);
  font-weight: 600;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.official-portal:hover {
  background: rgba(212, 168, 85, 0.1);
  box-shadow: 0 0 18px rgba(212, 168, 85, 0.2);
  color: var(--sand-gold);
}

.guardian-disclaimer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ========================================
   Teaser Block - Info Strip
   ======================================== */
.signal-strip {
  padding: 2.5rem 0;
  background: rgba(45, 143, 165, 0.08);
}

.signal-content {
  max-width: 880px;
}

.signal-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--pearl-white);
}

.signal-content p {
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

/* ========================================
   Footer - Deep Footer
   ======================================== */
.void-footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, rgba(13, 33, 55, 0.75) 0%, var(--ocean-deep) 100%);
  border-top: 1px solid var(--glass-border);
}

.footer-layout {
  display: grid;
  gap: 2.5rem;
}

.footer-identity h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--pearl-white);
}

.footer-identity p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.footer-age-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-age-indicator .age-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--sand-gold);
  border-radius: 5px;
  color: var(--sand-gold);
}

.footer-age-indicator span:last-child {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.footer-nav-col h3 {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: var(--pearl-white);
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 0.45rem;
}

.footer-nav-list a {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-nav-list a:hover {
  color: var(--cyan-light);
}

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.9;
}

/* ========================================
   Cookie Consent - Privacy Banner
   ======================================== */
.quantum-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.98), rgba(13, 33, 55, 0.99));
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 35px rgba(45, 143, 165, 0.15);
  backdrop-filter: blur(12px);
}

.quantum-consent.hidden {
  display: none;
}

.consent-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.consent-message {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
}

.consent-message a {
  color: var(--cyan-light);
  text-decoration: underline;
}

.consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.consent-button {
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-bright);
}

.consent-button:hover {
  background: var(--glow-teal);
  border-color: var(--aqua-primary);
}

.consent-button.accept-all {
  background: linear-gradient(135deg, var(--aqua-primary), var(--wave-teal));
  border-color: transparent;
  color: white;
}

.consent-button.accept-all:hover {
  box-shadow: 0 0 18px rgba(45, 143, 165, 0.35);
}

.consent-button.customize {
  background: transparent;
  border: none;
  color: var(--cyan-light);
  padding: 0.55rem 0.5rem;
}

.consent-options {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(18, 45, 74, 0.35);
  border-radius: 10px;
  margin-top: 0.5rem;
}

.consent-options.visible {
  display: block;
}

.consent-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}

.consent-option-row:not(:last-child) {
  border-bottom: 1px solid var(--glass-border);
}

.consent-option-info strong {
  display: block;
  color: var(--pearl-white);
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.consent-option-info span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.quantum-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  background: rgba(45, 143, 165, 0.35);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.quantum-toggle[data-state="on"] {
  background: var(--cyan-light);
}

.quantum-toggle .toggle-indicator {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: left 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.quantum-toggle[data-state="on"] .toggle-indicator {
  left: 23px;
}

.quantum-toggle[data-disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   Page-Specific Styles
   ======================================== */
.page-hero {
  padding: 3rem 0;
  background: radial-gradient(ellipse 50% 35% at 50% 0%, rgba(45, 143, 165, 0.1) 0%, transparent 60%);
}

.page-main {
  padding: 3rem 0;
}

.page-container {
  max-width: 880px;
  margin: 0 auto;
}

.article-content {
  color: var(--text-dim);
  line-height: 1.9;
}

.article-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--pearl-white);
}

.article-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--pearl-white);
}

.article-content p {
  margin-bottom: 1rem;
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content a {
  color: var(--cyan-light);
  text-decoration: underline;
}

/* Analysis Page Specific */
.analysis-hero {
  padding: 3rem 0;
  background: radial-gradient(ellipse 55% 40% at 50% 0%, rgba(94, 196, 212, 0.08) 0%, transparent 60%);
}

.analysis-main {
  padding: 3rem 0;
}

.analysis-container {
  max-width: 880px;
  margin: 0 auto;
}

.analysis-heading {
  font-size: 1.3rem;
  margin: 2.2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.analysis-cta-block {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  background: linear-gradient(135deg, var(--aqua-primary), var(--wave-teal));
  color: white;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.portal-btn:hover {
  background: linear-gradient(135deg, var(--cyan-light), var(--aqua-primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(94, 196, 212, 0.28);
  color: white;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (min-width: 768px) {
  .stellar-nav {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .age-badge {
    display: block;
  }
  
  .consent-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .orbital-card-inner {
    flex-direction: row;
    align-items: center;
  }
  
  .orbital-card-top {
    width: 22%;
    flex-shrink: 0;
  }
  
  .orbital-card-body {
    padding: 0 1.3rem;
    width: 53%;
  }
  
  .orbital-card-action {
    width: 25%;
    flex-shrink: 0;
  }
  
  .orbital-link {
    width: auto;
  }
  
  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
  
  .guardian-body {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .gateway-headline {
    font-size: 3.4rem;
  }
  
  .orbital-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .orbital-grid .orbital-card:first-child {
    grid-column: 1 / -1;
    max-width: 700px;
    justify-self: center;
  }
}
