/* ==========================================================================
   ESSS SCIENCE PORTAL DESIGN SYSTEM & STYLESHEET (ENHANCED SCI-FI DASHBOARD)
   Strict Color Palette: Cosmic Blue (#125DFF, #DEEBFF, #021034) & Neutral (#C4C4C4, #FFFFFF, #3E3E3E)
   ========================================================================== */

:root {
    /* Cosmic Blue Theme Colors */
    --color-cosmic-base: #125DFF;       /* Primary CTA, active states, accents */
    --color-cosmic-secondary: #DEEBFF;  /* Hover highlights, light text contrast, glass tints */
    --color-cosmic-tertiary: #021034;   /* Deep space background, dark panels */

    /* Neutral Theme Colors */
    --color-neutral-base: #C4C4C4;      /* Secondary text, borders, inactive cards */
    --color-neutral-secondary: #FFFFFF; /* High contrast headers, primary text, pure highlights */
    --color-neutral-tertiary: #3E3E3E;  /* Surface backgrounds, secondary panel cards */

    /* Alpha/Glow tints derived from strict palette */
    --color-cosmic-glow: rgba(18, 93, 255, 0.4);
    --color-cosmic-glow-soft: rgba(18, 93, 255, 0.15);
    --color-glass-bg: rgba(2, 16, 52, 0.7);
    --color-glass-border: rgba(222, 235, 255, 0.08);
    --color-glass-border-hover: rgba(18, 93, 255, 0.4);
    
    /* Layout Constants */
    --max-width: 1280px;
    --header-height: 80px;
    --border-radius-sm: 4px; /* Sharper corners fit the high-tech sci-fi dashboard theme */
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--color-cosmic-tertiary);
    color: var(--color-neutral-base);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Custom Selection styling */
::selection {
    background-color: var(--color-cosmic-base);
    color: var(--color-neutral-secondary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-cosmic-tertiary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-neutral-tertiary);
    border: 2px solid var(--color-cosmic-tertiary);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-cosmic-base);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--color-neutral-secondary);
    font-weight: 700;
    line-spacing: -0.5px;
    letter-spacing: -0.5px;
}

a {
    color: var(--color-cosmic-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* UTILITIES */
.text-center { text-align: center; }
.btn-icon { display: inline-flex; align-items: center; gap: 8px; }

/* Metallic/Neon Gradient Heading styling */
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 40%, #DEEBFF 75%, #125DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   DYNAMIC INTERACTIVE SPACE BACKGROUND (CANVAS)
   ========================================================================== */
#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.08;
    pointer-events: none;
    background: var(--color-cosmic-base);
}

#glow-orb-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -100px;
}

#glow-orb-2 {
    width: 800px;
    height: 800px;
    bottom: 5%;
    left: -200px;
}

/* Scanning scanline animation overlays */
.stars-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 93, 255, 0) 97%, rgba(18, 93, 255, 0.04) 98%, rgba(18, 93, 255, 0.04) 100%);
    background-size: 100% 20px;
    animation: scanlineScroll 60s linear infinite;
    pointer-events: none;
}

@keyframes scanlineScroll {
    from { background-position: 0 0; }
    to { background-position: 0 100%; }
}

/* ==========================================================================
   HIGH-TECH GLASSMORPHIC CARDS/PANELS (WITH CORNER DECORATIONS)
   ========================================================================== */
.glass-panel {
    background: var(--color-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-md);
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.5);
}

/* Bracket corners overlay for sci-fi look */
.glass-panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 16px;
    height: 16px;
    border-top: 2px solid var(--color-cosmic-base);
    border-left: 2px solid var(--color-cosmic-base);
    border-top-left-radius: 2px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.glass-panel::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 16px;
    height: 16px;
    border-bottom: 2px solid var(--color-cosmic-base);
    border-right: 2px solid var(--color-cosmic-base);
    border-bottom-right-radius: 2px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--color-glass-border-hover);
    box-shadow: 0 20px 48px 0 rgba(18, 93, 255, 0.18);
    transform: translateY(-2px);
}

