.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007cde 0%, #00a3ff 100%);
    display: none; /* Changed from flex to none */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    color: white;
    font-family: 'Inter', sans-serif;
}

.loading-text {
    font-size: 2.5rem;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.loading-text.show {
    opacity: 1;
    transform: translateY(0);
}

.arabic {
    font-family: 'Traditional Arabic', 'Amiri', serif;
    font-size: 3.5rem;
    direction: rtl;
}

.translation {
    font-size: 1.8rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}