/* Discord Link in Nav */
.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7289da !important;
    /* Discord Brand Color */
    font-size: 2.2rem !important;
    /* Visual match for button height */
    margin-left: 10px;
    text-decoration: none;
    transition: 0.3s;
    gap: 8px;
    /* Space between text and icon */
}

.discord-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 0.9rem;
    /* Smaller font size requested */
    font-weight: 700;
    color: #e0e0e0;
    /* Default text color */
}

.discord-link:hover .discord-text {
    color: #fff;
    text-shadow: 0 0 5px #7289da;
}


.discord-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px #7289da;
    transform: scale(1.1) rotate(5deg);
}

.discord-link::after {
    display: none !important;
    /* Disable underline effect loop */
}