@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

body, html {
    height: 100%;
    margin: 0;
    font-size: 1em;
    font-family: "Anton", sans-serif;
    background: #450054;
    background: linear-gradient(90deg,rgba(69, 0, 84, 1) 0%, rgba(0, 32, 92, 1) 51%, rgba(91, 0, 128, 1) 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
    color: #fff;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}


header img {
    border-radius: 50%;
    width: 256px;
    height: 256px;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
    box-shadow: 0px 10px 15px 10px rgba(0,0,0,0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

header h1 {
    margin: 10px 0 5px;
    font-size: 5em;
    background: linear-gradient(90deg, #FD8234 0%, #FF1F56 17%, #A22680 36%, #FD8234 59%, #FF1F56 80%, #FD8234 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.5));
    border-bottom: solid 0px #ffffff;
    transition: all 0.3s;

}

header p {
	font-size: 1.2em;
    margin: 0 0 40px;
    color: #fff;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
    max-width: 400px;
}

.link-button {
    text-decoration: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    gap: 12px;
    background: linear-gradient(90deg, rgb(255, 31, 86), #FF9500);
    background-size: 200% 200%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
}

.gradtext{
	background: linear-gradient(90deg,rgba(69, 0, 84, 1) 0%, rgba(0, 32, 92, 1) 51%, rgba(91, 0, 128, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.link-button:nth-child(1) { animation-delay: 0.2s; }
.link-button:nth-child(2) { animation-delay: 0.4s; }
.link-button:nth-child(3) { animation-delay: 0.6s; }
.link-button:nth-child(4) { animation-delay: 0.8s; }
.link-button:nth-child(5) { animation-delay: 1s; }
.link-button:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.link-button:hover {
    background-position: right center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 30px rgba(255,31,86,0.5);
}

#particles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    pointer-events: none;
    filter: blur(22px);
}

@media (max-width: 500px) {
    .link-button {
        padding: 12px;
    }
}
