/* ════════════════════════════════════════════════════════════════
   CISO Consulting — Visual Effects System
   Preloader · Animations · Particles · Glassmorphism · Transitions
   ════════════════════════════════════════════════════════════════ */

/* ═══════════════ 1. PRELOADER ═══════════════ */
#cyber-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #060a0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
    /* CSS-only hard timeout: preloader auto-dismisses after 5s even if JS is slow/blocked.
       This prevents it getting stuck on search?q=keyword with slow PHP response. */
    animation: preloaderHardTimeout 0.5s ease-out 5s forwards;
}
/* JS adds .loaded class (fast path). CSS animation is the safety net. */
@keyframes preloaderHardTimeout {
    from { opacity: 1; visibility: visible; pointer-events: auto; }
    to   { opacity: 0; visibility: hidden;  pointer-events: none; }
}
#cyber-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    animation: none; /* JS dismissed it — cancel the CSS timeout */
}
.preloader-logo {
    width: 80px; height: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900; font-size: 28px; color: #060a0f;
    animation: preloaderPulse 1.5s ease-in-out infinite, preloaderFloat 2s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(0,255,136,0.3), 0 0 80px rgba(0,212,255,0.15);
    position: relative;
    overflow: hidden;
}
.preloader-logo::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, rgba(255,255,255,0.3), transparent);
    animation: preloaderSpin 2s linear infinite;
}
.preloader-logo span { position: relative; z-index: 1; }
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes preloaderFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes preloaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Preloader progress bar */
.preloader-bar {
    width: 200px; height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    margin-top: 24px;
    overflow: hidden;
    position: relative;
}
.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, #00ff88, #00d4ff, transparent);
    animation: preloaderSlide 1.2s ease-in-out infinite;
    border-radius: 4px;
}
@keyframes preloaderSlide {
    0% { left: -60%; }
    100% { left: 100%; }
}
.preloader-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; color: rgba(255,255,255,0.3);
    letter-spacing: 3px; text-transform: uppercase;
    margin-top: 14px;
    animation: preloaderBlink 1s step-end infinite;
}
@keyframes preloaderBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ═══════════════ 2. PAGE TRANSITION ═══════════════ */
.page-transition-in {
    animation: pageSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes pageSlideIn {
    from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ═══════════════ 3. SCROLL REVEAL ANIMATIONS ═══════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal { transition-delay: var(--stagger-delay, 0ms); }

/* ═══════════════ 4. CARD EFFECTS ═══════════════ */
/* Glassmorphism — disabled, using solid backgrounds */
.glass-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Hover lift with glow */
.card-hover {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,255,136,0.08), 0 4px 12px rgba(0,0,0,0.3);
    border-color: rgba(0,255,136,0.15) !important;
}
/* 3D Tilt Card */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}
/* Neon border on hover */
.neon-hover {
    position: relative;
    overflow: hidden;
}
.neon-hover::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #00ff88, #00d4ff, #b464ff, #ff3355, #00ff88);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: neonBorderRotate 3s linear infinite;
}
.neon-hover:hover::before {
    opacity: 1;
}
.neon-hover::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-card, #0d1117);
    border-radius: inherit;
    z-index: -1;
}
@keyframes neonBorderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ═══════════════ 5. BUTTON EFFECTS ═══════════════ */
/* Ripple effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}
.btn-ripple .ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: scale(0);
    animation: rippleExpand 0.6s linear;
    pointer-events: none;
}
@keyframes rippleExpand {
    to { transform: scale(4); opacity: 0; }
}

/* Glow pulse button */
.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}
@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(0,255,136,0.2); }
    50% { box-shadow: 0 0 20px rgba(0,255,136,0.4), 0 0 40px rgba(0,255,136,0.15); }
}

/* Magnetic button */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════ 6. TABLE EFFECTS ═══════════════ */
.table-animate tbody tr {
    opacity: 0;
    transform: translateX(-10px);
    animation: tableRowIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.table-animate tbody tr:nth-child(1) { animation-delay: 0.03s; }
.table-animate tbody tr:nth-child(2) { animation-delay: 0.06s; }
.table-animate tbody tr:nth-child(3) { animation-delay: 0.09s; }
.table-animate tbody tr:nth-child(4) { animation-delay: 0.12s; }
.table-animate tbody tr:nth-child(5) { animation-delay: 0.15s; }
.table-animate tbody tr:nth-child(6) { animation-delay: 0.18s; }
.table-animate tbody tr:nth-child(7) { animation-delay: 0.21s; }
.table-animate tbody tr:nth-child(8) { animation-delay: 0.24s; }
.table-animate tbody tr:nth-child(9) { animation-delay: 0.27s; }
.table-animate tbody tr:nth-child(10) { animation-delay: 0.30s; }
.table-animate tbody tr:nth-child(n+11) { animation-delay: 0.33s; }
@keyframes tableRowIn {
    to { opacity: 1; transform: translateX(0); }
}
.table-animate tbody tr:hover {
    background: rgba(0,255,136,0.03) !important;
    transition: background 0.2s ease;
}

/* Row slide highlight */
.table-animate tbody tr:hover td:first-child {
    box-shadow: inset 3px 0 0 #00ff88;
}
[dir="rtl"] .table-animate tbody tr:hover td:first-child {
    box-shadow: inset -3px 0 0 #00ff88;
}

/* ═══════════════ 7. SIDEBAR EFFECTS ═══════════════ */
.sidebar-link {
    position: relative;
    overflow: hidden;
}
.sidebar-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    transition: width 0.3s ease, left 0.3s ease;
}
.sidebar-link:hover::after {
    width: 80%; left: 10%;
}
.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 3px; height: 60%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #00ff88, #00d4ff);
    border-radius: 0 2px 2px 0;
    animation: sidebarActiveSlide 0.3s ease;
}
[dir="rtl"] .sidebar-link.active::before {
    left: auto; right: 0;
    border-radius: 2px 0 0 2px;
}
@keyframes sidebarActiveSlide {
    from { height: 0; }
    to { height: 60%; }
}

