/* Estilos para la página de Staff */

.staff-section {
    min-height: calc(100vh - 200px);
    padding: 8rem 0 4rem;
}

.staff-header {
    text-align: center;
    margin-bottom: 4rem;
}

.staff-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.staff-header p {
    font-size: 1.25rem;
    color: var(--gray);
}

.staff-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title i {
    color: var(--primary);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(129, 71, 242, 0.2);
}

.staff-avatar {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    overflow: visible;
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.staff-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 3px solid var(--darker);
    z-index: 10;
}

.staff-badge.admin {
    background: linear-gradient(135deg, #FF9C2B 0%, #f2242e 100%);
}

.staff-badge.mod {
    background: linear-gradient(135deg, #10B981 0%, #8147f2 100%);
}

.staff-badge.dev {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}

.staff-badge.builder {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

.staff-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.staff-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.staff-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.staff-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.staff-info span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.staff-info i {
    color: var(--primary);
}

.staff-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(129, 71, 242, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(129, 71, 242, 0.2);
    margin-top: 4rem;
}

.staff-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.staff-cta p {
    color: var(--gray);
    margin-bottom: 2rem;
}
