/* ===== Modal (Login Popup) ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #1a1010;
  border: 2px solid #d35400;
  border-radius: 6px;
  width: 100%;
  max-width: 400px;
  padding: 25px;
  box-shadow: 0 0 30px rgba(211,84,0,0.5);
  position: relative;
  animation: fadeIn .3s ease;
}

.modal-content h2 {
  color: #f39c12;
  margin-bottom: 20px;
  text-align: center;
}

.modal-content label {
  display: block;
  margin-bottom: 6px;
  color: #e0e0e0;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #333;
  background: #0c0c0f;
  color: #fff;
}

.modal-content button {
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #f39c12;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
