:root {
  color-scheme: light;
  --brand: #1d6bed;
  --brand-dark: #1558c4;
  --brand-light: #4f8cff;
  --brand-soft: #eef4ff;
  --text: #111827;
  --text-muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f8fafc;
  --card: #ffffff;
  --shadow: 0 10px 40px rgba(17, 24, 39, 0.08);
  --radius: 16px;
  --header-h: 72px;
  --announcement-bar-h: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover {
  color: var(--brand);
  background: var(--brand-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(29, 107, 237, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(29, 107, 237, 0.36);
}

.btn-outline {
  background: #fff;
  color: var(--brand);
  border: 1px solid #c7dafc;
}

.btn-outline:hover {
  background: var(--brand-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--line);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Announcement bar */
.announcement-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: linear-gradient(90deg, #eef4ff 0%, #f8fbff 100%);
  border-bottom: 1px solid #dbeafe;
}

.announcement-bar[hidden] {
  display: none;
}

body.has-announcement-bar {
  --announcement-bar-h: 44px;
}

.announcement-bar-inner {
  min-height: var(--announcement-bar-h);
  display: flex;
  align-items: center;
}

.announcement-bar-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border: none;
  background: transparent;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}

.announcement-bar-btn:hover {
  opacity: 0.85;
}

.announcement-bar-badge {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.announcement-bar-text {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.announcement-bar-carousel {
  display: block;
  height: 1.4em;
  overflow: hidden;
}

.announcement-carousel-track {
  display: block;
  will-change: transform;
}

.announcement-carousel-track.is-animating {
  transition: transform 0.45s ease;
}

.announcement-carousel-item {
  display: block;
  height: 1.4em;
  line-height: 1.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-bar-action {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
}

.announcement-bar-action::after {
  content: " ›";
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + var(--announcement-bar-h) + 48px) 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(79, 140, 255, 0.22), transparent),
    linear-gradient(180deg, #eef4ff 0%, var(--bg) 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(29, 107, 237, 0.1);
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 28px;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  min-width: 190px;
  transition: transform 0.15s, box-shadow 0.2s;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.2);
}

.store-btn.light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.store-btn.android {
  background: #1b5e3b;
}

.store-btn svg,
.store-btn .store-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.store-btn.light .store-icon {
  width: 28px;
  height: 28px;
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.75;
  line-height: 1.2;
}

.store-btn strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.stat-card strong {
  display: block;
  font-size: 1.35rem;
  color: var(--brand);
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mock {
  width: min(280px, 100%);
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(160deg, #1f2937, #374151);
  box-shadow: var(--shadow), 0 30px 60px rgba(29, 107, 237, 0.15);
}

.phone-mock img {
  border-radius: 24px;
  aspect-ratio: 9/19.5;
  object-fit: cover;
  width: 100%;
}

.phone-mock.secondary {
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: 52%;
  opacity: 0.92;
  transform: rotate(6deg);
  z-index: -1;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.about-card p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  border: none;
}

.about-highlight p {
  color: rgba(255, 255, 255, 0.92);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.screenshot-card {
  margin: 0;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  background: linear-gradient(180deg, #eef4ff 0%, #f8fafc 100%);
}

.screenshot-card figcaption {
  padding: 14px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  border-top: 1px solid var(--line);
  background: #fff;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.security-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.security-item .num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.security-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.security-item p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* Download */
.download-section {
  background: linear-gradient(135deg, #1d6bed 0%, #4f8cff 100%);
  color: #fff;
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
}

.download-section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.download-section > p {
  margin: 0 0 32px;
  opacity: 0.92;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.download-meta {
  font-size: 0.9rem;
  opacity: 0.85;
}

.download-meta span {
  margin: 0 8px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--brand);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* Footer */
.site-footer {
  padding: 56px 0 calc(32px + env(safe-area-inset-bottom));
  background: #0f172a;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: #64748b;
}

/* Announcement modal */
.announcement-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.announcement-overlay.is-visible {
  opacity: 1;
}

.announcement-overlay[hidden] {
  display: none;
}

.announcement-dialog {
  width: min(480px, 100%);
  max-height: min(85vh, 640px);
  overflow-y: auto;
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.22);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.announcement-overlay.is-visible .announcement-dialog {
  transform: translateY(0) scale(1);
}

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

.announcement-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
}

.announcement-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.announcement-close:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.announcement-title {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.35;
}

.announcement-body {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  white-space: pre-line;
}

.announcement-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.announcement-dismiss {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.announcement-dismiss input {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
  cursor: pointer;
}

body.announcement-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  :root {
    --header-h: 60px;
  }

  .container {
    width: min(1120px, calc(100% - 40px));
  }

  .hero-grid,
  .about-grid,
  .feature-grid,
  .security-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: calc(var(--header-h) + var(--announcement-bar-h) + 24px) 0 48px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-cta {
    justify-content: center;
    margin-bottom: 16px;
  }

  .hero-cta:last-of-type {
    margin-bottom: 28px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 12px 14px;
  }

  .stat-card strong {
    font-size: 1.15rem;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 4px;
  }

  .phone-mock {
    width: min(220px, 72vw);
    margin: 0 auto;
  }

  .phone-mock.secondary {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head p {
    font-size: 0.975rem;
    line-height: 1.7;
  }

  .about-card {
    padding: 22px 20px;
  }

  .about-card p {
    font-size: 0.925rem;
    line-height: 1.75;
  }

  .feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 6px;
    padding: 18px;
  }

  .feature-icon {
    grid-row: 1 / 3;
    align-self: center;
    width: 42px;
    height: 42px;
    margin-bottom: 0;
  }

  .feature-card h3 {
    margin: 0;
    align-self: end;
    font-size: 1rem;
  }

  .feature-card p {
    grid-column: 2;
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .security-item {
    padding: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .header-actions .btn-ghost {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .brand {
    font-size: 1.1rem;
    gap: 10px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-col a {
    padding: 6px 0;
    font-size: 0.925rem;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .faq-answer p {
    padding: 0 18px 16px;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .announcement-dialog {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .announcement-title {
    font-size: 1.2rem;
  }

  .announcement-body {
    font-size: 0.9rem;
  }
}

@media (max-width: 1100px) {
  .screenshot-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .screenshot-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 4px 0 12px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .screenshot-gallery::-webkit-scrollbar {
    display: none;
  }

  .screenshot-card {
    flex: 0 0 min(68vw, 240px);
    scroll-snap-align: center;
  }

  .screenshot-card figcaption {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .screenshot-scroll-hint {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-col a {
    padding: 8px 0;
    min-height: 36px;
    display: flex;
    align-items: center;
  }

  .download-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    line-height: 1.6;
  }

  .download-meta span:nth-child(2) {
    display: none;
  }

  .download-section {
    border-radius: 20px;
    padding: 36px 20px;
  }

  .download-section > p {
    margin-bottom: 24px;
    font-size: 0.95rem;
  }

  body.has-announcement-bar {
    --announcement-bar-h: 40px;
  }

  .announcement-bar-text {
    font-size: 0.8rem;
  }

  .announcement-bar-action {
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .hero-badge {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-cta .store-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .security-item .num {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .security-item h3 {
    font-size: 0.95rem;
  }

  .security-item p {
    font-size: 0.875rem;
    line-height: 1.65;
  }
}

@media (max-width: 560px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-buttons .store-btn {
    width: 100%;
    max-width: 280px;
  }

  .stat-card span {
    font-size: 0.75rem;
  }
}

.screenshot-scroll-hint {
  display: none;
}
