:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef5f2;
  --ink: #152126;
  --muted: #5d6a72;
  --line: #dbe3e7;
  --green: #14b86a;
  --green-dark: #087a45;
  --gold: #ffc857;
  --coral: #ff6f61;
  --blue: #2374ab;
  --shadow: 0 18px 50px rgba(28, 42, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 106, 0.16), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 34rem);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.official-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.65rem clamp(1rem, 4vw, 4rem);
  background: #0f181c;
  color: white;
  text-align: center;
}

.official-banner[hidden] {
  display: none;
}

.official-banner p {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.official-banner span {
  margin-right: 0.25rem;
}

.banner-close {
  display: grid;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-weight: 900;
}

.banner-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 227, 231, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.6rem;
  background: var(--green);
  color: white;
  box-shadow: inset 0 -0.25rem 0 rgba(0, 0, 0, 0.12);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.header-cta,
.search-panel button,
.reveal-button,
.unlock-button {
  border: 0;
  border-radius: 0.55rem;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.header-cta:hover,
.search-panel button:hover,
.reveal-button:hover,
.unlock-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(21, 33, 38, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 4.45rem);
  padding: clamp(3rem, 6vw, 6.5rem) clamp(1rem, 4vw, 4rem) 3rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-text {
  max-width: 41rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.search-panel {
  position: relative;
  display: flex;
  max-width: 42rem;
  margin: 2rem 0 1.25rem;
  padding: 0.45rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}

.search-panel input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0.95rem 1rem;
  color: var(--ink);
  outline: none;
}

.search-panel > button {
  padding: 0.95rem 1.2rem;
  background: var(--green);
}

.suggestions {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  z-index: 15;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: white;
  box-shadow: var(--shadow);
}

.suggestion-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem;
  background: white;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.suggestion-item:last-child {
  border-bottom: 0;
}

.suggestion-item:hover,
.suggestion-item:focus-visible {
  background: #f4faf7;
  outline: none;
}

.suggestion-icon {
  display: grid;
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 0.65rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 900;
}

.suggestion-icon img,
.store-icon img,
.modal-game-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.suggestion-item span:last-child {
  display: grid;
  gap: 0.18rem;
}

.suggestion-item small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
}

.trust-row span {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.trust-row strong {
  color: var(--ink);
}

.hero-visual {
  min-height: 27rem;
  display: grid;
  place-items: center;
}

.phone-preview {
  position: relative;
  width: min(100%, 22rem);
  min-height: 40rem;
  padding: 1rem;
  border: 0.7rem solid #152126;
  border-radius: 2.4rem;
  background:
    linear-gradient(180deg, #f5fff9, #ffffff),
    var(--surface);
  box-shadow: var(--shadow);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.phone-status span {
  display: block;
  width: 4rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #dfe8e4;
}

.phone-status span:last-child {
  width: 2rem;
}

.phone-card {
  display: grid;
  min-height: 34rem;
  align-content: center;
  gap: 0.9rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at top, rgba(255, 200, 87, 0.28), transparent 11rem),
    white;
}

.game-badge {
  width: fit-content;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
}

.phone-card h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 0.98;
}

.phone-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.amount-preview {
  padding: 0.9rem;
  border: 1px solid #ffd989;
  border-radius: 0.8rem;
  background: #fff8e6;
  color: #8a5a00;
  font-size: 1.9rem;
  font-weight: 900;
  text-align: center;
}

.amount-preview.green {
  border-color: #b7e9cf;
  background: #edfff5;
  color: var(--green-dark);
}

.phone-card button {
  margin-top: 0.5rem;
  border: 0;
  border-radius: 0.8rem;
  padding: 1rem;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.category-bar {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding: 0 clamp(1rem, 4vw, 4rem) 2rem;
}

.category {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.category.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 4rem) 1rem;
}

.section-heading h2,
.faq h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.section-heading > p {
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.6;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem) 4rem;
}

.game-card {
  position: relative;
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.7rem 1.2rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  box-shadow: 0 10px 30px rgba(28, 42, 54, 0.06);
}

.game-status {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  max-width: 9rem;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  background: #edfff5;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.game-card[hidden] {
  display: none;
}

.deal-top {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.store-icon {
  display: grid;
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 0.7rem;
  color: white;
  font-weight: 900;
  overflow: hidden;
}

.game-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.game-card p {
  color: var(--muted);
  line-height: 1.5;
}

.resource-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.resource-pills span {
  padding: 0.8rem;
  background: var(--surface-soft);
  border: 1px solid #b7cbc3;
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 900;
}

.reveal-button,
.unlock-button {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--green);
}

.popular-band,
.faq {
  padding: 3rem clamp(1rem, 4vw, 4rem);
}

.popular-band {
  background: #152126;
  color: white;
}

.popular-band .eyebrow {
  color: var(--gold);
}

.popular-band .section-heading {
  padding: 0 0 1.25rem;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.link-cloud a {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(12, 18, 22, 0.62);
  overscroll-behavior: contain;
}

.modal.open {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(100%, 30rem);
  max-width: calc(100vw - 2rem);
  padding: 2rem;
  background: white;
  border-radius: 0.8rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.generator-panel {
  width: min(100%, 34rem);
  max-width: calc(100vw - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
  -webkit-overflow-scrolling: touch;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 50%;
  background: #edf2f4;
  cursor: pointer;
  font-size: 1.35rem;
}

.lock-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--surface-soft);
  font-size: 1.45rem;
  font-weight: 900;
}

.modal-copy {
  color: var(--muted);
  line-height: 1.55;
}

.unlocked-code {
  margin-top: 1rem;
  padding: 1rem;
  background: #0d181c;
  border-radius: 0.55rem;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
}

.step-dots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.step-dots span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  background: #e9eff2;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
}

.step-dots span.active {
  background: var(--green);
  color: white;
}

.generator-step {
  display: none;
}

.generator-step.active {
  display: block;
}

.generator-intro {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-right: 2rem;
}

.generator-intro h2 {
  margin-bottom: 0.55rem;
}

.generator-intro .eyebrow {
  margin-bottom: 0.35rem;
}

.description-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.description-toggle .modal-copy {
  margin-bottom: 0;
}

.description-toggle button {
  display: grid;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafb;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.description-toggle button:hover {
  background: var(--surface-soft);
}

.modal-game-icon {
  display: grid;
  flex: 0 0 auto;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border-radius: 1rem;
  color: white;
  font-size: 1.15rem;
  font-weight: 900;
  overflow: hidden;
}

.resource-controls {
  display: grid;
  gap: 0.9rem;
  margin: 1.3rem 0;
}

.resource-control {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #f8fafb;
}

.resource-control span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.resource-control output {
  color: var(--green-dark);
  font-weight: 900;
}

.resource-control input[type="range"] {
  width: 100%;
  height: 1.65rem;
  accent-color: var(--green);
  cursor: pointer;
  touch-action: pan-y;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
}

.form-grid input,
.form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.9rem;
  background: white;
  color: var(--ink);
  outline: none;
}

.input-error {
  margin: 0 0 0.8rem;
  color: #bd2b2b;
  font-size: 0.9rem;
  font-weight: 800;
}

.fine-print {
  margin: -0.1rem 0 0.75rem;
  color: #7d8990;
  font-size: 0.72rem;
  line-height: 1.45;
}

.progress-shell {
  overflow: hidden;
  height: 1rem;
  margin: 1.5rem 0 0.8rem;
  border-radius: 999px;
  background: #e9eff2;
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 120ms ease;
}

.progress-label {
  color: var(--green-dark);
  font-weight: 900;
}

.process-list {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #f8fafb;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.process-list span {
  display: grid;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border: 2px solid #c9d5db;
  border-radius: 999px;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease;
}

.process-list li.complete {
  border-color: #b7e9cf;
  background: #edfff5;
  color: var(--green-dark);
}

.process-list li.complete span {
  border-color: var(--green);
  background: var(--green);
}

.process-list li.complete span::before {
  content: "✓";
}

.reward-summary {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
}

.reward-summary span {
  padding: 0.8rem;
  border: 1px solid #b7e9cf;
  border-radius: 0.6rem;
  background: #edfff5;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
}

.page-verification {
  padding: 1rem clamp(1rem, 4vw, 4rem) 3rem;
}

.page-verification-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid #b7e9cf;
  border-radius: 0.8rem;
  background: white;
  box-shadow: 0 10px 30px rgba(28, 42, 54, 0.08);
}

