/* 
    ExamPro DSU - Global Theme & Animation System
    Created by Antigravity AI
*/

:root {
    /* Premium Dark Mode Only */
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #a855f7;
    --bg-main: #0b0b1a; /* Deeper Dark */
    --bg-card: rgba(23, 23, 45, 0.7);
    --bg-glass: rgba(11, 11, 26, 0.85);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Body Styles */
body {
    background-color: var(--bg-main) !important;
    color: var(--text-main) !important;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow); }
}

.animate-up { animation: fadeInUp 0.8s ease-out forwards; }
.animate-slide { animation: slideInRight 0.5s ease-out forwards; }

/* Responsive Utilities */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .show-mobile { display: block !important; }
    
    .logo-area h1 {
        font-size: 1.5rem !important;
        margin-top: 10px !important;
    }
}

/* Professional Password Eye Icon */
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary);
}

/* Component Overrides */
.card, .profile-hero, .panel, .feature-card, .feature-item {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    backdrop-filter: blur(15px);
}

/* Global Transitions */
body, nav, .card, .profile-hero, .sidebar, .main, .hero, .features, .app-download, footer {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
