* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.download-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

h1 {
    color: #3498db;
    font-size: 28px;
    margin-bottom: 20px;
}

.progress-bar {
    height: 30px;
    background-color: #d6e7f5;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #a9c6de;
}

.progress {
    height: 100%;
    width: 30%;
    background: linear-gradient(to right, #6a8caa, #a9c6de);
}

p {
    color: #555;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
}

#ready-text {
    font-weight: bold;
    margin-bottom: 25px;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 50px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

/* RTL support for Arabic */
html[dir="rtl"] p, 
html[dir="rtl"] h1 {
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    p {
        font-size: 16px;
    }
    
    button {
        padding: 10px 40px;
    }
}