/* Discord Section */
.discord {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, #5865F2, #111);
    color: white;
    padding: 20px;
}

.discord-container {
    max-width: 700px;
    margin: 0 auto;
}

.discord h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.discord p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #dcdcdc;
}

.discord .modern-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    background: #5865F2;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

.discord .modern-button:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

/* Hero Buttons Section */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.hero-buttons .modern-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

.hero-buttons .modern-button:hover {
    background: linear-gradient(135deg, #4752C4, #5865F2);
    transform: translateY(-2px);
}

/* Flickering flame effect */
.modern-button:hover {
    background: linear-gradient(135deg, #ff5500, #ff3300);
    box-shadow: 0 0 15px rgba(255, 50, 0, 1), 0 0 30px rgba(255, 0, 0, 0.9);
    transform: scale(1.05);
    animation: flicker 1s infinite alternate ease-in-out;
}

/* Flicker animation */
@keyframes flicker {
    from {
        box-shadow: 0 0 15px rgba(3, 63, 245, 0.5), 0 0 30px rgba(84, 97, 246, 0.5);
    }

    to {
        box-shadow: 0 0 20px rgb(67, 114, 255, 0.5), 0 0 40px rgba(78, 122, 252, 0.5);
    }
}