* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Arad', sans-serif;
    background: #0b0b1a; /* رنگ پس‌زمینه قدیمی */
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: rgba(110, 231, 183, 0.25);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}