:root {
  color-scheme: light;
  --shell-width: 624px;
  --outer-bg: #d8dde4;
  --page-bg: #f5f6f8;
  --surface: #ffffff;
  --surface-soft: #eef0f4;
  --text: #14181f;
  --muted: #5f6673;
  --line: rgba(20, 24, 31, 0.12);
  --primary: #0f6e8c;
  --primary-strong: #0a5670;
  --primary-ink: #ffffff;
  --primary-rgb: 15, 110, 140;
  --accent: #e4572e;
  --accent-rgb: 228, 87, 46;
  --radius-sm: 10px;
  --radius-md: 16px;
  --shadow: 0 18px 48px rgba(20, 28, 40, 0.12);
  --sticky-height: 70px;
  --font-display: "Bahnschrift", "Segoe UI Variable Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--outer-bg);
  color: var(--text);
  font: 400 16px/1.65 var(--font-body);
}

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  background: rgba(var(--primary-rgb), 0.22);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 50%;
  padding: 9px 16px;
  transform: translate(-50%, -160%);
  border-radius: 999px;
  background: var(--text);
  color: var(--page-bg);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.page-shell {
  position: relative;
  width: 100%;
  max-width: var(--shell-width);
  min-height: 100dvh;
  margin: 0 auto;
  /* 避免 clip 把第三方客服浮层裁成“整页铺满”的错觉/异常 */
  overflow-x: clip;
  overflow-y: visible;
  background: var(--page-bg);
  box-shadow: var(--shadow);
}

.has-sticky-download {
  padding-bottom: calc(var(--sticky-height) + env(safe-area-inset-bottom));
}

.mobile-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--page-bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 clamp(16px, 5vw, 28px);
}

.brand-mini {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(var(--primary-rgb), 0.28);
  border-radius: 9px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.header-link,
.text-link,
.quiet-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 4px;
}

.header-link:hover,
.header-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--primary);
  text-decoration: underline;
}

.quiet-link {
  opacity: 0.85;
}

.kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 6.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.section-heading p:not(.kicker) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.primary-button,
.action-primary,
.game-action,
.hub-link,
.sticky-download,
.section-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--primary-ink);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, filter 160ms ease;
}

.action-secondary,
.secondary-actions button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.primary-button:hover,
.action-primary:hover,
.game-action:hover,
.hub-link:hover,
.sticky-download:hover,
.section-link:hover,
.action-secondary:hover,
.secondary-actions button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.primary-button:focus-visible,
.action-primary:focus-visible,
.game-action:focus-visible,
.hub-link:focus-visible,
.sticky-download:focus-visible,
.section-link:focus-visible,
.action-secondary:focus-visible,
.secondary-actions button:focus-visible,
.filter-tabs button:focus-visible,
.search-box input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(var(--primary-rgb), 0.35);
  outline-offset: 3px;
}

/* Landing — compact hero + benefits */
.landing-page {
  padding-bottom: 8px;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(var(--accent-rgb), 0.1), transparent 42%),
    color-mix(in srgb, var(--page-bg) 92%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header .header-inner {
  min-height: 68px;
  gap: 12px;
}

.brand-block {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  border: 2px solid rgba(var(--primary-rgb), 0.35);
  border-radius: 14px;
  background: rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.14);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-copy strong {
  display: block;
  overflow: hidden;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy em {
  display: inline-flex;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.header-chip {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}

/* Full-bleed multi-image carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #1a120c;
  animation: rise-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: clamp(200px, 46vw, 260px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 480ms ease, visibility 480ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 8, 0.62));
  content: "";
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 28px;
  left: 16px;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.carousel-dots button.is-active {
  width: 18px;
  border-radius: 999px;
  background: #fff;
}

.benefit-board {
  margin: 14px clamp(12px, 4vw, 20px) 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb), 0.1), transparent 40%),
    var(--surface);
  animation: rise-in 700ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.benefit-badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff4d2, #ffe7a8);
  border: 1px solid rgba(212, 140, 0, 0.28);
}

.code-row .code-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.code-row .code-meta span {
  color: #8a5a00;
  font-size: 11px;
  font-weight: 700;
}

.code-row code {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #9a4b00;
}

.code-row button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.reward-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.reward-item {
  padding: 10px 8px;
  border-radius: 12px;
  background: var(--surface-soft);
  text-align: center;
}

.reward-item b {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.reward-item span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.benefit-flow {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.benefit-flow li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.benefit-flow i {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.benefit-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.process-note,
.action-card,
.announcement,
.more-games-callout,
.download-hero,
.install-section,
.faq-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.section-link {
  width: 100%;
  margin-top: 22px;
}

.sticky-download {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom));
  width: min(calc(100% - 28px), calc(var(--shell-width) - 28px));
  transform: translateX(-50%);
  box-shadow: 0 14px 34px rgba(var(--primary-rgb), 0.28);
  animation: sticky-in 500ms 200ms both;
}

.sticky-download:hover {
  transform: translateX(-50%) translateY(-2px);
}

.legal-footer {
  padding: 28px clamp(18px, 5.5vw, 32px) 36px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.legal-footer a {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

/* Download */
.download-hero {
  margin: 18px clamp(16px, 5vw, 28px) 0;
  padding: 20px;
}

.game-identity {
  display: flex;
  gap: 16px;
  align-items: center;
}

.game-icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.18), rgba(var(--accent-rgb), 0.16));
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
}

