/* 🚀 WOR REBOOT SYSTEM */

/* تصفير الهوامش والـ Padding */
*, *::before, *::after {
    box-sizing: border-box; /* عشان الأحجام تضل دقيقة */
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #f1f5f9;
    text-align: left;
    background-color: #0f172a;
}

/* تصفير الروابط والأزرار */
a {
    color: inherit;
    text-decoration: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

/* حماية الصور */
img {
    vertical-align: middle;
    border-style: none;
}