/* CRITICAL FIX: Remove white background from top of page */

/* Force body and html to have dark background */
html,
body {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure no white backgrounds anywhere on page */
*:not(.hero):not(.cta-section):not(.footer):not(.navbar) {
    background-color: #1a1a1a !important;
}

/* Specifically target any remaining white backgrounds */
*[style*="background: white"],
*[style*="background: #ffffff"],
*[style*="background-color: white"],
*[style*="background-color: #ffffff"] {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
}

/* Override any CSS variable references that might be white */
:root {
    --white: #1a1a1a !important;
}
