@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700;900&display=swap');

:root {
    --bg-color: #050505;
    --card-bg: rgba(23, 23, 23, 0.7);
    --accent-color: #00f2ff; /* لون سماوي نيون هادي وشيك */
    --text-main: #ffffff;
    --text-dim: #a1a1aa;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Rubik', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}
body {
    background-color: #050505;
    background-image: 
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.15) 0px, transparent 50%), 
        radial-gradient(at 100% 100%, rgba(147, 51, 234, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.2;
    pointer-events: none;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    z-index: 100;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
}

/* أنيميشن الدخول */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
#user-photo {
    transition: transform 0.3s ease;
}
#user-photo:hover {
    transform: scale(1.1);
}
#logout-btn-fast {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#logout-btn-fast:hover {
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.1);
}
