* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 224, 153, 0.2), transparent 35%),
    linear-gradient(135deg, #1d1208 0%, #3b220f 45%, #120b05 100%);
  color: #fff8ea;
}

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

.card {
  width: min(920px, 100%);
  background: rgba(20, 12, 6, 0.72);
  border: 1px solid rgba(255, 220, 150, 0.22);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.hero-image {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.content {
  padding: clamp(28px, 6vw, 56px);
  text-align: center;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 6vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.45;
  color: rgba(255, 248, 234, 0.84);
}

@media (max-width: 640px) {
  .page {
    align-items: flex-start;
    padding-top: 20px;
  }

  .card {
    border-radius: 22px;
  }

  .hero-image {
    max-height: 520px;
  }

  .content {
    padding: 30px 22px 34px;
  }
}