body {
  background: #111111;
  font-family: "Dela Gothic One", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  overflow: hidden;
}

* {
  -webkit-tap-highlight-color: transparent;
}


@font-face {
  font-family: "Dela Gothic One";
  src: url("../assets/fonts/DelaGothicOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wix";
  src: url("../assets/fonts/WixMadeforDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

button {
  font-family: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  color: white;
  font-size: 1rem;
  background: var(--button-bg);
  transition: all 0.25s ease;
}

button:hover {
  background: var(--button-bg-hover);
  transform: scale(1.02);
  transform: translateY(-1px);
  cursor: pointer;
}

button:active {
  transform: scale(0.95);
}

.button-row {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 40px;
}

.button-row button {
  flex: 1;
  text-align: center;
}

button:disabled {
  background: #111111;
  cursor: not-allowed;
  transform: none;
}

.close-button {
  background: var(--button-alt-bg);
  color: var(--button-alt-text);
}

.close-button:hover {
  background: var(--button-discard-bg);
}

.form-title {
  font-size: 1.8rem;
  color: var(--text-accent);
  margin-bottom: 10px;
}

#click-blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0);
}

.rules {
  font-family: "Wix", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--rules-bg);
  padding: 10px 12px;
  border-left: 4px solid var(--rules-border);
  border-radius: 6px;
  margin-bottom: 8px;
}

@keyframes fall {
  0% {
    transform: translateY(0)
  }

  ;

  100% {
    transform: translateY(110vh)
  }

  ;
}