/* Модальное окно - черное */
.modal-content {
  background: var(--bg-card);
  border-radius: 36px;
  padding: 24px;
  width: 90%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(59,130,246,0.08);
}

/* МОДАЛКА */
.modal-glass {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-glass.active {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  border-radius: 36px;
  padding: 24px;
  width: 90%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Уведомления */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a2e;
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transition: transform 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
}

.toast-notification i {
  font-size: 1.2rem;
}

.toast-notification.success i {
  color: #22c55e;
}

.toast-notification.error i {
  color: #ef4444;
}