/* Бекдроп */
.nmcsp-backdrop{
  position:fixed; inset:0; display:grid; place-items:center;
  background:rgba(0,0,0,.6);
  z-index:999999; opacity:0; transition:opacity .25s ease;
}
.nmcsp-backdrop.nmcsp-show{ opacity:1; }

/* Модалка (ніжна, з blur) */
.nmcsp-modal{
  position:relative;
  max-width:760px; width:calc(100% - 32px);
  color:#eaf0ff;
  border-radius:18px;
  padding:28px 24px;
  transform:translateY(10px) scale(.98);
  transition:transform .25s ease;
  background:rgba(16,22,40,.85);
  backdrop-filter:saturate(120%) blur(8px);
  -webkit-backdrop-filter:saturate(120%) blur(8px);
  box-shadow:0 20px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}
.nmcsp-backdrop.nmcsp-show .nmcsp-modal{ transform:translateY(0) scale(1); }

/* Хрестик */
.nmcsp-close{
  all:unset;
  position:absolute; top:10px; right:10px;
  width:32px; height:32px; display:flex; align-items:center; justify-content:center;
  color:#fff; cursor:pointer;
}
.nmcsp-close svg{ width:22px;height:22px; stroke:currentColor; }
.nmcsp-close:hover{ color:#ff4d4f; }

/* Заголовки */
.nmcsp-content{text-align:center;}
.nmcsp-content h3{
  margin:0 0 8px 0; font-weight:800;
  font-size:clamp(22px,2.8vw,30px); line-height:1.25;
}
.nmcsp-sub{ margin:0 18px 18px; color:#b3bdd1; font-size:15px; }

/* Грід карток */
.nmcsp-grid{
  display:grid; gap:16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width:640px){ .nmcsp-grid{ grid-template-columns: 1fr; } }

/* Картка платформи */
.nmcsp-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:14px;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.nmcsp-card:hover{
  box-shadow:0 10px 30px rgba(0,0,0,.25), 0 0 0 3px rgba(255,215,0,.08) inset;
  transform: translateY(-1px);
}

.nmcsp-card-head{
  display:flex; align-items:center; gap:10px;
  color:#eaf0ff; font-weight:700;
}
.nmcsp-card-title{ font-size:15px; letter-spacing:.2px; }

/* Чипи з іконками (для швидкої ідентифікації) */
.nmcsp-chip{
  width:28px; height:28px; border-radius:999px;
  display:grid; place-items:center;
  color:#fff;
}
.nmcsp-chip-fb{ background:#1877F2; }      /* FB синій */
.nmcsp-chip-teams{ background:#5B64EA; }   /* Teams фіолетовий */

/* Кнопка */
.nmcsp-btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px; border-radius:12px; text-decoration:none;
  font-weight:700; color:#fff; background:#8B0000;  /* бордовий бренд */
  box-shadow:0 8px 20px rgba(139,0,0,.35); transition:background .2s ease, transform .05s ease;
}
.nmcsp-btn:hover{ background:#a00000; }
.nmcsp-btn:active{ transform: translateY(1px); }
.nmcsp-ico{ display:inline-grid; place-items:center; }

/* Пояснення під кнопкою */
.nmcsp-card-note{
  font-size:13px; color:#9aa3b2; text-align:center;
}

/* Мобільні */
@media (max-width:480px){
  .nmcsp-modal{ padding:22px 16px; }
  .nmcsp-btn{ width:100%; justify-content:center; }
}
