:root {
  --bg: #050806;
  --ink: #e8ffe9;
  --muted: #9ec9a4;
  --accent: #1ed760;
  --accent-hover: #3be574;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  background: var(--bg);
}

body {
  min-height: 100dvh;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.55) 0%, rgba(5, 8, 6, 0.78) 50%, rgba(5, 8, 6, 0.88) 100%),
    url("assets/anon-hoodie.png") center 18% / cover no-repeat,
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

.view {
  min-height: 100dvh;
  max-width: 390px;
  margin: 0 auto;
  padding: calc(24px + var(--safe-top)) 22px calc(28px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

p {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 22px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 14px 20px;
  border-radius: 16px;
  background: var(--accent);
  color: #041208;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(30, 215, 96, 0.28);
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-hover);
}

.btn:active {
  transform: scale(0.98);
}
