* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: #043d24;
}

body {
  font-family: Arial, "Noto Sans Thai", sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: max(12px, env(safe-area-inset-top)) 10px max(18px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% -10%, rgba(83, 181, 59, .22), transparent 34%),
    radial-gradient(circle at 12% 38%, rgba(215, 169, 40, .08), transparent 24%),
    linear-gradient(180deg, #07472a 0%, #043d24 48%, #02331e 100%);
}

.card-stack {
  width: min(100%, 430px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-link,
.trust-panel {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.visual-link {
  cursor: pointer;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform .15s ease, filter .15s ease;
}

.visual-link:hover {
  filter: brightness(1.04);
}

.visual-link:active {
  transform: scale(.985);
}

.visual-link:focus-visible {
  outline: 3px solid #f2cd57;
  outline-offset: 3px;
}

.visual-link img,
.trust-panel img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 700px) {
  .page-shell {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card-stack {
    width: 390px;
  }
}
