@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --text: #d2d2d2;
    --accent: #007cf0;
}

body {
    padding: 0;
    margin: 0;
    background: radial-gradient(circle at bottom, #0927d2 , #1d2099 25%, #1e1864 50%, #161033 75%, #000000 100%);
    background-color: #000000;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-top: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.circle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.circle-container div {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite alternate;
}

.circle1 {
    width: 300px;
    height: 300px;
    background-color: #845ec2;
    top: 100px;
    left: 100px;
    animation-delay: 0s;
}

.circle2 {
    width: 250px;
    height: 250px;
    background-color: #296073;
    top: 300px;
    left: -50px;
    animation-delay: 5s;
}

.circle3 {
    width: 250px;
    height: 250px;
    background-color: #3596B5;
    top: 300px;
    left: 400px;
    animation-delay: 10s;
}

.circle4 {
    width: 180px;
    height: 180px;
    background-color: #adc5cf;
    top: 50px;
    left: -40px;
    animation-delay: 15s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.05);
    }
    100% {
        transform: translate(-25px, 25px) scale(1.10);
    }
}


.logo img {
    width: 180px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px #000;
    margin-bottom: 20px;
}

.title {
    margin: 10px 0;
    font-size: 2.8rem;
    letter-spacing: 1.3px;
    font-weight: 650;
}

.cta {
    font-size: 1.3rem;
}

.cta a {
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.075);
    padding: 5px 10px;
    border-radius: 10px;
    transition: color 0.2s ease, border 0.3s ease;
    border: transparent;
    justify-content: center;
    align-items: center;
}

.cta a:hover {
    color: rgba(255, 255, 255, 0.8);
    border: 1.6px solid rgba(255, 255, 255, 0.3);
}

.subtitle {
    font-size: 1.4rem;
    font-family: 'Cormorant', sans-serif;
    font-style: italic;
    margin-bottom: 30px;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}

.links-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    height: 56px;
    font-weight: 550;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 244, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border 0.3s ease;
    color: var(--text);
    text-decoration: none;
}

.links-container a:hover {
    transform: scale(1.08);
    border: 1px solid rgba(255, 255, 244, 0.4);
}

.fa-bolt {
    color: #00aaff;
}

.fa-discord {
    color: #5865F2;
}

.fa-x-twitter {
    color: #f2f2f2;
}

.footer {
    margin-top: 50px;
    font-size: 1.1rem;
}

#currentYear {
    font-weight: 600;
}

@media (max-width: 600px) {
    .logo img {
        width: 140px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .links-container {
        gap: 12px;
    }

    .links-container a {
        height: 48px;
        font-size: 0.95;
    }

    .footer {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .links-container a {
        height: 44px;
        font-size: 0.9rem;
    }

    .footer {
        font-size: 1rem;
    }
}