* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
  background: #0F4C5C;
  color: #1f2933;
}

.page {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 20px 0;
  overflow: hidden;
}

.card {
  width: 100%;
  max-width: 420px;
  background: #e8e4d6;
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 22px 22px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.tiny-text {
  margin: 0 0 10px;
  font-size: 0.85rem;
  opacity: 0.7;
}

h2 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.message {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.image-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
  background: #82c9ea;
  color: #1c252f;
  cursor: pointer;
  width: 100%;
}

button:hover {
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

@media (min-width: 700px) {
  .card {
    max-width: 480px;
    padding: 28px;
  }

  .image-frame img {
    height: 100%;
  }
}