/* Section labels slide in */
.sidebar-section-label {
    animation: sidebarLabelIn 0.4s ease;
}
@keyframes sidebarLabelIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ═══════════════ 8. COUNTER/STATS ANIMATION ═══════════════ */
.counter-animate {
    display: inline-block;
    transition: transform 0.3s ease;
}
.counter-animate.counting {
    animation: counterPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes counterPop {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* ═══════════════ 9. ALERT / TOAST EFFECTS ═══════════════ */
.admin-alert {
    animation: alertSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.admin-alert::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 3px;
}
.admin-alert-success::before { background: linear-gradient(180deg, #00ff88, #00d4ff); }
.admin-alert-error::before { background: linear-gradient(180deg, #ff3355, #ff6b35); }
@keyframes alertSlideIn {
    from { opacity: 0; transform: translateY(-15px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
/* Auto-dismiss animation */
.admin-alert.dismissing {
    animation: alertDismiss 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}
@keyframes alertDismiss {
    to { opacity: 0; transform: translateY(-10px) scale(0.96); height: 0; padding: 0; margin: 0; overflow: hidden; }
}

/* Toast notifications */
.toast-container {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 99998;
    display: flex; flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
[dir="rtl"] .toast-container { right: auto; left: 20px; }
.toast-item {
    pointer-events: auto;
    padding: 12px 20px;
    border-radius: 10px;
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #e8e8e8;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: toastIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex; align-items: center; gap: 10px;
    max-width: 380px;
}
.toast-item.toast-success { border-left: 3px solid #00ff88; }
.toast-item.toast-error { border-left: 3px solid #ff3355; }
.toast-item.toast-info { border-left: 3px solid #00d4ff; }
.toast-item.toast-out {
    animation: toastOut 0.3s ease forwards;
}
@keyframes toastIn {
    from { opacity: 0; transform: translateX(40px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
    to { opacity: 0; transform: translateX(40px) scale(0.9); }
}

/* ═══════════════ 10. PROGRESS BAR ANIMATION ═══════════════ */
.progress-animate {
    position: relative;
    overflow: hidden;
}
.progress-animate > div {
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress-animate::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: progressShimmer 2s infinite;
}
@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ═══════════════ 11. BADGE ANIMATIONS ═══════════════ */
.badge-pulse {
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,51,85,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255,51,85,0); }
}
.badge-count-update {
    animation: badgeBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes badgeBounce {
    0% { transform: scale(0.5); }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ═══════════════ 12. PARTICLE BACKGROUND ═══════════════ */
#cyber-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.cyber-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* Grid line animation */
.grid-animate {
    background-image:
        linear-gradient(rgba(0,255,136,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridScroll 20s linear infinite;
}
@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* ═══════════════ 13. CURSOR GLOW ═══════════════ */
#cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,136,0.04), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    will-change: left, top;
}

/* ═══════════════ 14. FORM INPUT EFFECTS ═══════════════ */
.form-input, .form-control, .form-select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease !important;
}
.form-input:focus, .form-control:focus, .form-select:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,255,136,0.08), 0 0 0 2px rgba(0,255,136,0.1) !important;
}

/* Floating label */
.form-float {
    position: relative;
}
.form-float .form-input {
    padding-top: 20px;
}
.form-float label {
    position: absolute;
    top: 50%; left: 12px;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--text-muted);
    transition: all 0.2s ease;
    pointer-events: none;
}
.form-float .form-input:focus ~ label,
.form-float .form-input:not(:placeholder-shown) ~ label {
    top: 6px;
    transform: translateY(0);
    font-size: 9px;
    color: #00ff88;
}

/* ═══════════════ 15. SKELETON LOADING ═══════════════ */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: 6px;
}
@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton-text { height: 14px; margin-bottom: 8px; }
.skeleton-title { height: 22px; width: 60%; margin-bottom: 12px; }
.skeleton-circle { width: 40px; height: 40px; border-radius: 50%; }
.skeleton-card { height: 120px; }

/* ═══════════════ 16. TYPING EFFECT ═══════════════ */
.typing-effect {
    overflow: hidden;
    border-right: 2px solid #00ff88;
    white-space: nowrap;
    animation: typing 2s steps(30) 0.5s forwards, typingBlink 0.6s step-end infinite;
    width: 0;
}
@keyframes typing {
    to { width: 100%; }
}
@keyframes typingBlink {
    50% { border-color: transparent; }
}

/* ═══════════════ 17. MODAL EFFECTS ═══════════════ */
.modal.fade .modal-dialog {
    transform: scale(0.9) translateY(-30px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* ═══════════════ 18. TOGGLE SWITCH ANIMATION ═══════════════ */
.toggle-switch {
    width: 44px; height: 22px;
    background: rgba(255,255,255,0.1);
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}
.toggle-switch.active {
    background: rgba(0,255,136,0.3);
}
.toggle-switch::after {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #888;
    top: 2px; left: 2px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toggle-switch.active::after {
    left: 24px;
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0,255,136,0.5);
}

/* ═══════════════ 19. DETAILS/ACCORDION ANIMATION ═══════════════ */
details {
    transition: all 0.3s ease;
}
details summary {
    transition: color 0.3s ease;
    user-select: none;
}
details summary:hover {
    color: #00ff88 !important;
}
details[open] summary {
    margin-bottom: 10px;
}
details[open] > *:not(summary) {
    animation: detailsOpen 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes detailsOpen {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ 20. CHART/GAUGE ANIMATIONS ═══════════════ */
svg path {
    transition: stroke-dasharray 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.gauge-animate circle {
    stroke-dashoffset: 100;
    animation: gaugeReveal 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes gaugeReveal {
    to { stroke-dashoffset: 0; }
}

/* ═══════════════ 21. NOTIFICATION DOT ═══════════════ */
.notification-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ff3355;
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,51,85,0.5); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(255,51,85,0); }
}

/* ═══════════════ 22. HEAT MAP CELL ANIMATION ═══════════════ */
.heat-cell {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.heat-cell:hover {
    transform: scale(1.15);
    box-shadow: 0 0 12px currentColor;
    z-index: 2;
    position: relative;
}

/* ═══════════════ 23. SCROLLBAR STYLING ═══════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: rgba(0,255,136,0.15);
    border-radius: 3px;
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0,255,136,0.3); }

/* ═══════════════ 24. SELECTION COLOR ═══════════════ */
::selection {
    background: rgba(0,255,136,0.25);
    color: #fff;
}

/* ═══════════════ 25. SMOOTH SCROLL ═══════════════ */
html {
    scroll-behavior: smooth;
}

/* ═══════════════ 26. TEXT GRADIENT ANIMATION ═══════════════ */
.text-gradient-animate {
    background: linear-gradient(90deg, #00ff88, #00d4ff, #b464ff, #00ff88);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientFlow 4s linear infinite;
}
@keyframes textGradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ═══════════════ 27. IMAGE/MEDIA EFFECTS ═══════════════ */
.img-reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-reveal.revealed {
    clip-path: inset(0 0% 0 0);
}

/* ═══════════════ 28. DASHBOARD WIDGET ENTRANCE ═══════════════ */
.widget-enter {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: widgetEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.widget-enter:nth-child(1) { animation-delay: 0.05s; }
.widget-enter:nth-child(2) { animation-delay: 0.1s; }
.widget-enter:nth-child(3) { animation-delay: 0.15s; }
.widget-enter:nth-child(4) { animation-delay: 0.2s; }
.widget-enter:nth-child(5) { animation-delay: 0.25s; }
.widget-enter:nth-child(6) { animation-delay: 0.3s; }
.widget-enter:nth-child(7) { animation-delay: 0.35s; }
.widget-enter:nth-child(8) { animation-delay: 0.4s; }
@keyframes widgetEnter {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ═══════════════ 29. RESPONSIVE MOTION REDUCTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    #cyber-particles, #cursor-glow { display: none !important; }
}

/* ═══════════════ 30. LIGHT THEME ADJUSTMENTS ═══════════════ */
[data-theme="light"] #cyber-preloader { background: #f8f9fa; }
[data-theme="light"] .preloader-text { color: rgba(0,0,0,0.3); }
[data-theme="light"] #cursor-glow { background: radial-gradient(circle, rgba(0,100,50,0.03), transparent 70%); }
[data-theme="light"] .toast-item { background: rgba(255,255,255,0.95); color: #1a1a2e; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .glass-card { background: rgba(255,255,255,0.7) !important; border-color: rgba(0,0,0,0.06) !important; }
[data-theme="light"] .neon-hover::after { background: #fff; }
[data-theme="light"] .skeleton {
    background: linear-gradient(90deg, rgba(0,0,0,0.04) 25%, rgba(0,0,0,0.07) 50%, rgba(0,0,0,0.04) 75%);
    background-size: 200% 100%;
}
