body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121212;
    color: #e0e0e0;
}

.redirect-message {
    text-align: center;
    padding: 2rem;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: floatDown 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

a {
    color: #66b3ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@keyframes floatDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}