.glass-panel:hover::before {
    width: 24px;
    height: 24px;
    border-color: var(--color-cosmic-secondary);
}

.glass-panel:hover::after {
    width: 24px;
    height: 24px;
    border-color: var(--color-cosmic-secondary);
}

/* ==========================================================================
   BUTTONS (WITH TELEMETRY GLOW)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-cosmic-base);
    color: var(--color-neutral-secondary);
    box-shadow: 0 4px 20px var(--color-cosmic-glow);
    border: 1px solid rgba(222, 235, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:hover {
    background-color: #2b70ff;
    box-shadow: 0 6px 25px rgba(18, 93, 255, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(222, 235, 255, 0.03);
    color: var(--color-cosmic-secondary);
    border: 1px solid rgba(222, 235, 255, 0.12);
}

.btn-secondary:hover {
    background-color: rgba(18, 93, 255, 0.1);
    color: var(--color-neutral-secondary);
    border-color: var(--color-cosmic-base);
    transform: translateY(-2px);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(18, 93, 255, 0.15);
    border: 1px solid rgba(18, 93, 255, 0.4);
    color: #DEEBFF;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.back-btn:hover {
    background: rgba(18, 93, 255, 0.35);
    border-color: #125DFF;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(18, 93, 255, 0.4);
    transform: translateX(-3px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 0.95rem;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

.btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    height: var(--header-height);
    background: rgba(2, 16, 52, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(18, 93, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
}

.esss-logo {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-neutral-base);
    padding: 8px 4px;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-neutral-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-cosmic-base);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Language toggle button design */
.lang-toggle-btn {
    background: rgba(222, 235, 255, 0.03);
    border: 1px solid rgba(222, 235, 255, 0.12);
    border-radius: 2px;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.lang-toggle-btn:hover {
    border-color: var(--color-cosmic-base);
    background: rgba(18, 93, 255, 0.15);
}

.lang-indicator {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-neutral-base);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.lang-indicator.active-lang {
    color: var(--color-cosmic-base);
    text-shadow: 0 0 8px rgba(18, 93, 255, 0.6);
}

.lang-divider {
    color: rgba(222, 235, 255, 0.15);
    font-size: 0.8rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 120px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background: rgba(18, 93, 255, 0.1);
    color: var(--color-cosmic-secondary);
    border: 1px solid rgba(18, 93, 255, 0.25);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: monospace;
    position: relative;
}

.hero-badge::before {
    content: '[';
    margin-right: 4px;
    color: var(--color-cosmic-base);
}

.hero-badge::after {
    content: ']';
    margin-left: 4px;
    color: var(--color-cosmic-base);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-neutral-base);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Hero Visual: ESA/NASA style telemetry telemetry dashboard */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-wireframe {
    width: 380px;
    height: 380px;
    border: 1px solid rgba(18, 93, 255, 0.15);
    background: rgba(2, 16, 52, 0.5);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(2, 16, 52, 0.8);
}

/* Brackets for radar display */
.dashboard-wireframe::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(222, 235, 255, 0.03);
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-image: 
        linear-gradient(rgba(18, 93, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 93, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: center;
}

.radar-sweep {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(18, 93, 255, 0.12) 0deg, transparent 120deg, transparent 360deg);
    animation: radarSweep 8s linear infinite;
    pointer-events: none;
}

.telemetry-node {
    position: absolute;
    background: rgba(1, 8, 27, 0.9);
    border: 1px solid rgba(18, 93, 255, 0.25);
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    font-family: monospace;
    font-size: 0.7rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    letter-spacing: 0.5px;
}

.telemetry-node::before {
    content: '';
    position: absolute;
    top: 4px;
    left: -1px;
    width: 1px;
    height: 60%;
    background: var(--color-cosmic-base);
}

.telemetry-node.top-left { top: -10px; left: -10px; }
.telemetry-node.top-right { top: -10px; right: -10px; }
.telemetry-node.bottom-left { bottom: -10px; left: -10px; }
.telemetry-node.bottom-right { bottom: -10px; right: -10px; }

.telemetry-label {
    color: var(--color-neutral-base);
    font-weight: 500;
}

.telemetry-val {
    color: var(--color-cosmic-base);
    font-weight: 700;
    text-shadow: 0 0 4px rgba(18, 93, 255, 0.5);
    transition: var(--transition-smooth);
}

.orbit-visualizer-container {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(18, 93, 255, 0.15);
}

.ring-outer {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(18, 93, 255, 0.08);
    animation: rotateCW 50s linear infinite;
}

.ring-mid {
    width: 75%;
    height: 75%;
    border-style: dashed;
    border-color: rgba(222, 235, 255, 0.08);
    animation: rotateCCW 30s linear infinite;
}

.ring-inner {
    width: 45%;
    height: 45%;
    border-style: solid;
    animation: rotateCW 18s linear infinite;
}

.pulsing-core {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--color-neutral-secondary);
    box-shadow: 0 0 15px 3px var(--color-cosmic-base);
    animation: corePulse 2.5s infinite alternate;
}

