body {
    font-family: 'Prompt', sans-serif;
    background: #050505;
    color: #fff
}
.glass {
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08)
}

.glow {
    box-shadow: 0 0 30px rgba(255, 79, 163, .35)
}

.float {
    animation: float 4s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.hero-bg {
    background:
        radial-gradient(circle at top right, rgba(255, 79, 163, .25), transparent 40%),
        radial-gradient(circle at left center, rgba(255, 79, 163, .10), transparent 35%),
        #050505;
}

.footer-social {
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    color: #9ca3af;

    transition: .3s;
}

.footer-social:hover {

    transform: translateY(-3px);

    border-color: rgba(255, 0, 140, .4);

    color: #fff;

    background: rgba(255, 0, 140, .1);
}

.faq-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
}

.faq-item:hover {
    border-color: rgba(255, 0, 140, .3);
}

.faq-title {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: white;
    font-weight: 600;
    font-size: 18px;
}

.faq-title::-webkit-details-marker {
    display: none;
}

.faq-title i {
    transition: .3s;
    color: #f472b6;
}

details[open] .faq-title i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 24px 24px;
    color: #9ca3af;
    line-height: 1.8;
}