body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    color: #1e293b;
}
.redirect-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 400px;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
h2 { margin: 0 0 0.5rem; font-size: 1.5rem; color: #0f172a; }
p { margin: 0 0 1.5rem; color: #64748b; font-size: 0.95rem; line-height: 1.5; }
.redirect-hint {
    font-size: 0.8rem;
    color: #94a3b8 !important;
}
.redirect-link {
    color: #6366f1;
    text-decoration: none;
}
.redirect-link:hover {
    text-decoration: underline;
}
.cancel-btn {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
}
.cancel-btn:hover { text-decoration: underline; }
