:root {
  --bg: #f4f7ff;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --text: #17213b;
  --muted: #71809f;
  --primary: #3157d5;
  --primary-dark: #2445b5;
  --primary-soft: #e9eeff;
  --accent: #f4b740;
  --success: #2f9e6f;
  --success-soft: #e8f8f0;
  --danger: #d9525e;
  --danger-soft: #fff0f1;
  --warning-soft: #fff7df;
  --border: #e5eaf5;
  --shadow: 0 18px 50px rgba(41, 64, 125, 0.12);
  --shadow-soft: 0 8px 26px rgba(41, 64, 125, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(125, 149, 255, 0.17), transparent 34rem),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(49, 87, 213, 0.24);
  outline-offset: 3px;
}

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

.hidden {
  display: none !important;
}

.app-shell {
  min-height: 100vh;
  padding-bottom: calc(28px + var(--safe-bottom));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: calc(68px + var(--safe-top));
  padding: calc(10px + var(--safe-top)) 16px 10px;
  background: rgba(250, 252, 255, 0.9);
  border-bottom: 1px solid rgba(229, 234, 245, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(49, 87, 213, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.icon-button span {
  font-size: 20px;
  line-height: 1;
}

.coin-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 40px;
  padding: 0 11px;
  border: 1px solid #f2dfaf;
  border-radius: 999px;
  background: #fffbec;
  color: #8c6716;
  font-size: 13px;
}

main {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.screen {
  display: none;
  padding: 24px 16px 44px;
  animation: screenIn 0.28s ease;
}

.screen.active {
  display: block;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-card {
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 460px;
  padding: 28px 24px;
  border: 1px solid #dde5ff;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(235,240,255,0.94));
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.page-heading h1,
.quiz-card h1,
.result-card h1 {
  margin: 0;
  letter-spacing: -0.035em;
}

.hero-copy h1 {
  max-width: 650px;
  font-size: clamp(34px, 8vw, 60px);
  line-height: 1.02;
}

.hero-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.18s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.995);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #5f75e7);
  box-shadow: 0 12px 24px rgba(49, 87, 213, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #5369d9);
}

.btn-secondary {
  color: var(--primary);
  background: var(--primary-soft);
}

.btn-ghost {
  color: var(--muted);
  background: transparent;
}

.btn-lg {
  min-height: 54px;
  border-radius: 16px;
}

.btn-block {
  width: 100%;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin-top: 18px;
}

.book-art {
  position: relative;
  width: 180px;
  height: 170px;
}

.book-glow {
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 170px;
  height: 90px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(93, 117, 231, 0.22);
  filter: blur(22px);
}

.book-cover {
  position: absolute;
  left: 50%;
  top: 15px;
  width: 116px;
  height: 142px;
  transform: translateX(-50%) rotate(-5deg);
  border-radius: 10px 18px 18px 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.13), transparent 12%),
    linear-gradient(145deg, #304fba, #6a7fe3);
  border: 3px solid rgba(255,255,255,0.75);
  box-shadow: 12px 18px 35px rgba(40, 59, 124, 0.28);
}

.book-cover::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  bottom: 8px;
  width: 11px;
  border-radius: 8px 0 0 8px;
  background: #203a93;
}

.cross {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff1b9;
  font-size: 54px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.spark {
  position: absolute;
  color: var(--accent);
  font-size: 28px;
  animation: floatSpark 3s ease-in-out infinite;
}

.spark-1 { right: 4px; top: 12px; }
.spark-2 { left: 8px; top: 58px; animation-delay: 0.8s; }
.spark-3 { right: 16px; bottom: 15px; animation-delay: 1.4s; }

@keyframes floatSpark {
  50% { transform: translateY(-7px) rotate(8deg); opacity: 0.7; }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 86px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--surface-soft);
  font-size: 24px;
}

.stat-card small,
.stat-card strong {
  display: block;
}

.stat-card small {
  color: var(--muted);
  font-size: 12px;
}

.stat-card strong {
  margin-top: 2px;
  font-size: 22px;
}

.section-card {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-heading.compact .eyebrow {
  margin-bottom: 4px;
}

.section-heading h2 {
  margin: 0;
  font-size: 18px;
}

.daily-tip p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tip-icon {
  font-size: 28px;
}

.page-heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}

.page-heading h1 {
  font-size: clamp(30px, 8vw, 48px);
}

.page-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-open {
  background: var(--primary);
}

.dot-locked {
  background: #b8c0d1;
}

.level-summary {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.level-summary > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.level-summary small {
  color: var(--muted);
}

.progress-track {
  overflow: hidden;
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: #e9edf6;
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #7588e8);
  transition: width 0.35s ease;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.level-card {
  position: relative;
  min-height: 128px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: left;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: 0.18s ease;
}

.level-card:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: #cdd7fb;
  box-shadow: 0 12px 32px rgba(41,64,125,0.11);
}

.level-card:disabled {
  cursor: not-allowed;
}

.level-card.locked {
  color: #929caf;
  background: #f6f8fb;
}

.level-card.incomplete {
  color: #929caf;
  background:
    repeating-linear-gradient(
      -45deg,
      #fafbfe,
      #fafbfe 10px,
      #f5f7fb 10px,
      #f5f7fb 20px
    );
}

.level-card .level-number {
  display: block;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.level-card .level-meta {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.level-card .level-stars {
  display: flex;
  gap: 2px;
  margin-top: 16px;
  color: #d3d9e5;
  font-size: 15px;
}

.level-card .level-stars .earned {
  color: var(--accent);
}

.level-card .level-state {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--surface-soft);
  font-size: 14px;
}

.game-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.game-status > div:first-child,
.game-score {
  display: flex;
  align-items: center;
  gap: 9px;
}

.game-status strong,
.game-score strong {
  font-size: 14px;
}

.game-score span {
  color: var(--muted);
  font-size: 12px;
}

.level-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 800;
}

.game-progress {
  margin-bottom: 16px;
}

.quiz-card {
  padding: 23px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.question-number {
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quiz-card h1 {
  max-width: 850px;
  font-size: clamp(25px, 7vw, 38px);
  line-height: 1.22;
}

.answers-grid {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.answer-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 64px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition: 0.18s ease;
}

.answer-button:hover:not(:disabled) {
  border-color: #b8c7fa;
  background: #fbfcff;
  transform: translateY(-1px);
}

.answer-button:disabled {
  cursor: default;
}

.answer-letter {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 850;
}

.answer-text {
  font-weight: 700;
  line-height: 1.45;
}

.answer-button.correct {
  border-color: #9bd9bc;
  background: var(--success-soft);
}

.answer-button.correct .answer-letter {
  color: #fff;
  background: var(--success);
}

.answer-button.wrong {
  border-color: #efabb1;
  background: var(--danger-soft);
}

.answer-button.wrong .answer-letter {
  color: #fff;
  background: var(--danger);
}

.answer-button.eliminated {
  opacity: 0.28;
  pointer-events: none;
  transform: scale(0.985);
}

.lifeline-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--border);
}

.lifeline {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
  text-align: left;
  color: var(--text);
  background: var(--surface-soft);
  cursor: pointer;
}

.lifeline:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lifeline-icon {
  display: grid;
  place-items: center;
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 18px;
  font-weight: 900;
}

.lifeline strong,
.lifeline small {
  display: block;
}

.lifeline small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.feedback-panel {
  margin-top: 15px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feedback-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-badge {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: #fff;
  background: var(--success);
  font-size: 23px;
  font-weight: 900;
}

.feedback-panel.is-wrong .feedback-badge {
  background: var(--danger);
}

.feedback-panel.is-skip .feedback-badge {
  color: #7c5a11;
  background: var(--accent);
}

.feedback-title-row small {
  color: var(--muted);
}

.feedback-title-row h2 {
  margin: 2px 0 0;
  font-size: 20px;
}

.verse-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 12px;
  padding: 13px;
  border-radius: 14px;
  color: #5e4a1c;
  background: var(--warning-soft);
}

.verse-card span {
  font-size: 12px;
}

.verse-card strong {
  text-align: right;
  font-size: 13px;
}

.feedback-panel p {
  margin: 0 0 17px;
  color: var(--muted);
  line-height: 1.7;
}

.result-card {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.result-medal {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff8dc, #ffefb0);
  font-size: 43px;
  transform: rotate(-3deg);
}

.result-card h1 {
  font-size: clamp(32px, 9vw, 52px);
}

.result-card > p {
  max-width: 520px;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.stars-result {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 19px 0;
  color: #d7dce7;
  font-size: 36px;
}

.stars-result .earned {
  color: var(--accent);
  animation: starPop 0.5s ease both;
}

@keyframes starPop {
  0% { transform: scale(0.4) rotate(-18deg); opacity: 0; }
  70% { transform: scale(1.15) rotate(5deg); }
  100% { transform: scale(1); opacity: 1; }
}

.result-score-ring {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0deg, #edf0f7 0deg);
  position: relative;
}

.result-score-ring::before {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--surface);
}

.result-score-ring > div {
  position: relative;
  z-index: 1;
}

.result-score-ring strong,
.result-score-ring small {
  display: block;
}

.result-score-ring strong {
  font-size: 28px;
}

.result-score-ring small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.result-stats > div {
  padding: 14px 9px;
  border-radius: 15px;
  background: var(--surface-soft);
}

.result-stats span,
.result-stats small,
.result-stats strong {
  display: block;
}

.result-stats span {
  margin-bottom: 5px;
}

.result-stats small {
  color: var(--muted);
  font-size: 10px;
}

.result-stats strong {
  margin-top: 3px;
  font-size: 20px;
}

.result-actions {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.toast {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: calc(24px + var(--safe-bottom));
  width: min(90vw, 460px);
  padding: 13px 16px;
  transform: translate(-50%, 140%);
  border-radius: 14px;
  color: #fff;
  background: #202a43;
  box-shadow: 0 14px 36px rgba(22,30,51,0.25);
  text-align: center;
  font-size: 13px;
  opacity: 0;
  transition: 0.26s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -24px;
  width: 9px;
  height: 16px;
  border-radius: 3px;
  background: hsl(var(--hue), 78%, 58%);
  animation: confettiFall var(--duration) linear forwards;
}

@keyframes confettiFall {
  to {
    transform: translate3d(var(--drift), 110vh, 0) rotate(720deg);
    opacity: 0.9;
  }
}

.noscript {
  margin: 20px;
  padding: 16px;
  border-radius: 14px;
  color: #7b2d35;
  background: #fff0f1;
}

@media (min-width: 600px) {
  .topbar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .screen {
    padding: 32px 24px 54px;
  }

  .hero-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

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

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

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

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

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

@media (min-width: 860px) {
  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: center;
    min-height: 470px;
    padding: 46px;
  }

  .hero-visual {
    min-height: 320px;
    margin-top: 0;
  }

  .book-art {
    transform: scale(1.32);
  }

  .page-heading {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .level-summary {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }

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

  .quiz-card,
  .feedback-panel {
    padding: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.hub-return{font-weight:900;text-decoration:none}.topbar{grid-template-columns:auto auto 1fr auto}
@media(max-width:430px){.brand small{display:none}}

.hub-return img{width:24px;height:24px;object-fit:contain;display:block}

.share-overlay{position:fixed;inset:0;z-index:160;display:grid;place-items:end center;padding:16px;background:rgba(20,28,48,.48);backdrop-filter:blur(6px)}
.share-sheet{width:min(100%,520px);padding:18px 16px calc(18px + env(safe-area-inset-bottom,0px));border-radius:26px;background:#fff;box-shadow:0 26px 70px rgba(20,28,48,.28)}
.share-sheet-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}.share-sheet-head small,.share-sheet-head strong{display:block}.share-sheet-head small{color:var(--primary);font-size:9px;font-weight:900;letter-spacing:.12em}.share-sheet-head strong{margin-top:2px;font-size:18px}.share-close{display:grid;place-items:center;width:38px;height:38px;border:0;border-radius:12px;background:var(--surface2);color:var(--muted);font-size:24px;cursor:pointer}
.share-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}.share-option{display:grid;place-items:center;gap:5px;min-height:86px;padding:10px;border:1px solid var(--border);border-radius:16px;background:var(--surface2);color:var(--text);cursor:pointer;text-align:center}.share-option span{display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:#fff;font-size:20px;font-weight:900;box-shadow:var(--soft)}.share-option b{font-size:10px}
.share-result-btn{background:#eef3ff;color:var(--primary)}
@media(min-width:600px){.share-grid{grid-template-columns:repeat(5,1fr)}}
