/* Standalone Forbidden page – no React, no build */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  background: #080816;
}

.forbidden-page {
  min-height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080816;
  font-family: "Quicksand", sans-serif;
}

.forbidden-page__panel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  padding: 0 32px 40px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 6, 44, 0.1), rgba(12, 6, 44, 0.26)),
    url("/geo-block/images/forbidden/Forbidden.png") center 28% / cover no-repeat;
}

.forbidden-page__content {
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.forbidden-page__text {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100%, 430px);
  margin-left: auto;
  margin-right: 8%;
  padding: 18px 20px 22px;
}

.forbidden-page__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 818px;
  height: 558px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(20, 0, 90, 0.9);
  filter: blur(200px);
  z-index: 0;
  pointer-events: none;
}

.forbidden-page__text > * {
  position: relative;
  z-index: 1;
}

.forbidden-page__subtitle {
  width: min(100%, 420px);
  height: 170px;
  background: url("/geo-block/images/forbidden/forbidden_Subtitle.png") center / contain no-repeat;
}

.forbidden-page__lead {
  margin: 12px 0 0;
  font-family: "Paytone One", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.005em;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.forbidden-page__note {
  margin: 10px 0 0;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #fff;
}

.forbidden-page__button {
  margin-top: 24px;
  min-width: 230px;
  min-height: 46px;
  padding: 0 26px;
  border: 3px solid #FFB119;
  border-radius: 999px;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2f1800;
  background: linear-gradient(180deg, #f9fab2 0%, #ffd30f 40%, #ed9d27 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 20px rgba(43, 14, 2, 0.25);
  cursor: pointer;
}

@media (max-width: 900px) {
  .forbidden-page__panel {
    padding: 0 32px 40px 0;
    background-position: center center;
  }
  .forbidden-page__content {
    justify-content: center;
  }
  .forbidden-page__text {
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .forbidden-page__panel {
    padding: 0 16px 28px;
    background:
      linear-gradient(180deg, rgba(12, 6, 44, 0.12), rgba(12, 6, 44, 0.28)),
      url("/geo-block/images/forbidden/forbidden_mobbg.png") center / cover no-repeat;
  }
  .forbidden-page__content {
    align-items: flex-start;
    padding-top: 6vh;
  }
  .forbidden-page__text {
    width: 100%;
    margin: 0 auto;
    padding: 14px 16px 18px;
  }
  .forbidden-page__text::before {
    width: 360px;
    height: 420px;
    filter: blur(220px);
  }
  .forbidden-page__subtitle {
    width: min(100%, 276px);
    height: 126px;
  }
  .forbidden-page__lead {
    margin-top: 14px;
    font-size: 13px;
  }
  .forbidden-page__note {
    margin-top: 10px;
    font-size: 12px;
  }
  .forbidden-page__button {
    margin-top: 22px;
    min-width: 162px;
    min-height: 38px;
    font-size: 13px;
  }
}
