.discord-cta {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
}

.discord-cta-inner {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(22, 29, 47, 0.85) 100%);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 24px;
    padding: 45px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.discord-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.discord-icon {
    width: 60px;
    height: 60px;
    fill: #5865F2;
    filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.3));
    transition: transform 0.3s ease;
}

.discord-cta-inner:hover .discord-icon {
    transform: scale(1.1);
}

.discord-name {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-white);
}

.discord-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.discord-content h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    text-align: right;
    max-width: 350px;
    line-height: 1.3;
}

.btn-discord {
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(88, 101, 242, 0.2); 
}

@media (max-width: 850px) {
    .discord-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .discord-content {
        align-items: center;
    }
    
    .discord-content h2 {
        text-align: center;
        font-size: 1.1rem;
    }

    .discord-name {
        font-size: 1.8rem;
    }
}