* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: #3f245c;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.65), transparent 35%),
    linear-gradient(180deg, #fff7ea 0%, #f5dfbf 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.card {
  width: min(92vw, 560px);
  padding: 34px 28px;
  text-align: center;
  border: 2px solid #7b579a;
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 20px 50px rgba(75, 39, 95, 0.18);
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(123, 87, 154, 0.6);
  border-radius: 22px;
  pointer-events: none;
}

.sparkle { font-size: 28px; color: #c5913f; margin-bottom: 8px; }

.eyebrow {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  color: #9b5a94;
  font-weight: bold;
}

h1 {
  margin: 12px 0 6px;
  font-size: clamp(32px, 8vw, 48px);
  line-height: 1;
  color: #5a3274;
}

.subtitle {
  margin: 0 auto 22px;
  max-width: 390px;
  font-size: 21px;
  color: #87558a;
  font-weight: bold;
}

.seal {
  width: 118px;
  height: 118px;
  border: 2px solid #c79b46;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: #fff5df;
  position: relative;
}

.book { font-size: 48px; }
.crown { position: absolute; top: -20px; font-size: 32px; }

.message {
  font-size: 18px;
  line-height: 1.55;
  margin: 18px auto 22px;
  max-width: 430px;
}

.secret-button {
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  background: #7b579a;
  color: #fff8ed;
  font-size: 17px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", serif;
  box-shadow: 0 10px 24px rgba(91, 50, 116, .24);
  cursor: pointer;
}

.video-wrap {
  width: 100%;
  margin: 18px 0 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(123, 87, 154, 0.4);
  background: #2a1639;
}

video {
  width: 100%;
  display: block;
}

.hint {
  font-size: 15px;
  color: #7d6070;
  margin: 14px 0 0;
}

.hidden { display: none; }