.game-icon-photo img,
.cover-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 18%;
  transform: scale(1.35);
}

.game-meta .kicker {
  margin-bottom: 4px;
}

.game-meta h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.game-meta > p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.game-tags span {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.process-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(var(--primary-rgb), 0.06);
}

.process-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

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

.download-actions,
.install-section,
.faq-section,
.more-games-callout {
  margin: 18px clamp(16px, 5vw, 28px) 0;
}

.download-actions .section-heading,
.install-section .section-heading,
.faq-section .section-heading {
  padding: 0 2px;
}

.action-panel {
  display: grid;
  gap: 12px;
}

.action-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.action-card-featured {
  border-color: rgba(var(--primary-rgb), 0.35);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.08), var(--surface));
}

.action-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}

.action-copy h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 17px;
}

.action-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.secondary-actions {
  display: grid;
  gap: 10px;
}

.backup-details summary {
  cursor: pointer;
  font-weight: 750;
  color: var(--primary);
}

.backup-details .secondary-actions {
  margin-top: 12px;
}

.install-section,
.faq-section {
  padding: 20px;
}

.install-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.install-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.install-steps li:first-child {
  border-top: 0;
  padding-top: 0;
}

.install-steps li > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.install-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.install-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list details {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 750;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.more-games-callout {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.more-games-callout h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
}

.more-games-callout p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Games portal */
.portal-header {
  padding: 28px clamp(16px, 5vw, 28px) 8px;
}

.portal-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 40px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.portal-header > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.announcement {
  margin-top: 16px;
  padding: 14px 16px;
}

.announcement strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.announcement p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.portal-controls {
  display: grid;
  gap: 12px;
  padding: 16px clamp(16px, 5vw, 28px) 8px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-icon {
  color: var(--muted);
  font-size: 16px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tabs button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.filter-tabs button.is-active,
.filter-tabs button[aria-pressed="true"] {
  border-color: rgba(var(--primary-rgb), 0.4);
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
}

.game-list {
  display: grid;
  gap: 12px;
  padding: 8px clamp(16px, 5vw, 28px) 24px;
}

.game-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.game-cover {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
}

.game-info {
  min-width: 0;
}

.game-info h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.game-info p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.game-action {
  grid-column: 1 / -1;
  width: 100%;
}

.game-empty {
  padding: 28px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}

.game-empty strong {
  display: block;
  margin-bottom: 6px;
}

.game-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cover-fantasy { background: linear-gradient(145deg, #3d5a80, #1d3557); }
.cover-star { background: linear-gradient(145deg, #457b9d, #1d3557); }
.cover-myth { background: linear-gradient(145deg, #588157, #344e41); }
.cover-island { background: linear-gradient(145deg, #e9c46a, #f4a261); color: #3d2c1e; }
.cover-guard { background: linear-gradient(145deg, #2a9d8f, #264653); }
.cover-night { background: linear-gradient(145deg, #9b2226, #370617); }

.demo-toast {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: calc(88px + env(safe-area-inset-bottom));
  width: min(calc(100% - 32px), 360px);
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(18, 22, 30, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

/* Hub */
.template-hub {
  padding: 28px clamp(18px, 5vw, 32px) 12px;
}

.hub-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 44px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.hub-intro p:not(.kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.template-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.template-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.template-preview {
  height: 132px;
}

.template-card .kicker,
.template-card h2,
.template-card > p {
  padding: 0 18px;
}

.template-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
}

.template-card > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.template-card .kicker {
  margin-top: 16px;
}

.hub-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 18px 18px;
}

.hub-link {
  min-height: 42px;
  padding: 0 8px;
  font-size: 13px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sticky-in {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 380px) {
  .header-chip {
    display: none;
  }

  .brand-copy strong {
    font-size: 16px;
  }
}

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