/* Hover Effects for Buttons */
.cta-buttons .btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-buttons .btn.discord:hover {
    transform: scale(1.1);
    background-color: #5044c6;
}

.cta-buttons .btn.forum:hover {
    transform: scale(1.1);
    background-color: #d4a700;
}

/* Rain Effect */
#rain-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.rain-drop {
    position: absolute;
    width: 2px;
    height: 10px;
    background: #7289da;
    opacity: 0.7;
    animation: fall 1.5s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Lava Effect */
#lava-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.lava-bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff4500;
    border-radius: 50%;
    opacity: 0.7;
    animation: bounce 4s infinite ease-in-out, rise 2s infinite linear;
}

@keyframes bounce {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(100px, -100px); }
    50% { transform: translate(-100px, 200px); }
    75% { transform: translate(50px, -150px); }
}

@keyframes rise {
    0% { transform: translateY(100%); opacity: 0.7; }
    100% { transform: translateY(-100%); opacity: 0; }
}
