.gate-popup-accepted .gate-popup {
  display: none !important;
}

.gate-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gate-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.gate-popup__box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 36px 30px;
  font-family: Inter, sans-serif;
}

.gate-popup__title {
  margin: 10px 0 18px;
  font-weight: 600;
  font-size: 21px;
  color: #181b1f;
}

.gate-popup__content {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #7c878e;
}

.gate-popup__notice {
  background: #f5f8fe;
  border-radius: 12px;
  padding: 20px 30px;
  margin-bottom: 22px;
}

.gate-popup__intro {
  margin: 0 0 15px;
  font-weight: 500;
  font-size: 15px;
  color: #7c878e;
}

.gate-popup__list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gate-popup__list li {
  font-size: 14px;
  line-height: 1.4;
  color: #7c878e;
  list-style-type: square;
}

.gate-popup__accept {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  color: #181b1f;
}

.gate-popup__accept input {
  margin-top: 3px;
}

.gate-popup__error {
  color: #c0392b;
  font-size: 14px;
  display: none;
  margin: 0 0 15px;
}

.gate-popup__button {
  background: #1b1aff;
  color: #fff;
  border: 0;
  border-radius: 30px;
  padding: 18px 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 10px;
}

.gate-popup__button:hover {
  background: #181b1f;
}

@media (max-width: 640px) {
  .gate-popup__box {
    padding: 24px 18px;
  }

  .gate-popup__notice {
    padding: 18px;
  }

  .gate-popup__title {
    font-size: 19px;
  }
}