@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/Inter-Bold.woff2") format("woff2");
}

:root {
  --wine: #4f0a1e;
  --gold: #b08642;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #2a0510;
  color: var(--white);
  font-family: Inter, "Segoe UI", sans-serif;
}

.page {
  position: relative;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  padding: 24px 16px 40px;
}

.pattern {
  position: absolute;
  inset: 0;
  background-color: var(--wine);
  background-image: url("/pattern-tile.svg");
  background-size: 104px 104px;
  background-repeat: repeat;
}

.stage {
  position: relative;
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  position: relative;
  width: 168px;
  height: auto;
  margin: 4px 0 18px;
}

.photo-wrap {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #2a0510;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  min-height: 120px;
}

.photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.status {
  position: relative;
  margin: 18px 0 0;
  color: var(--gold);
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
}

.cta {
  position: relative;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font: 700 16px/1 Inter, "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.cta[hidden] {
  display: none !important;
}
