@import url('https://v1.fontapi.ir/css/Vazir');

body {
    font-family: 'Vazir', sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* افکت کارت‌های شیشه‌ای */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

/* طراحی دکمه‌ها */
.btn-custom {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary-custom {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    border: none;
    color: white;
}

.btn-primary-custom:hover {
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    transform: scale(1.05);
    color: white;
}

/* طراحی فرم‌ها */
.form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* دکمه ورود مدیریت */
.admin-login {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    z-index: 10;
}

.admin-login:hover { color: white; }

/* صفحه لودینگ (هنگام ساخت دیتابیس) */
#loadingOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 32, 39, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}