#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-secondary, #010101);
    z-index: 99999; /* Above everything */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    font-family: var(--font-display, "helvetica-neue-lt-pro-cond", sans-serif);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--text-primary, #FFFFFF);
    text-transform: uppercase;
    opacity: 0; /* Animated by JS */
    margin-bottom: 20px;
}

.loader-line {
    width: 0; /* Animated by JS */
    height: 2px;
    background-color: var(--accent, #C2D10F);
    max-width: 200px; /* Or whatever width looks good */
}
