:root {
  --modal-bg: rgba(10, 10, 10, 0.55);
  --panel-bg: rgba(255, 255, 255, 0.18);
  --panel-border: rgba(255, 255, 255, 0.28);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #cc0f86; /* close to your button pink */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: #0b0b0b;
  font-family: Arial, Helvetica, sans-serif;
}

.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.stage {
  position: relative;
  /* Keep exact 16:9 ratio, fit inside viewport without cropping */
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));

  background-image: url("LP%20OMSHO%20FIRST.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Invisible clickable area placed exactly on top of the PNG button */
.hotspot {
  position: absolute;
  left: 59.472656%;
  top: 78.993056%;
  width: 10.449219%;
  height: 6.163194%;
  cursor: pointer;
  /* Uncomment for debugging
  outline: 2px solid red;
  background: rgba(255,0,0,0.1);
  */
}

.modal {
  position: absolute;
  inset: 0;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--modal-bg);
}

.modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 32px));
  color: var(--text);

  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 14px;
  padding: 22px 18px 18px;
}

.modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal__title {
  margin: 0 0 14px;
  letter-spacing: 0.14em;
  font-size: 14px;
  font-weight: 700;
}

.hidden { display: none; }

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.field input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(0,0,0,0.16);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
}

.field input:focus {
  border-color: rgba(255,255,255,0.5);
}

.submit {
  margin-top: 6px;
  border-radius: 10px;
  border: 0;
  background: rgba(255,255,255,0.92);
  color: #0b0b0b;
  padding: 12px 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  cursor: pointer;
}

.submit:hover {
  filter: brightness(0.96);
}

.privacy {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255,255,255,0.70);
}
@media (max-width: 768px) {
  .stage {
    width: 100vw;
    height: 100vh;
    background-image: url("LP OMSHO FIRST MOBILE T6 FINAL.png") !important;
    background-size: cover;
    background-position: center center;
  }

  .hotspot {
    left: 50%;
    top: 90%;
    width: 60%;
    height: 8%;
    transform: translateX(-50%);
  }
}
