/* ============================================================
   THE ADAM — FORCE DARK THEME OVERRIDE
   Bu CSS her şeye rağmen dark temayı garanti eder
   ============================================================ */

/* Light tema sınıfı varsa bile dark tema kuralları geçerli olsun */
html.theme-light,
html.theme-dark,
html {
    /* Dark tema renkleri zorla */
    --bg-dark: #0C0C22 !important;
    --bg-dark-2: #16162E !important;
    --bg-dark-3: #1A1A36 !important;
    --text-primary: #FFFFFF !important;
    --text-secondary: #B8B8D1 !important;
    --text-muted: #8B8BA7 !important;
    
    color-scheme: dark !important;
    background-color: #0C0C22 !important;
    color: #FFFFFF !important;
}

/* Body ve tüm ana containers */
body {
    background-color: #0C0C22 !important;
    color: #FFFFFF !important;
}

/* Mobile fixes */
@media (max-width: 768px) {
    html, body {
        background-color: #0C0C22 !important;
        color: #FFFFFF !important;
    }
    
    .main-nav {
        background: linear-gradient(180deg, rgba(12,12,34,.98) 0%, rgba(22,22,46,.95) 100%) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
    }
    
    /* Override any light theme mobile styles */
    .mobile-nav-header {
        background: rgba(255,255,255,.05) !important;
        border-bottom-color: rgba(255,255,255,.1) !important;
    }
}