.support-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.support-btn i {
    margin-right: 8px;
}

.support-btn.patreon {
    background-color: #F96854;
}

.support-btn.kofi {
    background-color: #29ABE0;
}

.support-btn.paypal {
    background-color: #003087;
}

.support-btn:hover {
    opacity: 0.9;
}

.about-section, .team-section {
    background-color: var(--card-background);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-profile-image {
    border: 4px solid white;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.team-member {
    cursor: pointer;
    transition: transform 0.1s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

#team-member-modal .modal-content {
    max-width: 500px;
    background-color: var(--card-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


#team-member-modal .team-member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#team-member-modal .modal-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

#team-member-modal .modal-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    transform: scale(1.1);
}


#team-member-modal .modal-header-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
    width: 100%;
}

#team-member-modal h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#team-member-modal .modal-body {
    padding: 30px;
    color: var(--text-color);
}

#team-member-modal .member-info {
    margin-bottom: 30px;
}

#team-member-modal .member-info p {
    margin: 10px 0;
    font-size: 16px;
}


#team-member-modal .member-links {
    display: flex;
    gap: 15px;
}

#team-member-modal .contact-btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#team-member-modal .contact-btn i {
    margin-right: 8px;
}


#team-member-modal .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


#team-member-modal .contact-btn.twitch {
    background-color: #9146FF;
    color: white;
}

#team-member-modal .contact-btn.donate {
    background-color: #00A86B;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-bottom: 1rem;
}

.member-links {
    margin-top: 10px;
}

.member-links .contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.member-links .contact-btn i {
    margin-right: 5px;
}

.member-links .contact-btn.twitch {
    background-color: #9146FF;
}

.member-links .contact-btn.donate {
    background-color: #00A86B;
}

.member-links .contact-btn:hover {
    opacity: 0.9;
}
