/* ============================================
   GLASSMORPHISM STYLES
   ============================================ */

/* Glass Card - Cartes sans flou (fond net) */
.glass-card {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2) !important;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

/* Dark mode pour glass-card */
.dark .glass-card {
    background: rgba(31, 41, 55, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4) !important;
}

.dark .glass-card::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Glass Icon */
.glass-icon {
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.dark .glass-icon {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Glass Button */
.glass-button {
    background: linear-gradient(135deg, rgba(245, 48, 3, 0.9) 0%, rgba(246, 21, 0, 0.9) 100%) !important;
    border: 1px solid rgba(245, 48, 3, 0.4) !important;
    box-shadow: 0 4px 15px rgba(245, 48, 3, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.glass-button:hover {
    background: linear-gradient(135deg, rgba(245, 48, 3, 1) 0%, rgba(246, 21, 0, 1) 100%) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 25px rgba(245, 48, 3, 0.5) !important;
    border-color: rgba(245, 48, 3, 0.6) !important;
}

.glass-button:active {
    transform: translateY(0) scale(0.98) !important;
}

/* Glass Alert */
.glass-alert {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.dark .glass-alert {
    background: rgba(31, 41, 55, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Assurer que le body a un background fixe */
body {
    background-attachment: fixed !important;
    background-size: cover !important;
}

