.discord-cta {
    background: linear-gradient(135deg, var(--blue-3) 10%, var(--red-3) 90%);
    padding: 40px 20px;
    border-top: 1px solid var(--red-2);
    border-bottom: 1px solid var(--red-2);
    box-sizing: border-box;
}

.discord-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
}

.discord-content {
    flex: contain;
    min-width: 280px;
    text-align: left;
}

.discord-content h2 {
/*    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;*/
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.discord-content p {
    color: #b9bbbe;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.discord-action {
    display: flex;
    align-items: center;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #5865F2; /* Official Discord Blurple */
    color: #ffffff;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.discord-btn:active {
    transform: translateY(0);
}

.discord-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .discord-container {
        flex-direction: column;
        text-align: center;
    }
    .discord-content {
        text-align: center;
    }
    .discord-btn {
        width: 100%;
        justify-content: center;
    }
}