:root {
  --orange: #f2a900;
  --orange-dark: #d99200;
  --anthracite: #2f2f2f;
  --black: #111111;
  --text: #2b2b2b;
  --muted: #6f6f6f;
  --line: #e8e1d5;
  --paper: #ffffff;
  --background: #f7f5f0;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(242, 169, 0, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--background) 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.card {
  width: min(980px, 100%);
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.12);
  border: 1px solid rgba(47, 47, 47, 0.08);
}

.hero {
  background: var(--anthracite);
  padding: 34px 48px;
  border-top: 10px solid var(--orange);
}

.logo {
  display: block;
  width: min(330px, 100%);
  height: auto;
}

.content {
  padding: 56px 64px 48px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 14px;
  color: var(--anthracite);
  background: #fff4d8;
  border-left: 5px solid var(--orange);
  font-weight: 700;
  font-size: 15px;
}

h1 {
  margin: 0 0 24px;
  max-width: 760px;
  color: var(--black);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1::after {
  content: "";
  display: block;
  width: 76px;
  height: 7px;
  margin-top: 26px;
  background: var(--orange);
  border-radius: 999px;
}

.intro {
  max-width: 780px;
  margin: 0 0 34px;
  font-size: 20px;
  line-height: 1.65;
}

.url-box {
  max-width: 780px;
  margin: 0 0 26px;
  padding: 24px 28px;
  border: 2px solid var(--orange);
  border-radius: 14px;
  background: #fffdf8;
}

.url-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.url {
  color: var(--black);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  text-decoration: none;
  word-break: break-all;
}

.url:hover {
  text-decoration: underline;
}

.notice {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 28px;
  color: #ffffff;
  background: var(--orange);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 12px 24px rgba(242, 169, 0, 0.26);
}

.button:hover {
  background: var(--orange-dark);
}

.timer {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
}

.timer strong {
  display: block;
  margin-top: 4px;
  color: var(--black);
  font-size: 22px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 64px;
  color: var(--muted);
  background: #faf8f3;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

@media (max-width: 700px) {
  .page {
    padding: 24px 14px;
  }

  .hero,
  .content,
  .footer {
    padding-left: 26px;
    padding-right: 26px;
  }

  .content {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .intro {
    font-size: 17px;
  }

  .actions {
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .timer {
    border-left: 0;
    padding-left: 0;
  }

  .footer {
    flex-direction: column;
  }
}
