/* RadiTara Gateway Front Styles - v2.1.0 */

.tara-gateway {
    max-width: 520px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: inherit;
    direction: rtl;
}

.tara-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #eef0f3;
}

.tara-card__icon {
    margin-bottom: 20px;
}

.tara-card__icon--error svg circle,
.tara-card__icon--error svg path {
    stroke: #dc3545;
}

.tara-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.tara-card__desc {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.tara-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.tara-spinner__dot {
    width: 10px;
    height: 10px;
    background: #0d6efd;
    border-radius: 50%;
    animation: tara-bounce 1.2s infinite ease-in-out both;
}

.tara-spinner__dot:nth-child(1) { animation-delay: -0.32s; }
.tara-spinner__dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes tara-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.tara-btn {
    min-width: 180px;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.tara-hint {
    font-size: 0.85rem;
    color: #8a94a6;
    margin: 16px 0 8px;
}

.tara-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tara-actions--center {
    justify-content: center;
}

.tara-error-box {
    background: #fff5f5;
    border: 1px solid #f5c2c7;
    color: #842029;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 0 0 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: right;
}

.tara-notice {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px dashed #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: right;
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.6;
}

.tara-notice .material-icons {
    font-size: 18px;
    color: #0d6efd;
    flex-shrink: 0;
    margin-top: 2px;
}

.tara-card--error .tara-card__title {
    color: #b02a37;
}

@media (max-width: 576px) {
    .tara-card {
        padding: 28px 18px;
    }
    .tara-card__title {
        font-size: 1.15rem;
    }
}
