* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

body[dir="rtl"] {
    direction: rtl;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #dc2626, #ea580c, #eab308);
    border-radius: 6px;
}


/* Text effects */
.text-glow {
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5),
                 0 0 20px rgba(220, 38, 38, 0.3),
                 0 0 30px rgba(220, 38, 38, 0.2);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}

/* Loading indicator */
.loading {
    border: 4px solid rgba(220, 38, 38, 0.3);
    border-top-color: #dc2626;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

