@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background: url('https://huggingface.co/spaces/timdude/vintageflipper-monochrome-empire/resolve/main/images/WhatsApp%20Image%202025-12-28%20at%2015.12.07.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    position: relative;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}
i {
    color: white;
}
a[href^="https://discord"]:hover {
    transform: translateY(-2px) rotate(10deg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}
/* Animation for the coming soon text */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.animate-pulse-slow {
    animation: pulse 3s infinite;
}