* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, #fff6f8 0%, transparent 35%),
    radial-gradient(circle at bottom right, #ffdbe5 0%, transparent 35%),
    #fff0f4;
  color: #5f3f48;
  min-height: 100vh;
}

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

.video-card {
  width: 100%;
  max-width: 850px;
  background: rgba(255, 250, 252, 0.88);
  border: 1px solid #ffd1dc;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(187, 91, 120, 0.18);
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #b86b82;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #8f4f63;
  font-weight: normal;
}

.intro {
  margin: 12px auto 28px;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #76515c;
}

.video-frame {
  background: #ffe3eb;
  padding: 12px;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px #ffc9d7;
}

video {
  display: block;
  width: 100%;
  border-radius: 18px;
  background: #f8dce5;
}

@media (max-width: 600px) {
  .page {
    padding: 18px;
  }

  .video-card {
    padding: 22px;
    border-radius: 22px;
  }

  .video-frame {
    padding: 8px;
  }
}

.download-button {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f4a7ba;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(187, 91, 120, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(187, 91, 120, 0.28);
}

.download-button:active {
  transform: translateY(0);
}
