:root {
  --bg: #f3f1ea;
  --card-bg: #ffffff;
  --accent: #f5a623;
  --accent-soft: #ffe4b5;
  --text-main: #262522;
  --text-muted: #6c675e;
  --border-soft: #e0d8c5;
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #f9f6ee 0, var(--bg) 55%);
  color: var(--text-main);
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page {
  width: 100%;
  max-width: 440px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-soft);
  text-align: center;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 0, #fff 0, var(--accent-soft) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.helmet {
  width: 32px;
  height: 24px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(145deg, #f9b44a, #f08b1f);
  position: relative;
  box-shadow: 0 4px 8px rgba(240, 139, 31, 0.4);
}

.helmet::before {
  content: "";
  position: absolute;
  inset: 3px 4px 9px;
  border-radius: 10px 10px 6px 6px;
  background: #ffd9a1;
}

.helmet::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -4px;
  height: 4px;
  border-radius: 4px;
  background: #e2a04a;
}

.strap {
  position: absolute;
  width: 18px;
  height: 6px;
  border-radius: 0 0 6px 6px;
  background: #d8731f;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

h1 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.status {
  margin: 18px 0 12px;
  text-align: left;
}

.status-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.status-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #f0e7d5;
  overflow: hidden;
  position: relative;
}

.status-fill {
  height: 100%;
  width: 45%;
  max-width: 92%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f6b14a, #f78c3a);
  position: relative;
  transform-origin: left center;
}

.status-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.25) 0,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.25) 100%
  );
  background-size: 40px 100%;
  animation: shimmer 2s infinite linear;
}

.small {
  font-size: 12px;
}

a {
  color: #c2681d;
  text-decoration: none;
  border-bottom: 1px solid rgba(194, 104, 29, 0.25);
}

a:hover {
  border-bottom-color: rgba(194, 104, 29, 0.6);
}

footer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

@keyframes shimmer {
  0% {
    background-position: -40px 0;
  }
  100% {
    background-position: 40px 0;
  }
}

/* Small devices tweaks */
@media (max-width: 360px) {
  .card {
    padding: 18px 16px 16px;
  }

  h1 {
    font-size: 18px;
  }

  p {
    font-size: 13px;
  }
}