html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 1rem;
}

.logo-animation {
    max-width: 90%; 
    max-height: 50vh;
    object-fit: contain;
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #e0e0e0;
}

.title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.title a:hover {
    color: #a0a0a0;
}

.squircle-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;  
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #e0e0e0;
    text-decoration: none;
    box-shadow: 0 0 1rem rgba(228, 228, 228, 0.4);
    transition: transform 0.2s ease;
}

.squircle-link:hover {
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .title {
        font-size: 1.8rem;
    }
    .main-content {
        gap: 2rem;
    }
}
