* { box-sizing: border-box; }

html, body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100svh;
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  background: #000;
}

.art,
.art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.art img {
  display: block;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.details {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(34px, 5.5vh, 74px);
  transform: translateX(-50%);
  width: min(92vw, 760px);
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,.85);
}

.credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.credit span {
  font-size: clamp(10px, .75vw, 13px);
  letter-spacing: .28em;
  font-weight: 500;
}

.credit strong {
  font-size: clamp(18px, 1.7vw, 28px);
  letter-spacing: .22em;
  font-weight: 700;
}

.rule {
  width: 64px;
  height: 1px;
  margin: 22px auto 21px;
  background: #d99a00;
  opacity: .9;
}

.soon {
  font-size: clamp(17px, 1.55vw, 27px);
  letter-spacing: .42em;
  font-weight: 500;
  white-space: nowrap;
}

.instagram {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #e3a300;
  text-decoration: none;
  font-size: clamp(10px, .85vw, 13px);
  letter-spacing: .18em;
  font-weight: 700;
}

.instagram svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram .dot {
  fill: currentColor;
  stroke: none;
}

/* PHONE: use the exact vertical art the user supplied, untouched. */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .art img {
    object-fit: cover;
    object-position: center center;
  }

  .details {
    bottom: max(28px, calc(env(safe-area-inset-bottom) + 18px));
    width: 88vw;
  }

  .credit span {
    font-size: 9px;
    letter-spacing: .24em;
  }

  .credit strong {
    font-size: clamp(15px, 4.3vw, 20px);
    letter-spacing: .17em;
  }

  .rule {
    margin: 17px auto 16px;
    width: 52px;
  }

  .soon {
    font-size: clamp(15px, 4.2vw, 20px);
    letter-spacing: .30em;
  }

  .instagram {
    margin-top: 19px;
    gap: 9px;
    font-size: clamp(9px, 2.8vw, 12px);
    letter-spacing: .12em;
  }

  .instagram svg {
    width: 23px;
    height: 23px;
  }
}

/* Very short phone screens: tighten only the copy, never alter/crop the supplied artwork differently. */
@media (max-width: 768px) and (max-height: 700px) {
  .details { bottom: 14px; }
  .rule { margin: 10px auto; }
  .instagram { margin-top: 12px; }
}
