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

body {
    font-family: "Outfit", sans-serif;
    background-color: #0a0a0f;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("../img/background.webp");
    background-size: cover;
    background-position: center
}

.background-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, .6);
    backdrop-filter: blur(2px)
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    mix-blend-mode: screen
}

.container {
    position: relative;
    z-index: 10;
    padding: 20px;
    width: 100%;
    max-width: 600px
}

.glass-card {
    background: hsla(0, 0%, 100%, .05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .5), 0 0 20px rgba(0, 243, 255, .2);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: float 6s ease-in-out infinite
}

.glass-card .content {
    transform: translateZ(20px);
    text-align: center
}

.glass-card .content .avatar-wrapper {
    margin-bottom: 1.5rem
}

.glass-card .content .avatar-wrapper .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 243, 255, .5);
    box-shadow: 0 0 25px rgba(0, 243, 255, .4);
    transition: transform .3s ease
}

.glass-card .content .avatar-wrapper .avatar:hover {
    transform: scale(1.05) rotate(5deg);
    border-color: #ff007f;
    box-shadow: 0 0 35px rgba(255, 0, 127, .6)
}

header {
    margin-bottom: 2rem
}

header .badges {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem
}

header .badges .badge {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00f3ff;
    border: 1px solid rgba(0, 243, 255, .3);
    padding: .5rem 1rem;
    border-radius: 50px;
    background: rgba(0, 243, 255, .1);
    transition: all .3s ease
}

header .badges .badge:hover {
    background: rgba(0, 243, 255, .2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, .2)
}

header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #00f3ff, #ff007f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.3))
}

.description-wrapper {
    margin-bottom: 3rem
}

.description-wrapper p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: hsla(0, 0%, 100%, .7);
    margin-bottom: .5rem
}

.description-wrapper .intro .highlight {
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #ff007f
}

.description-wrapper .sub-intro .text-gradient {
    background: linear-gradient(90deg, #fff, #00f3ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    font-weight: 700
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, #00f3ff, #ff007f);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all .3s ease;
    box-shadow: 0 10px 20px rgba(255, 0, 127, .3);
    border: 1px solid hsla(0, 0%, 100%, .2)
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 127, .5)
}

.cta-button .icon {
    font-size: 1.2rem
}

@keyframes float {
    0% {
        transform: translateY(0px) perspective(1000px)
    }

    50% {
        transform: translateY(-15px) perspective(1000px)
    }

    100% {
        transform: translateY(0px) perspective(1000px)
    }
}

@media(max-width: 768px) {
    body {
        display: block;
        padding: 40px 20px
    }

    .container {
        padding: 0
    }

    .glass-card {
        padding: 2rem 1.5rem;
        margin: 0 auto
    }

    header h1 {
        font-size: 2.5rem
    }

    .badges {
        gap: .5rem
    }

    .badges .badge {
        font-size: .7rem;
        padding: .4rem .8rem
    }
}

.legal-info {
    margin-top: 2.5rem;
    text-align: center;
    color: #fff;
    font-weight: 300;
    padding: 0 1rem;
    animation: fadeIn 1s ease-out .5s both
}

.legal-info p {
    margin-bottom: .5rem;
    font-size: .95rem
}

.legal-details {
    font-size: .8rem;
    opacity: .8;
    letter-spacing: .5px
}

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

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