.modal-help {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

.modal-help.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-help-content {
  background: #2b2b2b;
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-help.active .modal-help-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-header h2 {
  color: #d4aa3a;
  margin-bottom: 6px;
}

.modal-header p {
  color: #ccc;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.modal-help-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: #d4aa3a;
  font-size: 18px;
  cursor: pointer;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  color: #d4aa3a;
  font-size: 0.9em;
}

.input-group input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d4aa3a;
  background: #111;
  color: #d4aa3a;
  outline: none;
  transition: all 0.2s ease;
}

.input-group input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(212, 170, 58, 0.2);
}

.btn-primary {
    background-color: linear-gradient(#ffde44, #D4AA3A);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    width: 275px;
    text-align: center;
    display: block;
    margin: 0 auto; 
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(212, 170, 58, 0.2);
}

.success-message {
  display: none;
  margin-top: 14px;
  color: #d4aa3a;
  text-align: center;
  font-size: 0.9em;
}

body.modal-open {
  overflow: hidden;
}