/**
 * NSRP - Modern Design System
 * Glassmorphism, Animations, Modern UI
 */

/* ===== ROOT VARIABLES - ENHANCED ===== */
:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #F2994A 0%, #F2C94C 100%);
    --danger-gradient: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);

    /* Dark Theme Colors */
    --bg-dark-1: #0a0e27;
    --bg-dark-2: #131a3a;
    --bg-dark-3: #1e2950;
    --bg-dark-4: #2a3868;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Glow Effects */
    --glow-primary: 0 0 20px rgba(102, 126, 234, 0.5);
    --glow-success: 0 0 20px rgba(56, 239, 125, 0.5);
    --glow-danger: 0 0 20px rgba(235, 51, 73, 0.5);
    --glow-warning: 0 0 20px rgba(242, 201, 76, 0.5);

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== GLOBAL ENHANCEMENTS ===== */
body {
    background: var(--bg-dark-1);
    background-image:
        radial-gradient(ellipse at top left, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    min-height: 100vh;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2, #667eea);
}

/* ===== GLASSMORPHISM CARDS ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow), var(--glow-primary);
    border-color: rgba(102, 126, 234, 0.3);
}

/* ===== ENHANCED HEADER ===== */
.header {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo i {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.8)); }
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

/* ===== ENHANCED NAVIGATION ===== */
.main-nav {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--glass-border);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #9ca3af;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    color: #fff;
    border-color: rgba(102, 126, 234, 0.3);
}

.nav-btn:hover::before {
    opacity: 0.1;
}

.nav-btn.active {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--glow-primary);
}

.nav-btn i {
    font-size: 1.1rem;
}

/* ===== ENHANCED STAT CARDS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--glass-shadow);
}

.stat-card.blue::before { background: var(--accent-gradient); }
.stat-card.green::before { background: var(--success-gradient); }
.stat-card.orange::before { background: var(--warning-gradient); }
.stat-card.red::before { background: var(--danger-gradient); }

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

.stat-icon.blue {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
    color: #4facfe;
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}

.stat-icon.green {
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.2), rgba(56, 239, 125, 0.2));
    color: #38ef7d;
    box-shadow: 0 0 20px rgba(56, 239, 125, 0.3);
}

.stat-icon.orange {
    background: linear-gradient(135deg, rgba(242, 153, 74, 0.2), rgba(242, 201, 76, 0.2));
    color: #F2C94C;
    box-shadow: 0 0 20px rgba(242, 201, 76, 0.3);
}

.stat-icon.red {
    background: linear-gradient(135deg, rgba(235, 51, 73, 0.2), rgba(244, 92, 67, 0.2));
    color: #f45c43;
    box-shadow: 0 0 20px rgba(244, 92, 67, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.stat-trend {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-trend.up {
    background: rgba(56, 239, 125, 0.15);
    color: #38ef7d;
}

.stat-trend.down {
    background: rgba(244, 92, 67, 0.15);
    color: #f45c43;
}

/* ===== ENHANCED DASHBOARD CARDS ===== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.dashboard-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.dashboard-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: var(--glass-shadow);
}

.alerts-card { grid-column: span 4; }
.map-card { grid-column: span 5; }
.activity-card { grid-column: span 3; }
.actions-card { grid-column: span 12; }

@media (max-width: 1400px) {
    .alerts-card, .map-card { grid-column: span 6; }
    .activity-card { grid-column: span 12; }
}

@media (max-width: 768px) {
    .dashboard-grid { grid-template-columns: 1fr; }
    .alerts-card, .map-card, .activity-card, .actions-card { grid-column: span 1; }
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header h3 i {
    color: #667eea;
}

/* ===== ENHANCED ALERTS ===== */
.alerts-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

.alert-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 3px solid;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.alert-item:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.3);
}

.alert-item.critical {
    border-left-color: #eb3349;
    background: linear-gradient(90deg, rgba(235, 51, 73, 0.1), transparent);
}

.alert-item.high {
    border-left-color: #F2994A;
    background: linear-gradient(90deg, rgba(242, 153, 74, 0.1), transparent);
}

.alert-item.medium {
    border-left-color: #4facfe;
    background: linear-gradient(90deg, rgba(79, 172, 254, 0.1), transparent);
}

.alert-item.low {
    border-left-color: #38ef7d;
    background: linear-gradient(90deg, rgba(56, 239, 125, 0.1), transparent);
}

.alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.alert-item.critical .alert-icon {
    background: rgba(235, 51, 73, 0.2);
    color: #eb3349;
}

.alert-item.high .alert-icon {
    background: rgba(242, 153, 74, 0.2);
    color: #F2994A;
}

.alert-item.medium .alert-icon {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
}

.alert-item.low .alert-icon {
    background: rgba(56, 239, 125, 0.2);
    color: #38ef7d;
}

