﻿/* ==========================================================================
   Søppeltaxi - Lightweight Custom Styles
   ========================================================================== */

/* 1. التمرير السلس */
html {
    scroll-behavior: smooth;
}

/* 2. حركات الظهور (Animations) */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3. شريط التمرير المخصص (Scrollbar) للثيم الداكن */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0F172A; 
}

::-webkit-scrollbar-thumb {
    background: #1E293B; 
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb:hover {
    background: #3B82F6; 
}

/* 4. لون تحديد النصوص */
::selection {
    background-color: #3B82F6;
    color: #FFFFFF;
}