.orbiting-marker {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-cosmic-secondary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-top: -3px;
    margin-left: -3px;
    box-shadow: 0 0 8px #FFF;
    transform: rotate(0deg) translate(130px) rotate(0deg);
    animation: orbitMarker 18s linear infinite;
}

@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCW {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCCW {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes corePulse {
    from { transform: scale(0.9); box-shadow: 0 0 15px var(--color-cosmic-base); }
    to { transform: scale(1.1); box-shadow: 0 0 25px 5px var(--color-cosmic-base); }
}

@keyframes orbitMarker {
    from { transform: rotate(0deg) translate(130px) rotate(0deg); }
    to { transform: rotate(360deg) translate(130px) rotate(-360deg); }
}

/* ==========================================================================
   SECTIONS & SECT-HEADERS
   ========================================================================== */
.main-content {
    padding: 80px 0 120px;
}

.section-header {
    margin-bottom: 70px;
    position: relative;
}

.section-header.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    font-family: monospace;
    color: var(--color-cosmic-base);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.section-tag::before { content: '// '; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-neutral-base);
    max-width: 650px;
}

/* ==========================================================================
   FEATURED PROJECT CARD ("Walk in the Solar System")
   ========================================================================== */
.featured-section {
    margin-bottom: 120px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    padding: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(18, 93, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.featured-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.status-badge {
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: monospace;
    border-radius: var(--border-radius-sm);
}

.status-badge.live {
    background: rgba(18, 93, 255, 0.08);
    color: var(--color-neutral-secondary);
    border: 1px solid var(--color-cosmic-base);
}

.featured-project-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.featured-project-desc {
    font-size: 1.05rem;
    color: var(--color-neutral-base);
    margin-bottom: 36px;
}

.project-features {
    margin-bottom: 40px;
    width: 100%;
}

.features-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-cosmic-secondary);
    margin-bottom: 18px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--color-neutral-base);
}

.feature-icon {
    width: 14px;
    height: 14px;
    color: var(--color-cosmic-base);
    flex-shrink: 0;
}

.featured-actions {
    width: 100%;
}

/* Solar System Interactive Vector Visual (Engineering blueprint layout) */
.featured-visual-container {
    height: 420px;
    position: relative;
    border: 1px solid rgba(18, 93, 255, 0.15);
    background: rgba(1, 8, 27, 0.6);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6);
}

/* Blueprint design patterns */
.featured-visual-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(222, 235, 255, 0.02);
    pointer-events: none;
}

/* --- Featured Visuals --- */

/* Lunar Schematic Animation */
.lunar-schematic {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.schematic-moon-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, #f1f5f9, #cbd5e1 50%, #94a3b8 80%, #64748b 100%);
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset -15px -15px 25px rgba(0,0,0,0.5), 0 0 35px 5px rgba(255, 255, 255, 0.1);
}

