.sps-wait-container {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px 32px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.sps-wait-icon {
    font-size: 56px;
    color: #635bff;
    margin-bottom: 16px;
}

.sps-wait-title {
    font-size: 20px;
    font-weight: 600;
    color: #635bff;
    margin-bottom: 8px;
}

.sps-wait-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
}

.sps-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.sps-spinner {
    font-size: 48px;
    color: #635bff;
    animation: sps-spin 2s linear infinite;
}

@keyframes sps-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
