.axs-redirect-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.axs-redirect-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: fadeIn 0.5s ease-in;
}

.axs-redirect-content h2 {
    color: #333;
    font-size: 26px;
    margin-bottom: 20px;
}

.axs-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

.axs-icon {
    color: #0073aa;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

.axs-tips {
    color: #555;
    font-size: 14px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.axs-countdown {
    color: #0073aa;
    font-weight: 600;
}

.axs-manual-link {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    animation: slideUp 0.5s ease-in 3s forwards;
    opacity: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.axs-manual-link:hover {
    background: #005177;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.axs-manual-link i {
    margin-right: 8px;
}

.axs-warning {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}