/* استایل‌های عمومی */
body {
    font-family: 'Arial', sans-serif;
    display: flex; /* برای مرکز قرار دادن محتوا */
    justify-content: center; /* تراز افقی */
    align-items: center; /* تراز عمودی */
    min-height: 100vh; /* حداقل ارتفاع viewport */
    margin: 0;
    background-color: #f0f2f5; /* رنگ پس‌زمینه روشن */
    color: #333;
    text-align: center;
    direction: rtl; /* برای راست‌چین کردن متن فارسی */
}

.container {
    background-color: #ffffff;
    padding: 40px 60px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%; /* عرض واکنش‌گرا */
}

h1 {
    color: #007bff;
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.5em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* استایل برای انیمیشن اسپینر */
.spinner {
    border: 8px solid rgba(0, 123, 255, 0.2); /* رنگ خاکستری روشن */
    border-top: 8px solid #007bff; /* رنگ آبی */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite; /* انیمیشن چرخش */
    margin: 30px auto 0 auto; /* مرکز قرار دادن اسپینر */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
