/* ========================================
   DataViewFrance - Cosmic Design System
   Galaxy / Neon Astral / Futuristic Theme
   ======================================== */

/* Cosmic Color Palette */
:root {
  --void-black: #0a0a12;
  --deep-space: #0d0d1a;
  --nebula-dark: #12122a;
  --stellar-blue: #1a1a3e;
  --cosmic-violet: #6b5ce7;
  --neon-cyan: #00f5ff;
  --astral-pink: #ff6ec7;
  --plasma-purple: #9d4edd;
  --starlight: #e8e8ff;
  --moonbeam: #c8c8e8;
  --aurora-green: #39ff14;
  --solar-gold: #ffd700;
  --text-bright: #f0f0ff;
  --text-dim: #a8a8c8;
  --glass-border: rgba(107, 92, 231, 0.3);
  --glow-cyan: rgba(0, 245, 255, 0.15);
  --glow-violet: rgba(107, 92, 231, 0.2);
  --glow-pink: rgba(255, 110, 199, 0.15);
}

/* Reset & Foundation */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--deep-space);
  color: var(--text-bright);
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Animated Starfield Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(107, 92, 231, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 245, 255, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(157, 78, 221, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--void-black) 0%, var(--deep-space) 50%, var(--nebula-dark) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Floating Stars Layer */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: 
    radial-gradient(2px 2px at 100px 50px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 200px 150px, rgba(0, 245, 255, 0.6), transparent),
    radial-gradient(2px 2px at 300px 100px, rgba(255, 110, 199, 0.5), transparent),
    radial-gradient(1px 1px at 400px 200px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(2px 2px at 150px 300px, rgba(107, 92, 231, 0.6), transparent),
    radial-gradient(1px 1px at 500px 80px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 50px 400px, rgba(0, 245, 255, 0.4), transparent),
    radial-gradient(1px 1px at 350px 350px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 250px 450px, rgba(157, 78, 221, 0.5), transparent),
    radial-gradient(1px 1px at 450px 400px, rgba(255, 255, 255, 0.4), transparent);
  background-size: 550px 500px;
  animation: starDrift 120s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

@keyframes starDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(-275px, -250px); }
}

/* Twinkling Stars Animation */
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes twinkle2 {
  0%, 100% { opacity: 0.5; transform: scale(1.1); }
  50% { opacity: 0.2; transform: scale(0.9); }
}

/* Floating Orbs Animation */
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-5px); }
  75% { transform: translateY(-25px) translateX(5px); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  33% { transform: translateY(-15px) translateX(-10px) rotate(120deg); }
  66% { transform: translateY(-30px) translateX(15px) rotate(240deg); }
}

/* Shooting Star Animation */
@keyframes shootingStar {
  0% { transform: translateX(0) translateY(0); opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateX(-300px) translateY(300px); opacity: 0; }
}

/* Pulse Ring Animation */
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.6; }
}

/* Rotate Animation */
@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Nebula Pulse Animation */
@keyframes nebulaPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.2); }
  50% { box-shadow: 0 0 35px rgba(0, 245, 255, 0.35); }
}

/* Float Animation */
@keyframes cosmicFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--starlight);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--astral-pink);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* 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(--neon-cyan), var(--cosmic-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plasma-text {
  background: linear-gradient(135deg, var(--astral-pink), var(--plasma-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Navigation - Stellar Header
   ======================================== */
.stellar-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 10, 18, 0.95) 0%, rgba(13, 13, 26, 0.92) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(107, 92, 231, 0.15);
}

.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 Rotation Animation */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}

.cosmos-brand-symbol {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--cosmic-violet), var(--neon-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(107, 92, 231, 0.4);
  animation: glowPulse 4s ease-in-out infinite, logoFloat 6s ease-in-out infinite;
}

.cosmos-brand-symbol svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.cosmos-brand-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--starlight);
  letter-spacing: 0.04em;
}

.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(--neon-cyan);
  background: var(--glow-cyan);
}

.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(--solar-gold);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--solar-gold);
  border-radius: 6px;
  display: none;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.nav-toggle {
  background: linear-gradient(135deg, var(--cosmic-violet), var(--plasma-purple));
  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 15px rgba(107, 92, 231, 0.3);
}

.nav-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(107, 92, 231, 0.5);
}

.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 - Cosmic 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(107, 92, 231, 0.15) 0%, transparent 70%);
  animation: nebulaPulse 8s 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(--neon-cyan), var(--cosmic-violet), var(--astral-pink));
  -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(--cosmic-violet), var(--plasma-purple));
  color: white;
  box-shadow: 0 0 25px rgba(107, 92, 231, 0.4);
}

