/* ===== MODEL MODAL ===== */

.model-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  bacbkdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.model-modal.show {
  display: flex;
}

.model-box {
  background: var(--secondary-color);
  padding: 25px;
  border-radius: 18px;
  width: 320px;
  animation: fadeIn .2s ease;
}

.model-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.model-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.model-item {
  background: var(--secondary-hover-color);
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: .2s ease;
  border: 1px solid transparent;
}

.model-item:hover {
  border: 1px solid #3b82f6;
  transform: translateY(-2px);
}

.model-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.badge.free {
  background: #10b981;
  color: white;
}

.premium {
  border: 1px solid #facc15;
}

.premium-badge {
  background: linear-gradient(45deg, gold, orange);
  color: black;
}

@keyframes fadeIn {
  from {opacity:0; transform: scale(.95);}
  to {opacity:1; transform: scale(1);}
  }
