/* ==========================================================================
   HELP - STAFF
   ========================================================================== */

.staff-page {
    padding: 8rem 10% 4rem;
    min-height: 100vh;
}

.staff-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.staff-section {
    margin-bottom: 5rem;
}

.section-staff {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.section-staff h2 {
    font-size: 1.8rem;
    color: var(--primary);
    white-space: nowrap;
}

.section-staff h2 i {
    color: var(--accent);
    margin-right: 10px;
}

.section-staff .line {
    width: 100%;
    height: 1px;
    background: rgba(255, 247, 247, 0.3);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.staff-grid.centered {
    display: flex;
    justify-content: center;
}

.staff-card {
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; 
}

.staff-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-muted);
    border: 4px solid var(--button);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.avatar-placeholder.main-dev {
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    color: var(--bg-body);
}

.role-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Role Color Leader */
.role-badge.dev { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.role-badge.co-dev { background: rgba(65, 105, 225, 0.12); color: #2242a3;}

/* Role Color Help Developer */
.role-badge.helper { background: rgba(229, 41, 73, 0.12); color: #b3122d; }

/* Role Color Testers */
.role-badge.tester_lead { background: rgba(32, 102, 148, 0.14); color: #2d7fb8; }
.role-badge.tester { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

/* Role Color Support */
.role-badge.support { background: rgba(233, 30, 99, 0.12); color: #c2185b; }
.role-badge.support-lead { background: rgba(173, 20, 87, 0.14); color: #8e1248; }

/* Role Color Designer & Social Media */
.role-badge.designer { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.role-badge.social-media {background: rgba(228, 241, 141, 0.18); color: #5a7a16;}

/* Role Color Product Management */
.role-badge.pm-lead { background: rgba(14, 165, 233, 0.12); color: #0284c7; }
.role-badge.pm { background: rgba(6, 182, 212, 0.12); color: #0891b2; }

.staff-info h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.staff-info .bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fav-game {
    margin-top: auto; 
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    font-size: 0.9rem;
}

.fav-game span {
    color: var(--text-muted);
    margin-right: 5px;
}

.join-team {
    text-align: center;
    margin-top: 4rem;
    font-weight: 600;
    color: var(--text-muted);
}

.join-team a {
    text-decoration: none;
}