.moon-crater {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    box-shadow: inset 1px 2px 4px rgba(0,0,0,0.4), 1px 1px 2px rgba(255,255,255,0.6);
}

.crater-1 { width: 35px; height: 35px; top: 15%; left: 35%; }
.crater-2 { width: 18px; height: 18px; top: 60%; left: 75%; }
.crater-3 { width: 45px; height: 45px; top: 50%; left: 15%; }
.crater-4 { width: 12px; height: 12px; top: 75%; left: 40%; }
.crater-5 { width: 22px; height: 22px; top: 30%; left: 65%; }

.orbit-lro {
    width: 300px;
    height: 300px;
    animation: orbitRotateCW 12s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.satellite-marker {
    position: absolute;
    top: -12px; /* Offset to center 24px icon on orbit line */
    left: calc(50% - 12px);
    width: 24px;
    height: 24px;
    color: #ffcc00;
    filter: drop-shadow(0 0 6px rgba(255, 204, 0, 0.8));
    display: flex;
    justify-content: center;
    align-items: center;
}
.satellite-marker svg {
    width: 100%;
    height: 100%;
}

/* Solar System Schematic */
.solar-system-schematic {
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.schematic-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: #FFF;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 25px 6px rgba(18, 93, 255, 0.9);
}

.sun-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(18, 93, 255, 0.25) 0%, rgba(18, 93, 255, 0) 70%);
    border-radius: 50%;
    animation: sunGlowPulse 3s infinite alternate;
}

.schematic-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(18, 93, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Planet orbits and rotational speed scales */
.orbit-mercury {
    width: 80px;
    height: 80px;
    animation: orbitRotateCW 8s linear infinite;
}
.orbit-venus {
    width: 130px;
    height: 130px;
    animation: orbitRotateCW 16s linear infinite;
}
.orbit-earth {
    width: 190px;
    height: 190px;
    animation: orbitRotateCW 26s linear infinite;
}
.orbit-mars {
    width: 250px;
    height: 250px;
    animation: orbitRotateCW 36s linear infinite;
}
.orbit-jupiter {
    width: 320px;
    height: 320px;
    animation: orbitRotateCW 55s linear infinite;
}

/* Planets as micro-readout markers */
.schematic-planet {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-neutral-secondary);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.schematic-planet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    border: 1px solid var(--color-cosmic-base);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    transition: var(--transition-smooth);
}

.schematic-planet:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.schematic-planet:hover {
    transform: scale(1.4);
    background-color: var(--color-cosmic-base);
    box-shadow: 0 0 12px var(--color-cosmic-base);
}

/* Positioning planets on top of orbits */
.planet-mercury {
    width: 6px;
    height: 6px;
    top: 50%;
    left: -3px;
    background-color: #8C99AF;
}

.planet-venus {
    width: 8px;
    height: 8px;
    top: 18px;
    left: 18px;
    background-color: var(--color-neutral-base);
}

.planet-earth {
    width: 10px;
    height: 10px;
    top: 50%;
    right: -5px;
    background-color: var(--color-cosmic-base);
    box-shadow: 0 0 10px var(--color-cosmic-base);
}

/* Stylized moon for Earth */
.schematic-moon {
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    background-color: var(--color-neutral-secondary);
    border-radius: 50%;
    top: -5px;
    left: 50%;
    margin-left: -1.25px;
}

.planet-mars {
    width: 8px;
    height: 8px;
    bottom: 30px;
    left: 30px;
    background-color: #D28B5E; /* Desaturated rust/orange */
}

.planet-jupiter {
    width: 16px;
    height: 16px;
    top: 50%;
    left: -8px;
    background-color: var(--color-cosmic-secondary);
    border: 1.5px solid var(--color-cosmic-base);
}

/* Telemetry box overlays inside visualizer */
.orbit-lines-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(18, 93, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 93, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
}