.cosmic-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(107, 92, 231, 0.6);
  color: white;
}

/* Button Pulse Animation */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(107, 92, 231, 0.4); }
  50% { box-shadow: 0 0 40px rgba(107, 92, 231, 0.6), 0 0 60px rgba(0, 245, 255, 0.2); }
}

.cosmic-btn-primary {
  animation: btnPulse 3s 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(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.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(255, 215, 0, 0.08);
  border: 1px solid var(--solar-gold);
  border-radius: 10px;
  animation: cosmicFloat 6s ease-in-out infinite;
}

.floating-age-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--solar-gold);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.floating-age-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Animated 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(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.particle-1 {
  width: 4px;
  height: 4px;
  top: 15%;
  left: 10%;
  animation: twinkle 3s ease-in-out infinite;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 25%;
  right: 15%;
  background: var(--astral-pink);
  box-shadow: 0 0 10px var(--astral-pink), 0 0 20px var(--astral-pink);
  animation: twinkle2 4s ease-in-out infinite 0.5s;
}

.particle-3 {
  width: 3px;
  height: 3px;
  top: 60%;
  left: 20%;
  background: var(--cosmic-violet);
  box-shadow: 0 0 8px var(--cosmic-violet), 0 0 16px var(--cosmic-violet);
  animation: twinkle 2.5s ease-in-out infinite 1s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 40%;
  right: 25%;
  animation: twinkle2 3.5s ease-in-out infinite 0.3s;
}

.particle-5 {
  width: 4px;
  height: 4px;
  top: 75%;
  right: 10%;
  background: var(--plasma-purple);
  box-shadow: 0 0 10px var(--plasma-purple), 0 0 20px var(--plasma-purple);
  animation: twinkle 4s ease-in-out infinite 1.5s;
}

.particle-6 {
  width: 3px;
  height: 3px;
  top: 85%;
  left: 30%;
  background: var(--solar-gold);
  box-shadow: 0 0 8px var(--solar-gold), 0 0 16px var(--solar-gold);
  animation: twinkle2 3s ease-in-out infinite 0.8s;
}

/* Floating Orbs */
.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(0, 245, 255, 0.15), transparent 70%);
  border: 1px solid rgba(0, 245, 255, 0.1);
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 3%;
  background: radial-gradient(circle at 30% 30%, rgba(107, 92, 231, 0.12), transparent 70%);
  border: 1px solid rgba(107, 92, 231, 0.08);
  animation: floatOrb2 12s ease-in-out infinite;
}

.orb-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 110, 199, 0.1), transparent 70%);
  border: 1px solid rgba(255, 110, 199, 0.08);
  animation: floatOrb 10s ease-in-out infinite 2s;
}

/* Shooting Stars */
.shooting-star {
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), transparent);
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
}

.shooting-star-1 {
  top: 20%;
  right: 10%;
  animation: shootingStar 4s linear infinite 2s;
}

.shooting-star-2 {
  top: 40%;
  right: 30%;
  width: 80px;
  background: linear-gradient(90deg, var(--astral-pink), transparent);
  animation: shootingStar 5s linear infinite 5s;
}

.shooting-star-3 {
  top: 60%;
  right: 20%;
  width: 60px;
  background: linear-gradient(90deg, var(--cosmic-violet), transparent);
  animation: shootingStar 6s linear infinite 8s;
}

/* Rotating Ring */
.cosmic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(107, 92, 231, 0.2);
  pointer-events: none;
}

.ring-1 {
  width: 200px;
  height: 200px;
  top: 5%;
  left: -50px;
  animation: slowRotate 60s linear infinite;
}

.ring-2 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  right: -30px;
  border-color: rgba(0, 245, 255, 0.15);
  animation: slowRotate 45s linear infinite reverse;
}

/* Pulsing 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(107, 92, 231, 0.15);
  animation: pulseRing 6s ease-in-out infinite;
}

.glow-spot-2 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  right: 15%;
  background: rgba(0, 245, 255, 0.1);
  animation: pulseRing 8s ease-in-out infinite 2s;
}

/* ========================================
   Platform Cards - Orbital Cards
   ======================================== */
.orbital-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 62, 0.3) 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(0, 245, 255, 0.05);
  border: 1px solid rgba(0, 245, 255, 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(--neon-cyan);
}

.orbital-grid {
  display: grid;
  gap: 1.5rem;
}

