
.floating-discord-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary, #8a2be2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    text-decoration: none;
    overflow: hidden;
}

.floating-discord-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.floating-discord-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(138, 43, 226, 0.4);
}

.floating-discord-btn:hover:before {
    transform: scale(1);
}

.floating-discord-btn i {
    position: relative;
    z-index: 1;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(138, 43, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
    }
}

.floating-discord-btn {
    animation: pulse 2s infinite;
}


@media (max-width: 768px) {
    .floating-discord-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}