.visual-panel-telemetry {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--color-neutral-base);
    background: rgba(1, 8, 27, 0.9);
    border: 1px solid rgba(18, 93, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
}

.telemetry-bar {
    display: flex;
    gap: 16px;
}

.telemetry-bar .lbl { color: var(--color-neutral-base); }
.telemetry-bar .val { color: var(--color-cosmic-base); font-weight: bold; }

/* ==========================================================================
   FUTURE PROJECTS MODULAR GRID
   ========================================================================== */
.grid-section {
    margin-bottom: 120px;
}

.module-dashboard {
    display: flex;
    flex-direction: row;
    height: 500px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(222, 235, 255, 0.05);
}

.module-tabs {
    flex: 0 0 350px;
    background: rgba(2, 16, 52, 0.5);
    overflow-y: auto;
    border-right: 1px solid rgba(18, 93, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.module-tabs::-webkit-scrollbar {
    width: 6px;
}
.module-tabs::-webkit-scrollbar-thumb {
    background: rgba(18, 93, 255, 0.3);
    border-radius: 4px;
}

.category-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-cosmic-base);
    background: rgba(2, 16, 52, 0.8);
    position: sticky;
    top: 0;
    z-index: 10;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.category-header:hover {
    background: rgba(18, 93, 255, 0.1);
}

.chevron-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: rgba(222, 235, 255, 0.5);
}

.category-group.expanded .chevron-icon {
    transform: rotate(180deg);
}

.category-content {
    display: none;
    flex-direction: column;
}

.category-group.expanded .category-content {
    display: flex;
}

.empty-category-msg {
    padding: 16px 24px;
    font-size: 0.85rem;
    color: rgba(222, 235, 255, 0.4);
    font-style: italic;
}

.module-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--color-neutral-base);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.module-tab:hover {
    background: rgba(18, 93, 255, 0.05);
}

.module-tab.active {
    background: rgba(18, 93, 255, 0.1);
    color: #FFF;
}

.module-tab.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-cosmic-base);
    box-shadow: 0 0 10px var(--color-cosmic-base);
}

.tab-icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(222, 235, 255, 0.5);
    transition: all 0.3s ease;
}

.module-tab:hover .tab-icon {
    transform: scale(1.1) translateY(-2px);
    color: var(--color-cosmic-secondary);
}

.module-tab.active .tab-icon {
    color: var(--color-cosmic-base);
}

.tab-label {
    display: flex;
    flex-direction: column;
}

.tab-num {
    font-size: 0.7rem;
    font-family: monospace;
    color: rgba(222, 235, 255, 0.3);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.module-tab.active .tab-num {
    color: var(--color-cosmic-base);
}

.tab-title {
    font-size: 0.95rem;
    font-weight: 500;
}

.module-showcase {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(18, 93, 255, 0.03) 0%, transparent 70%);
}

.module-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}

.module-pane.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.pane-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-placeholder {
    width: 200px;
    height: 200px;
    color: rgba(18, 93, 255, 0.2);
    animation: floatingIcon 6s ease-in-out infinite;
}

