* {
  box-sizing: border-box;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(178, 34, 34, .10), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(178, 34, 34, .08), transparent 30%),
    #f6ecd8;
  color: #182b4a;
}

.page {
  min-height: 100vh;
  padding: 24px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.flag-decoration {
  position: fixed;
  top: -90px;
  left: -120px;
  width: 360px;
  height: 230px;
  background: #c9232b;
  transform: rotate(-18deg);
  opacity: .95;
  border-radius: 30px;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.card {
  width: min(100%, 620px);
  background: rgba(255, 250, 239, .96);
  border: 1px solid rgba(120, 70, 30, .15);
  border-radius: 28px;
  padding: 28px 24px 22px;
  box-shadow: 0 20px 55px rgba(58, 40, 20, .16);
  position: relative;
  z-index: 1;
  text-align: center;
}

.top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.crescent {
  color: #c9232b;
  font-size: 58px;
  line-height: 1;
  transform: rotate(-18deg);
}

.eyebrow {
  margin: 0 0 5px;
  color: #c9232b;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(31px, 8vw, 52px);
  line-height: .98;
  font-weight: 700;
  letter-spacing: -1px;
}

h1 span {
  color: #c9232b;
}

.image-wrap {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
  background: #eee;
}

.image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.quote {
  margin: 20px 8px 16px;
  position: relative;
}

.quote-mark {
  color: #c9232b;
  font-size: 55px;
  line-height: 20px;
  vertical-align: -18px;
}

.quote p {
  display: inline;
  font-size: clamp(18px, 4.5vw, 25px);
  line-height: 1.35;
  font-style: italic;
  font-weight: 600;
}

.play-button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 20px;
  background: #c9232b;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(201,35,43,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.play-button:active {
  transform: scale(.98);
}

.play-button.hidden {
  display: none;
}

.play-icon {
  margin-right: 8px;
  font-size: 18px;
}

.video {
  display: none;
  width: 100%;
  margin-top: 12px;
  border-radius: 16px;
  background: #111;
}

.signature {
  margin: 19px 0 14px;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}

.bottom-message {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.bottom-message span {
  padding: 7px 11px;
  border-radius: 999px;
  background: #efe0c7;
  color: #263957;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

footer {
  margin-top: 18px;
  color: #7a6b59;
  font-family: Arial, sans-serif;
  font-size: 11px;
}

@media (max-width: 430px) {
  .page {
    padding: 12px 8px;
  }

  .card {
    padding: 20px 14px 18px;
    border-radius: 22px;
  }

  .crescent {
    font-size: 45px;
  }

  .top {
    gap: 8px;
  }
}
