/* Ultra-minimal fix: Just add bottom padding to prevent footer overlap */

.landing-page {
    /* Add padding at bottom to ensure footer never overlaps content */
    padding-bottom: 120px !important; /* Space for footer */
    box-sizing: border-box;
}

/* Make footer background solid to prevent text showing through */
.landing-footer {
    background: var(--bg-primary, #0a0a0a);
    padding: 10px 20px;
    border-radius: 8px;
}
