/* ==========================================================================
   NOWEY — staff/style.css
   Estilos EXCLUSIVOS de la página Staff. Lo compartido está en global.css.
   ========================================================================== */

@import url('../global.css');

/* ==========================================================================
   SECCIÓN STAFF
   ========================================================================== */
.staff-section {
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0 30px;
}

/* Tarjeta contenedora principal */
.staff-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

/* Acento decorativo esquina */
.staff-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,183,255,.08), transparent 70%);
  pointer-events: none;
}
.staff-card::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,123,0,.07), transparent 70%);
  pointer-events: none;
}

/* Línea superior degradada */
.staff-card-inner { position: relative; z-index: 2; }

.staff-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.staff-subtitle {
  color: var(--text-muted);
  font-size: .9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

/* ==========================================================================
   TABLA DE MIEMBROS
   ========================================================================== */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Fila de un miembro */
.staff-member {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(0,183,255,.1);
  background: rgba(255,255,255,.02);
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.staff-member::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--member-color, var(--blue));
  border-radius: 3px;
}
.staff-member:hover {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  transform: translateX(4px);
}

/* Avatar con inicial */
.staff-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,0,0,.4);
  border: 2px solid var(--member-color, var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--member-color, var(--blue));
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0,0,0,.4);
}

/* Info del miembro */
.staff-info { flex: 1; min-width: 0; }
.staff-nick {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}
.staff-name {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Badge de rol */
.staff-role {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--member-color, var(--blue));
  color: var(--member-color, var(--blue));
  white-space: nowrap;
}

/* Indicador de estado */
.staff-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.staff-status .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.staff-status .dot.offline {
  background: #555;
  box-shadow: none;
}

/* ==========================================================================
   NOTA AL PIE DE LA TARJETA
   ========================================================================== */
.staff-footer-note {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,183,255,.1);
  color: var(--text-muted);
  font-size: .9rem;
  text-align: center;
  line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .staff-section { margin-top: 30px; padding: 0 15px; }
  .staff-card { padding: 35px 25px; }
  .staff-title { font-size: 2rem; }
  .staff-member { gap: 14px; padding: 16px; }
  .staff-role { display: none; }
  .staff-status span { display: none; }
}
