.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease;
}
.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 35px 25px;
  width: 90%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  position: relative;
  text-align: center;
  font-family: 'Arial', sans-serif;
  animation: slideDown 0.4s ease-out;
}
@keyframes slideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s, transform 0.2s;
}
.close:hover {
  color: #e74c3c;
  transform: rotate(90deg);
}

.modal-content h2 {
  font-family: 'Great Vibes', cursive;
  color: #deae21;
  margin-bottom: 20px;
  font-size: 32px;
}
.modal-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 25px;
}

.modal-content label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  text-align: left;
}
.modal-content input {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.modal-content input:focus {
  border-color: #ff7e5f;
  outline: none;
}

.modal-content button {
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #d9b00e, #f5ca49);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.modal-content button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}