/* Reloot reward page: plain styles in Reloot's colors. Edit freely; your script may add its own. */
:root {
  --ink: #080808;
  --surface: #111111;
  --raised: #1a1a1a;
  --rule: #303030;
  --muted: #909090;
  --soft: #c8c8c6;
  --paper: #f7f7f5;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}

.label {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.lead {
  margin: 12px 0 24px;
  color: var(--soft);
}

.facts {
  margin: 0 0 24px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
}

.fact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
}

.fact:last-child {
  border-bottom: 0;
}

.fact dt {
  color: var(--muted);
  font-size: 14px;
}

.fact dd {
  margin: 0;
  text-align: right;
  font-size: 14px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mono {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

.claim-root {
  margin: 0 0 24px;
}

.claim-root button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.claim-root button:disabled {
  background: var(--raised);
  border-color: var(--rule);
  color: var(--muted);
  cursor: default;
}

.note {
  font-size: 13px;
  color: var(--muted);
}