.orbital-card {
  background: linear-gradient(155deg, rgba(26, 26, 62, 0.6), rgba(18, 18, 42, 0.8));
  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(--neon-cyan), var(--cosmic-violet), var(--astral-pink));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.orbital-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow: 0 20px 50px rgba(107, 92, 231, 0.2), 0 0 30px rgba(0, 245, 255, 0.1);
}

.orbital-card:hover::before {
  opacity: 1;
}

/* Card Shimmer Animation */
@keyframes cardShimmer {
  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(0, 245, 255, 0.03) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: cardShimmer 8s 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(107, 92, 231, 0.2), rgba(0, 245, 255, 0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Star Twinkle Animation */
@keyframes starTwinkle {
  0%, 100% { text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
  50% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.4); }
}

.orbital-stars {
  display: flex;
  gap: 2px;
  color: var(--solar-gold);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  animation: starTwinkle 2s ease-in-out infinite;
}

.orbital-score {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--starlight);
}

.orbital-card-body {
  flex: 1;
}

.orbital-card-name {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--starlight);
}

.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(--neon-cyan);
  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(--cosmic-violet), var(--plasma-purple));
  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(--neon-cyan), var(--cosmic-violet));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
  color: white;
}

/* ========================================
   Info Sections - Nebula Blocks
   ======================================== */
.nebula-section {
  padding: 4rem 0;
  position: relative;
}

.nebula-section.tinted {
  background: linear-gradient(180deg, rgba(107, 92, 231, 0.05) 0%, rgba(0, 245, 255, 0.03) 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(26, 26, 62, 0.5);
  border-left: 3px solid var(--neon-cyan);
  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 - Guardian Zone
   ======================================== */
.guardian-zone {
  padding: 4rem 0;
  background: 
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(26, 26, 62, 0.4) 0%, rgba(18, 18, 42, 0.6) 100%);
}

.guardian-container {
  max-width: 980px;
  margin: 0 auto;
}

.guardian-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Guardian Symbol Pulse */
@keyframes guardianPulse {
  0%, 100% { 
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
  }
}

.guardian-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--solar-gold);
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  animation: guardianPulse 3s ease-in-out infinite;
}

.guardian-symbol span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--solar-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.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(26, 26, 62, 0.5);
  border-radius: 10px;
  color: var(--text-dim);
  font-weight: 500;
}

.guardian-rules li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--solar-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--solar-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(--solar-gold);
  border-radius: 10px;
  color: var(--solar-gold);
  font-weight: 600;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.official-portal:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  color: var(--solar-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 - Signal Strip
   ======================================== */
.signal-strip {
  padding: 2.5rem 0;
  background: rgba(107, 92, 231, 0.08);
}

.signal-content {
  max-width: 880px;
}

.signal-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--starlight);
}

.signal-content p {
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

/* ========================================
   Footer - Void Footer
   ======================================== */
.void-footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, rgba(18, 18, 42, 0.8) 0%, var(--void-black) 100%);
  border-top: 1px solid var(--glass-border);
}

.footer-layout {
  display: grid;
  gap: 2.5rem;
}

.footer-identity h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--starlight);
}

.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: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--solar-gold);
  border-radius: 5px;
  color: var(--solar-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(--starlight);
}

.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(--neon-cyan);
}

.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 - Quantum Banner
   ======================================== */
.quantum-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(10, 10, 18, 0.98), rgba(13, 13, 26, 0.99));
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -10px 40px rgba(107, 92, 231, 0.2);
  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(--neon-cyan);
  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-violet);
  border-color: var(--cosmic-violet);
}

.consent-button.accept-all {
  background: linear-gradient(135deg, var(--cosmic-violet), var(--plasma-purple));
  border-color: transparent;
  color: white;
}

.consent-button.accept-all:hover {
  box-shadow: 0 0 20px rgba(107, 92, 231, 0.4);
}

.consent-button.customize {
  background: transparent;
  border: none;
  color: var(--neon-cyan);
  padding: 0.55rem 0.5rem;
}

.consent-options {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(26, 26, 62, 0.3);
  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(--starlight);
  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(107, 92, 231, 0.3);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.quantum-toggle[data-state="on"] {
  background: var(--neon-cyan);
}

.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(107, 92, 231, 0.12) 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(--starlight);
}

.article-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--starlight);
}

.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(--neon-cyan);
  text-decoration: underline;
}

/* Analysis Page Specific */
.analysis-hero {
  padding: 3rem 0;
  background: radial-gradient(ellipse 55% 40% at 50% 0%, rgba(0, 245, 255, 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(--cosmic-violet), var(--plasma-purple));
  color: white;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.portal-btn:hover {
  background: linear-gradient(135deg, var(--neon-cyan), var(--cosmic-violet));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
  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;
  }
}
