body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #7e02dc, #000000);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-size: 3em;
    margin-bottom: 30px;
    background: linear-gradient(270deg, #ff6ec4, #7873f5, #4ade80, #facc15, #ff6ec4);
    background-size: 1000% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 10s ease infinite;
    opacity: 0;
    animation-name: fadeInTitle, gradientText;
    animation-duration: 1.5s, 15s;
    animation-delay: 0s, 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1, infinite;
}

.underline {
    display: inline-block;
    background-image: linear-gradient(270deg, #ff6ec4, #7873f5, #4ade80, #facc15, #ff6ec4);
    background-size: 1000% 100%;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientTextUnderline 15s ease infinite;
    text-decoration: none;
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientText {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

@keyframes gradientTextUnderline {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

#button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    background-color: transparent;
    color: white;
    transform: scale(1.1);
}

.button:active {
    transform: scale(1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}