/* Universal Redirect Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.container {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 48px 32px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 20px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-inverse);
    font-weight: bold;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}
h1 {
    font-size: 28px;
    color: #1A202C;
    margin-bottom: 12px;
    font-weight: 700;
}
.subtitle {
    color: #718096;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
}
.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #E2E8F0;
    border-top-color: #667EEA;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.status {
    color: #4A5568;
    font-size: 15px;
    margin-bottom: 32px;
    font-weight: 500;
}
.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: var(--text-inverse);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}
.btn-secondary {
    background: #F7FAFC;
    color: #2D3748;
    border: 2px solid #E2E8F0;
}
.btn-secondary:hover {
    background: #EDF2F7;
    border-color: #CBD5E0;
}
.icon {
    width: 24px;
    height: 24px;
}
.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #A0AEC0;
    font-size: 14px;
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E2E8F0;
}
.divider::before { margin-right: 12px; }
.divider::after { margin-left: 12px; }
.web-link {
    color: #667EEA;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.web-link:hover { text-decoration: underline; }
@media (max-width: 480px) {
    .container { padding: 36px 24px; }
    h1 { font-size: 24px; }
    .subtitle { font-size: 14px; }
}