@keyframes floatingIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.pane-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pane-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.meta-tag {
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: monospace;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.complexity-ultra { color: #FFF; background: rgba(18, 93, 255, 0.8); border-color: var(--color-cosmic-base); }
.complexity-high { color: #DEEBFF; border-color: rgba(222, 235, 255, 0.5); }
.complexity-medium { color: var(--color-neutral-base); border-color: rgba(196, 196, 196, 0.3); }
.complexity-low { color: rgba(255, 255, 255, 0.4); border-color: rgba(255, 255, 255, 0.1); }

.category-lbl {
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--color-cosmic-base);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pane-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pane-content p {
    font-size: 1rem;
    color: var(--color-neutral-base);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pane-tech {
    font-family: monospace;
    font-size: 0.8rem;
    color: rgba(222, 235, 255, 0.7);
    margin-bottom: 32px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-sm);
    border-left: 2px solid var(--color-cosmic-base);
}

.btn-launch.disabled {
    background: rgba(62, 62, 62, 0.5);
    color: var(--color-neutral-base);
    border: none;
    cursor: not-allowed;
    width: fit-content;
}
.btn-launch {
    width: fit-content;
}

/* ==========================================================================
   ABOUT / ORGANIZATION SECTION
   ========================================================================== */
.about-section {
    margin-bottom: 60px;
}

.about-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 60px;
    align-items: center;
    border-radius: var(--border-radius-md);
}

.about-tag {
    color: var(--color-cosmic-base);
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.about-tag::before { content: '// '; }

.about-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-desc {
    font-size: 1.05rem;
    color: var(--color-neutral-base);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(2, 16, 52, 0.4);
    border: 1px solid rgba(222, 235, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

/* Small L brackets on corners */
.stat-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid rgba(18, 93, 255, 0.3);
    border-left: 1.5px solid rgba(18, 93, 255, 0.3);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 8px;
    height: 8px;
    border-bottom: 1.5px solid rgba(18, 93, 255, 0.3);
    border-right: 1.5px solid rgba(18, 93, 255, 0.3);
}

.stat-card:hover {
    background: rgba(18, 93, 255, 0.06);
    border-color: var(--color-cosmic-glow-soft);
}

.stat-card:hover::before, .stat-card:hover::after {
    border-color: var(--color-cosmic-base);
}

.stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-cosmic-base);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(18, 93, 255, 0.2);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--color-neutral-base);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Outfit', sans-serif;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #010614;
    border-top: 1px solid rgba(18, 93, 255, 0.15);
    padding: 90px 0 40px;
    position: relative;
    z-index: 10;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-txt {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-neutral-secondary);
    letter-spacing: 1.5px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--color-neutral-base);
    max-width: 320px;
}

.footer-group-title {
    font-size: 1.05rem;
    color: var(--color-neutral-secondary);
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-neutral-base);
}

.footer-links a:hover {
    color: var(--color-cosmic-base);
    padding-left: 6px;
}

.footer-social-group {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: rgba(222, 235, 255, 0.02);
    border: 1px solid rgba(222, 235, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neutral-base);
}

.social-link:hover {
    color: var(--color-neutral-secondary);
    background: var(--color-cosmic-base);
    border-color: var(--color-cosmic-base);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--color-cosmic-glow);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(222, 235, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-neutral-base);
    text-align: center;
    font-family: monospace;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */

/* Up to Desktop screens */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-wrapper {
        gap: 30px;
    }
    
    .module-dashboard {
        flex-direction: column;
        height: 700px; /* Give enough height for stacked tabs and content */
    }
    .module-tabs {
        flex: 0 0 250px;
        border-right: none;
        border-bottom: 1px solid rgba(18, 93, 255, 0.1);
    }

    .about-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* Up to Tablet screens */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding-top: 20px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .dashboard-wireframe {
        width: 320px;
        height: 320px;
    }

    .orbit-visualizer-container {
        width: 220px;
        height: 220px;
    }

    .orbiting-marker {
        transform: rotate(0deg) translate(110px) rotate(0deg);
        animation: orbitMarkerMobile 18s linear infinite;
    }

    .featured-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }

    .featured-project-title {
        font-size: 2rem;
    }

    .featured-visual-container {
        height: 340px;
    }

    .solar-system-schematic {
        width: 300px;
        height: 300px;
    }

    .orbit-jupiter { display: none; } /* Hide outer orbit on mobile to avoid layout clipping */
    
    .module-dashboard {
        height: 600px;
    }
    .module-tabs {
        flex: 0 0 200px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-nav {
        display: none; /* Hide standard nav on mobile */
    }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.85rem;
    }
}

@keyframes orbitMarkerMobile {
    from { transform: rotate(0deg) translate(110px) rotate(0deg); }
    to { transform: rotate(360deg) translate(110px) rotate(-360deg); }
}

