/* Invert colors for dark mode */
html {
    filter: invert(90%) hue-rotate(180deg) !important;
    background-color: #121212 !important; /* Forces a dark background */
}

/* Re-invert images, logos, and videos */
img, video, .navbar-brand {
    filter: invert(100%) hue-rotate(180deg) !important;
}