body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    font-family: sans-serif;
    overflow: hidden;
}

.hub-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.animated-chad {
    width: 250px;
    height: auto;
    border-radius: 12px;
    opacity: 0;
    transform: scale(1.5);
    filter: blur(15px);
    animation: focusIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes focusIn {
    0% {
        opacity: 0;
        transform: scale(1.5);
        filter: blur(15px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.quick-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

.quick-links a {
    color: #7300ff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    border: 1px solid #7300ff;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(115, 0, 255, 0.1);
}

.quick-links a:hover {
    background: #7300ff;
    color: #ffffff;
    transform: scale(1.05);
}

@keyframes flyIn {
    0% {
        opacity: 0;
        transform: translateY(-60vh) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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