/* Custom font family for the entire page */
body {
    font-family: 'Inter', sans-serif;
}

/* Define a custom color from the user's screenshot */
.bg-deep-purple {
    background-color: #1A1D2B;
}

/* Shine animation for the button */
@keyframes shine {
        0% {
            transform: translateX(-100%) rotate(45deg);
        }
        100% {
            transform: translateX(100%) rotate(45deg);
        }
    }

    .animate-shine {
        animation: shine 2s infinite linear;
    }

/* New CSS for the Discord button hover effect */
.group:hover .absolute {
    opacity: 1;
}