.page-verification-card h2 {
  margin-bottom: 0.5rem;
}

.page-verification-card p {
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  padding: 2rem clamp(1rem, 4vw, 4rem);
  background: #0f181c;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: white;
  font-weight: 800;
}

.site-footer p {
  max-width: 70rem;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
}

.legal-page {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
}

.legal-hero {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-hero p {
  color: var(--muted);
}

.legal-content {
  max-width: 58rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: white;
  box-shadow: 0 10px 30px rgba(28, 42, 54, 0.06);
}

.legal-content h2 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.25rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 800;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.about-stats article {
  padding: 1rem;
  border: 1px solid #b7e9cf;
  border-radius: 0.75rem;
  background: #edfff5;
}

.about-stats strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
}

.about-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 3rem;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    padding: 0.7rem 0.85rem;
  }

  .search-panel {
    flex-direction: column;
  }

  .trust-row {
    gap: 0.55rem;
  }

  .hero-visual {
    min-height: 0;
  }

  .section-heading {
    display: block;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 16rem;
  }

  .phone-preview {
    width: min(100%, 15.5rem);
    min-height: 21.5rem;
    padding: 0.7rem;
    border-width: 0.5rem;
    border-radius: 1.7rem;
  }

  .phone-status {
    margin-bottom: 0.65rem;
  }

  .phone-status span {
    width: 2.7rem;
    height: 0.35rem;
  }

  .phone-status span:last-child {
    width: 1.4rem;
  }

  .phone-card {
    min-height: 18rem;
    gap: 0.55rem;
    padding: 0.85rem;
    border-radius: 1rem;
  }

  .phone-card h2 {
    font-size: 1.75rem;
  }

  .phone-card p {
    font-size: 0.85rem;
  }

  .amount-preview {
    padding: 0.65rem;
    font-size: 1.25rem;
  }

  .phone-card button {
    padding: 0.8rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal {
    align-items: start;
    padding: 0.5rem;
  }

  .modal-panel,
  .generator-panel {
    width: 100%;
    max-width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
    padding: 1.15rem;
    border-radius: 0.7rem;
  }

  .step-dots {
    margin-bottom: 0.75rem;
  }

  .generator-intro {
    gap: 0.8rem;
    padding-right: 1.9rem;
  }

  .modal-game-icon {
    width: 3.6rem;
    height: 3.6rem;
  }

  .form-grid input,
  .form-grid select,
  .search-panel input {
    font-size: 1rem;
  }

  .resource-control input[type="range"] {
    height: 1.85rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-verification-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 440px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}
