/* =====================================================
   Notificaciones.css — Modales de notificación al cargar
   ===================================================== */

.notif-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.0);
  backdrop-filter: blur(0);
  transition: background .3s, backdrop-filter .3s;
  padding: 20px;
}
.notif-overlay.is-visible {
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

.notif-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(165deg, #1a1f2e 0%, #131720 100%);
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transform: translateY(30px) scale(.95);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s;
}
.notif-overlay.is-visible .notif-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Header */
.notif-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
}
.notif-header-icon {
  font-size: 1.5rem;
}

/* Body */
.notif-body {
  padding: 18px 24px 20px;
}
.notif-camp-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.notif-camp-tipo {
  font-size: .95rem;
  color: rgba(148,163,184,.8);
  margin-bottom: 6px;
}
.notif-camp-fecha {
  font-size: .9rem;
  color: rgba(148,163,184,.65);
  margin-bottom: 6px;
}
.notif-camp-jugadores {
  font-size: .9rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(74,222,128,.08);
  border-radius: 10px;
  display: inline-block;
}

/* Actions */
.notif-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(148,163,184,.1);
}

.notif-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: .9rem;
  font-family: inherit;
  text-align: center;
  transition: background .15s;
  border-top: 1px solid rgba(148,163,184,.06);
}
.notif-btn:first-child { border-top: none; }
.notif-btn:last-child { border-radius: 0 0 20px 20px; }

.notif-btn-accept {
  color: #60a5fa;
  font-weight: 700;
  font-size: .95rem;
}
.notif-btn-accept:hover { background: rgba(96,165,250,.08); }

.notif-btn-mute-one {
  color: rgba(148,163,184,.6);
  font-size: .82rem;
}
.notif-btn-mute-one:hover { background: rgba(148,163,184,.06); }

.notif-btn-mute-all {
  color: rgba(148,163,184,.4);
  font-size: .78rem;
}
.notif-btn-mute-all:hover { background: rgba(148,163,184,.04); }
