* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: #111;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
  background: #ffffff;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 24px);
}

.hero {
  width: min(100%, 2048px);
}

.poster {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.transfer-tip {
  position: fixed;
  right: clamp(14px, 3vw, 42px);
  bottom: clamp(14px, 3vw, 36px);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(92vw, 430px);
  min-height: 58px;
  padding: 10px 18px 10px 10px;
  border: 3px solid #111;
  border-radius: 999px;
  color: #111;
  background: #f5b400;
  box-shadow: 0 12px 0 #111, 0 22px 38px rgba(0, 0, 0, 0.22);
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 950;
  line-height: 1.2;
  text-align: left;
}

.coin-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid #111;
  border-radius: 50%;
  color: #111;
  background:
    radial-gradient(circle at 32% 24%, #fff6b8 0 16%, transparent 17%),
    linear-gradient(145deg, #ffd95d, #f0a600);
  box-shadow: inset -5px -6px 0 rgba(0, 0, 0, 0.14);
  font-size: 28px;
  font-weight: 1000;
}

@media (max-width: 720px) {
  .page {
    align-content: start;
    padding: 0;
    overflow-x: auto;
  }

  .hero {
    width: max(100vw, 960px);
  }

  .transfer-tip {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    border-width: 2px;
    box-shadow: 0 8px 0 #111, 0 14px 24px rgba(0, 0, 0, 0.2);
  }
}
