@font-face {
  font-family: "Recoleta";
  src: url("../cupom1/fonts/RecoletaAlt-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Radian";
  src: url("../cupom1/fonts/Radian-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --yellow: #ffd900;
  --ink: #171717;
  --muted: #5e5e5a;
  color: var(--ink);
  background: #f4f4f2;
  font-family: "Radian", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f4f4f2;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(var(--yellow) 0 7px, transparent 7px),
    #f4f4f2;
}

.notice-page {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding:
    max(24px, env(safe-area-inset-top))
    18px
    max(24px, env(safe-area-inset-bottom));
  place-items: center;
}

.notice-card {
  width: min(100%, 480px);
  border: 1px solid #deded9;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  padding: clamp(24px, 6vw, 38px);
  text-align: center;
}

.notice-card > img {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto 22px;
}

.notice-badge {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 30px;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 7px;
  color: #745e00;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Recoleta", Georgia, serif;
  font-size: clamp(29px, 8vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.notice-copy {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.notice-warning {
  margin-top: 20px;
  border-left: 4px solid var(--yellow);
  border-radius: 4px;
  background: #f7f7f4;
  padding: 14px 16px;
  text-align: left;
}

.notice-warning > strong {
  font-size: 13px;
}

.notice-warning p {
  margin: 4px 0 0;
  color: #4c4c48;
  font-size: 13px;
  line-height: 1.45;
}

.session-status {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 18px 0;
  font-size: 14px;
}

.session-status strong {
  min-width: 42px;
  color: #856800;
  font-variant-numeric: tabular-nums;
}

.continue-button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #111111;
  border-radius: 7px;
  background: var(--yellow);
  color: #111111;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.continue-button span {
  font-size: 27px;
  line-height: 1;
}

.continue-button:active {
  transform: scale(0.985);
}

.continue-button.is-expired {
  border-color: #bbbbbb;
  background: #dedede;
  color: #777777;
}

@media (max-width: 420px) {
  .notice-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .notice-card {
    padding: 24px 20px;
  }

  .notice-card > img {
    width: 158px;
    margin-bottom: 18px;
  }

  .notice-copy {
    font-size: 15px;
  }
}