.alert-title {
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.alert-meta {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ===== ENHANCED BUTTONS ===== */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-danger {
    background: var(--danger-gradient);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-danger);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: #9ca3af;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border-color: rgba(102, 126, 234, 0.3);
}

/* ===== QUICK ACTIONS ===== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.action-btn i {
    font-size: 1.75rem;
    color: #667eea;
}

.action-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

.action-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.action-btn.emergency {
    background: linear-gradient(135deg, rgba(235, 51, 73, 0.2), rgba(244, 92, 67, 0.1));
    border-color: rgba(235, 51, 73, 0.3);
}

.action-btn.emergency i {
    color: #eb3349;
    animation: pulse 2s infinite;
}

.action-btn.emergency:hover {
    background: linear-gradient(135deg, rgba(235, 51, 73, 0.3), rgba(244, 92, 67, 0.2));
    box-shadow: var(--glow-danger);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== SCENARIO CARDS ===== */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.scenario-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow), var(--glow-primary);
    border-color: rgba(102, 126, 234, 0.3);
}

.scenario-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-bottom: 1px solid var(--glass-border);
}

.scenario-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.scenario-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.scenario-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.scenario-body {
    padding: 1.5rem;
    flex: 1;
}

.scenario-description {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.scenario-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.625rem;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    color: #667eea;
}

.scenario-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.difficulty-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.difficulty-badge.beginner {
    background: rgba(56, 239, 125, 0.15);
    color: #38ef7d;
}

.difficulty-badge.intermediate {
    background: rgba(79, 172, 254, 0.15);
    color: #4facfe;
}

.difficulty-badge.advanced {
    background: rgba(242, 153, 74, 0.15);
    color: #F2994A;
}

.difficulty-badge.expert {
    background: rgba(235, 51, 73, 0.15);
    color: #eb3349;
}

/* ===== THREAT LEVEL INDICATOR ===== */
.threat-level {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.threat-badge {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    animation: threat-pulse 2s infinite;
}

.threat-badge.low {
    background: linear-gradient(135deg, rgba(56, 239, 125, 0.2), rgba(17, 153, 142, 0.2));
    color: #38ef7d;
    box-shadow: 0 0 15px rgba(56, 239, 125, 0.3);
}

.threat-badge.moderate {
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.2), rgba(242, 153, 74, 0.2));
    color: #F2C94C;
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.3);
}

.threat-badge.high {
    background: linear-gradient(135deg, rgba(242, 153, 74, 0.2), rgba(235, 51, 73, 0.2));
    color: #F2994A;
    box-shadow: 0 0 15px rgba(242, 153, 74, 0.3);
}

.threat-badge.critical {
    background: linear-gradient(135deg, rgba(235, 51, 73, 0.2), rgba(244, 92, 67, 0.2));
    color: #eb3349;
    box-shadow: 0 0 15px rgba(235, 51, 73, 0.3);
}

@keyframes threat-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== LOADING SCREEN ENHANCED ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark-1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.kosovo-emblem {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: emblem-glow 2s ease-in-out infinite;
    box-shadow: var(--glow-primary);
}

.kosovo-emblem i {
    font-size: 3.5rem;
    color: #fff;
}

@keyframes emblem-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.5); }
    50% { box-shadow: 0 0 60px rgba(102, 126, 234, 0.8); }
}

.loading-content h1 {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
}

.loading-content p {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: loading 2.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loading-text {
    color: #6b7280;
    font-size: 0.85rem;
}

/* ===== MODAL ENHANCED ===== */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal {
    position: relative;
    background: var(--bg-dark-2);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    animation: modal-in 0.3s ease-out;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.25rem;
    color: #fff;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #9ca3af;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(235, 51, 73, 0.2);
    color: #eb3349;
}

.modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* ===== NOTIFICATION ENHANCED ===== */
.notification-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-dark-2);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    min-width: 320px;
    animation: notification-in 0.3s ease-out;
    box-shadow: var(--glass-shadow);
}

@keyframes notification-in {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification.success {
    border-left: 4px solid #38ef7d;
}

.notification.error {
    border-left: 4px solid #eb3349;
}

.notification.warning {
    border-left: 4px solid #F2C94C;
}

.notification.info {
    border-left: 4px solid #4facfe;
}

.notification-icon {
    font-size: 1.25rem;
}

.notification.success .notification-icon { color: #38ef7d; }
.notification.error .notification-icon { color: #eb3349; }
.notification.warning .notification-icon { color: #F2C94C; }
.notification.info .notification-icon { color: #4facfe; }

.notification-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.notification-message {
    font-size: 0.9rem;
    color: #9ca3af;
}

.notification-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: auto;
}

.notification-close:hover {
    color: #fff;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.5s ease-out;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