@keyframes orbitRotateCW {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes sunGlowPulse {
    from { transform: translate(-50%, -50%) scale(0.9); box-shadow: 0 0 15px var(--color-cosmic-base); }
    to { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 25px 5px var(--color-cosmic-base); }
}

#hero-mesh-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

/* ==========================================================================
   LIVE MOON PHASE WIDGET
   ========================================================================== */
.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.moon-widget-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #010614;
    border: 1px solid rgba(222, 235, 255, 0.15);
    box-shadow: 0 0 10px rgba(222, 235, 255, 0.05);
    cursor: help;
    transition: all 0.3s ease;
}

.moon-widget-wrapper:hover {
    border-color: rgba(18, 93, 255, 0.5);
    box-shadow: 0 0 15px rgba(18, 93, 255, 0.2);
}

.moon-phase {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* Canvas drawing will handle the colors */
}

/* ==========================================================================
   STARGAZER MODE (KONAMI EASTER EGG)
   ========================================================================== */
body {
    transition: background-color 2s ease-in-out;
}

body.stargazer-mode {
    background-color: #000;
}

/* Always present but invisible pseudo-elements for transitions */
body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: -1; /* Behind all content, fixes faded text! */
}

body::before {
    background: radial-gradient(circle at bottom, rgba(18, 93, 255, 0.1) 0%, #000 70%);
    transition: opacity 2s ease-out, visibility 2s;
}

body::after {
    background-image: 
        radial-gradient(1.5px 1.5px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2.5px 2.5px at 160px 120px, #ffffff, rgba(0,0,0,0));
    background-size: 200px 200px;
    background-repeat: repeat;
    filter: brightness(1);
    transition: opacity 3s ease-out 0s, visibility 3s; /* Transition OUT */
}

body.stargazer-mode::before {
    opacity: 1;
    visibility: visible;
    transition: opacity 3s ease-out, visibility 0s;
}

body.stargazer-mode::after {
    opacity: 0.8;
    visibility: visible;
    transition: opacity 3s ease-out 1s, visibility 0s; /* Delayed transition IN */
    animation: twinkleStars 4s infinite alternate 4s;
}

@keyframes twinkleStars {
    0% { filter: brightness(0.4); }
    100% { filter: brightness(1); }
}

.stargazer-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 93, 255, 0.2);
    border: 1px solid var(--color-cosmic-base);
    color: var(--color-neutral-secondary);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(18, 93, 255, 0.4);
    opacity: 0;
    animation: toastFade 4s forwards;
}

@keyframes toastFade {
    0% { opacity: 0; bottom: 10px; }
    10% { opacity: 1; bottom: 30px; }
    90% { opacity: 1; bottom: 30px; }
    100% { opacity: 0; bottom: 10px; }
}

/* Eclipse Schematic Visualizer */
.eclipse-schematic {
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.schematic-sun-body {
    position: absolute;
    left: 30px;
    top: calc(50% - 35px);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, #ffffff 30%, #ffd54f 60%, #ffa726 100%);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 35px 8px rgba(255, 193, 7, 0.7);
}

.schematic-moon-body {
    position: absolute;
    left: 180px;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, #475569, #1e293b 80%, #0f172a 100%);
    border-radius: 50%;
    z-index: 11;
    box-shadow: inset -2px -2px 5px rgba(0,0,0,0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    animation: moonDrift 4s ease-in-out infinite alternate;
}

.schematic-earth-body {
    position: absolute;
    right: 25px;
    top: calc(50% - 45px);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 30% 30%, #93c5fd, #2563eb 50%, #1d4ed8 80%, #1e3a8a 100%);
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset -8px -8px 15px rgba(0,0,0,0.6), 0 0 25px rgba(37, 99, 235, 0.3);
    animation: rotateCW 60s linear infinite;
}

.earth-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.2) 0%, rgba(147, 197, 253, 0) 70%);
    pointer-events: none;
}

.eclipse-geometry-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

@keyframes moonDrift {
    0% { transform: translateX(-4px); }
    100% { transform: translateX(4px); }
}
