/* style.css */
body {
    background-color: #0F172A; /* গ্লোবাল ডার্ক ব্যাকগ্রাউন্ড (slate-900) */
    color: #F8FAFC; /* হালকা সাদা টেক্সট (slate-50) */
    scroll-behavior: smooth;
}

.bg-primary { 
    background-color: #0057B8; 
}

.bg-accent { 
    background-color: #ED1C24; 
}

.text-primary { 
    color: #38BDF8; 
} 

.text-accent { 
    color: #F87171; 
}

/* কাস্টম স্ক্রোলবার ডিজাইন (ঐচ্ছিক সৌন্দর্য) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #090d16;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}
