#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1 !important; 
    pointer-events: none;
    display: block;
}

/* --- 2. HERO COMPONENT (THE POD) --- */
.hero {
    background: transparent !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-content {
    max-width: 900px;
    padding: 60px 40px;
    text-align: center;
    margin: 0 auto;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    /* Theme Reactive Properties */
    background: var(--hero-glass-bg) !important;
    border: 1px solid var(--hero-border) !important;
    
    /* Consolidated Blur & GPU Acceleration */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0); 
    
    /* Optimized Transitions (merged duplicates) */
    will-change: backdrop-filter, background-color, color; 
    transition: background-color 0.1s linear, color 0.1s linear, border 0.15s ease !important;
}

/* --- 3. TYPOGRAPHY & BUTTONS --- */
.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--hero-title-text) !important;
    transition: color 0.15s ease;
}

.hero-content p {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px auto;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: var(--hero-body-text) !important;
    transition: color 0.15s ease;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(10px);
    
    /* Initial Light Mode Styles */
    color: #008f25 !important; 
    border: 1px solid rgba(0, 143, 37, 0.5) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s ease;
}

[data-theme="dark"] .play-btn {
    color: #00ff41 !important; 
    border-color: rgba(0, 255, 65, 0.5) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.play-btn:hover {
    background: #00ff41 !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

/* --- 4. SECTIONS & FOOTER --- */
.section {
    background: transparent !important;
    padding: 80px 10%;
}

footer {
    background: transparent !important;
    padding: 60px 10%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Applying "The Pod" logic to the footer container */
.footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* Theme Reactive Properties synced with Hero */
    background: var(--hero-glass-bg) !important;
    border: 1px solid var(--hero-border) !important;
    
    /* Consolidated Blur & GPU Acceleration */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px);
    transform: translateZ(0);
    
    /* Transitions for smooth mode switching */
    will-change: backdrop-filter, background-color;
    transition: background-color 0.1s linear, border 0.15s ease !important;
}

/* Footer Typography styling */
.footer-content p {
    color: var(--hero-body-text) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- FLOATING DOCK (GLOBAL) --- */
.floating-dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.dock-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 24px;
    
    /* Use the same glass variables as the Hero Pod */
    background: var(--hero-glass-bg) !important;
    border: 1px solid var(--hero-border) !important;
    
    /* Consolidated Blur */
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px);
    
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

