@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap');

:root {
    --y-purple: #6B2C91;
    --y-lime: #A3D400;
    --y-accent: #C1E23B;
    --y-dark: #191022;
    --y-light: #f7f6f8;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--y-light);
    color: var(--y-dark);
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.y-gradient {
    background: linear-gradient(135deg, var(--y-purple) 0%, #4a1d64 100%);
}

.y-shadow {
    box-shadow: 0 8px 30px rgba(107, 44, 145, 0.15);
}

.y-lime-shadow {
    box-shadow: 0 0 20px rgba(163, 212, 0, 0.3);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--y-light);
}
::-webkit-scrollbar-thumb {
    background: var(--y-purple);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4a1d64;
}

/* Animation utilities */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}