.contact-header {
    text-align: center;
    padding: 0 20px 40px;
}

.contact-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
}

/* Repurposing the form container into a card */
.contact-card {
    background: #1e1e1e;
    border: 1px solid #30363d;
    padding: 60px 40px;
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto 100px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: center;
}

.discord-icon-large {
    font-size: 4rem;
    color: #5865F2; /* Official Discord Blurple */
    margin-bottom: 20px;
    display: block;
}

.contact-card h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.contact-card p {
    color: #adbac7;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* The Button */
.join-btn {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 16px 20px;
    background: var(--accent-green);
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(63, 185, 80, 0.3);
}

.join-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(63, 185, 80, 0.4);
    color: #fff;
}