* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #add3fe, #dff1ff);

    min-height: 100dvh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow-x: hidden;
}

.background {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.background::before,
.background::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    filter: blur(80px);
}

.background::before {
    width: 350px;
    height: 350px;
    top: 10%;
    left: 10%;
    animation: float 8s infinite ease-in-out;
}

.background::after {
    width: 450px;
    height: 450px;
    right: 10%;
    bottom: 10%;
    animation: float 10s infinite ease-in-out;
}

.container {
    position: relative;
    z-index: 2;

    text-align: center;

    padding: 60px;

    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);

    border-radius: 25px;

    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    animation: fadeIn 1s ease;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;

    animation: floatLogo 3s ease-in-out infinite;

    filter: drop-shadow(0 0 25px rgba(173, 211, 254, 0.9));
}

h1 {
    font-size: 3rem;
    color: #1d3557;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #355070;
    margin-bottom: 35px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;

    padding: 15px 30px;

    border-radius: 12px;

    font-weight: 600;

    transition: 0.3s ease;

    display: flex;
    align-items: center;
    gap: 10px;
}

.sollicitatie-btn {
    background: white;
    color: #1d3557;
}

.discord-btn {
    background: #5865F2;
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
}

.hero-footer {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 3;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(173, 211, 254, 0.08);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.15);

    box-shadow:
        0 0 25px rgba(173, 211, 254, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.08);

    color: rgba(255,255,255,.9);

    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.hero-footer:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.25);

    transform: translateX(-50%) translateY(-2px);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {

    body {
        min-height: 100vh;
        height: auto;

        overflow-y: auto;
        overflow-x: hidden;

        padding: 20px;
    }

    .container {

        width: 100%;

        padding: 35px 25px;

        border-radius: 20px;
    }

    .logo img {

        width: 110px;
        height: 110px;
    }

    h1 {

        font-size: 2rem;

        line-height: 1.2;
    }

    p {

        font-size: 1rem;

        margin-bottom: 25px;
    }

    .buttons {

        flex-direction: column;

        width: 100%;
    }

    .btn {

        width: 100%;

        justify-content: center;

        padding: 16px;
    }

    .hero-footer {

        position: fixed;

        bottom: 15px;
        left: 50%;

        transform: translateX(-50%);

        width: calc(100% - 30px);

        max-width: 400px;

        text-align: center;

        font-size: 0.75rem;

        padding: 10px 15px;

        border-radius: 15px;
    }

    .hero-footer:hover {
        transform: translateX(-50%);
    }

    .background::before {

        width: 220px;
        height: 220px;
    }

    .background::after {

        width: 260px;
        height: 260px;
    }
}