@tailwind base;
@tailwind components;
@tailwind utilities;

/* تنظیمات کلی صفحه */
body {
    background-color: #0b0c10;
    color: #c5c6c7;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

/* افکت شیشه‌ای مدرن */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* مخفی کردن نوار اسکرول برای اسکرول افقی روان */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* انیمیشن درخشش دکمه‌ها */
.glow-button {
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.5);
}

/* استایل سفارشی اسکرول‌بار عمودی اصلی مرورگر */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0c10;
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e11d48;
}