:root {
  /* Brasil: verde · amarelo · azul da bandeira */
  --bg: #e7f5ea;
  --ink: #0b1f14;
  --muted: #4a6b56;
  --teal: #009b3a;
  --teal-deep: #006b28;
  --gold: #ffdf00;
  --gold-deep: #e6b800;
  --blue: #002776;
  --blue-soft: #1a4a9c;
  --citrus: #ff7a00;
  --card: #ffffff;
  --line: rgba(0, 103, 40, 0.14);
  --radius: 14px;
  --page-max: 1120px;
  --gap: 16px;
  --font-brand: "Sora", "Figtree", system-ui, sans-serif;
  --font-display: "Sora", "Figtree", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: var(--font-body), system-ui, sans-serif;
  background-color: #d8f0de;
  background-image:
    radial-gradient(ellipse 90% 55% at 10% -10%, rgba(255, 223, 0, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(0, 39, 118, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(0, 155, 58, 0.28), transparent 55%),
    linear-gradient(165deg, #f4fff6 0%, #dff5e4 35%, #c8ebd2 70%, #b7e0c4 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 46px,
      rgba(0, 155, 58, 0.045) 46px,
      rgba(0, 155, 58, 0.045) 48px
    ),
    repeating-linear-gradient(
      72deg,
      transparent 0,
      transparent 70px,
      rgba(255, 223, 0, 0.05) 70px,
      rgba(255, 223, 0, 0.05) 72px
    );
}

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

h1,
h2,
h3,
.brand {
  font-family: var(--font-display), var(--font-body), sans-serif;
  letter-spacing: -0.03em;
}

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

/* ===== 页面框架：整页居中 ===== */
.shell {
  position: relative;
  z-index: 1;
  min-height: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 32px;
}

.page__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ===== Header ===== */
.dl-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: linear-gradient(90deg, #0b3d91 0%, #0a6b3c 55%, #009b3a 100%);
  color: #fff;
  position: relative;
  z-index: 50;
}

.dl-banner[hidden] {
  display: none !important;
}

.dl-banner__close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #7dffa8;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.dl-banner__hit {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.dl-banner__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.dl-banner__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.dl-banner__title {
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  white-space: nowrap;
}

.dl-banner__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  background: #ffe14a;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.dl-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #14c45a;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .dl-banner {
    padding: 6px 8px;
    gap: 4px;
  }
  .dl-banner__icon {
    width: 40px;
    height: 40px;
  }
  .dl-banner__title {
    font-size: 12px;
  }
  .dl-banner__cta {
    padding: 9px 12px;
    font-size: 12px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  margin-bottom: 12px;
}

.site-header__bar {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  min-height: 0;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  line-height: 0;
}

.site-header__logo {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(220px, 52vw);
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.site-header__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 55%, var(--blue) 100%);
  color: var(--gold);
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-feature-settings: "tnum" 1;
  box-shadow: 0 0 0 2px rgba(255, 223, 0, 0.55);
}

.site-header__name {
  display: block;
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  font-style: normal;
  font-feature-settings: "tnum" 1, "kern" 1;
}

.site-header__tag {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
}

.site-header__nav {
  display: none;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

.site-header__link {
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.site-header__link:hover {
  background: rgba(0, 155, 58, 0.1);
  color: var(--teal-deep);
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.site-header__live {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.site-header__mobile {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 0 8px;
  flex-direction: row !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.site-header__mobile::-webkit-scrollbar {
  display: none;
}

.site-header__chip {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 155, 58, 0.12);
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 959px) {
  .site-header__bar {
    position: relative;
    justify-content: flex-end;
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 48px;
  }
  .site-header__brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .site-header__logo {
    height: 36px;
    max-width: min(200px, 56vw);
    object-position: center;
  }
  .site-header__right {
    gap: 4px;
    position: relative;
    z-index: 2;
  }
  .site-header__mobile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 6px 5px;
    overflow: visible;
    padding: 0 0 10px;
  }
  .site-header__chip {
    flex: 0 0 calc((100% - 20px) / 5);
    max-width: calc((100% - 20px) / 5);
    text-align: center;
    box-sizing: border-box;
    padding: 6px 2px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 960px) {
  .site-header__logo {
    height: 44px;
    max-width: 240px;
  }
  .site-header__nav {
    display: flex;
  }
  .site-header__mobile {
    display: none;
  }
}

/* ===== Ads: mid-page, each partner as its own card ===== */
.ad-block {
  background: linear-gradient(160deg, #006b28 0%, #009b3a 45%, #002776 130%);
  border: 1px solid rgba(255, 223, 0, 0.28);
  border-radius: 14px;
  padding: 10px 10px 12px;
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 223, 0, 0.18),
    0 8px 24px rgba(0, 103, 40, 0.18);
}

.ad-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
  padding: 0 2px;
}

.ad-block__all {
  font-size: 12px;
  font-weight: 700;
  color: #ffdf00;
}

.ad-block__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ad-block__hint {
  display: none;
}

.ad-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ad-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

@media (max-width: 720px) {
  .ad-row {
    gap: 6px;
  }
}

.ad-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 10px 6px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ad-tile:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 223, 0, 0.45);
  transform: translateY(-1px);
}

.ad-tile__hit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  text-decoration: none;
  color: #fff;
}

.ad-tile__icon {
  display: block;
  width: 100%;
  max-width: 52px;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ad-tile__hit:hover .ad-tile__icon {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.ad-tile__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ad-tile__name {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(8px, 1.55vw, 10px);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  word-break: break-word;
}

.ad-tile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.ad-tile__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* ===== 缂哄浘鍗犱綅灏忓浘鏍?===== */
.glyph {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.glyph__text {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.thumb-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.thumb-row__body {
  min-width: 0;
  flex: 1;
}

.game-thumb {
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  background: #0b1f1d;
  box-shadow: 0 4px 12px rgba(12, 107, 102, 0.16);
  image-rendering: -webkit-optimize-contrast;
}

/* ===== 动效保留 ===== */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 223, 0, 0.55);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 223, 0, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 223, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 223, 0, 0);
  }
}

.reels {
  animation: drift 14s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.rise {
  animation: rise 0.7s ease both;
}

.rise-delay-1 {
  animation-delay: 0.08s;
}
.rise-delay-2 {
  animation-delay: 0.16s;
}
.rise-delay-3 {
  animation-delay: 0.24s;
}

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

/* PHP helpers */
:root { --font-brand: "Sora", "Figtree", system-ui, sans-serif; --font-display: "Sora", "Figtree", system-ui, sans-serif; --font-body: "Figtree", system-ui, sans-serif; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.tiny { font-size: 11px; }
.clamp2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card { padding: 14px; }
.card h3 { margin: 4px 0; font-size: 16px; }
.grid-2 { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-3 { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid-3eq {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.bonus-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  padding: 12px;
}
.bonus-card h3 { margin: 4px 0; font-size: 15px; }
.bonus-card__cta {
  margin-top: auto;
  align-self: flex-start;
}
.bonus-catalog {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.bonus-catalog .bonus-card .muted.small,
.bonus-catalog .bonus-card .clamp2 {
  font-size: 12px;
}
@media (max-width: 560px) {
  .bonus-catalog { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .grid-3eq { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .grid-3eq { grid-template-columns: 1fr; }
}
.stack { display: flex; flex-direction: column; gap: 12px; }
.hero {
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 155, 58, 0.14), transparent 42%, rgba(255, 223, 0, 0.22)),
    var(--card);
}
.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 39, 118, 0.16), transparent 70%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(28px, 5vw, 42px); margin: 8px 0; line-height: 0.95; position: relative; z-index: 1; }
.btn { display: inline-block; padding: 10px 14px; border-radius: 12px; font-weight: 700; font-size: 13px; }
.btn-teal {
  background: linear-gradient(180deg, #00b344 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 155, 58, 0.28);
}
.btn-ink { background: var(--blue); color: #fff; }
.btn-soft { background: rgba(0, 155, 58, 0.1); color: var(--teal-deep); }
.list-row { display: flex; gap: 10px; align-items: center; padding: 10px; background: rgba(0, 155, 58, 0.06); border-radius: 12px; }
.footer { padding: 18px 20px; }
.footer > strong {
  font-family: var(--font-brand);
  letter-spacing: 0.04em;
  font-feature-settings: "tnum" 1;
}
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 8px; margin-bottom: 10px; }
.section-title h2 { margin: 0; font-size: 22px; }
.hubs { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.hubs--boards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}
.board-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  min-height: 128px;
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
}
.board-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.board-card__body strong {
  font-size: 15px;
  line-height: 1.2;
}
.board-card__body .tiny {
  margin-top: auto;
}
@media (max-width: 900px) {
  .hubs--boards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .hubs--boards {
    grid-template-columns: 1fr;
  }
}
.board-card__new {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(0, 155, 58, 0.14);
  color: var(--teal-deep);
  font-size: 10px;
  font-weight: 800;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.board-card--today {
  border-color: rgba(0, 155, 58, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 155, 58, 0.12);
}
.forum-more {
  margin: 10px 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}
.forum-more__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  user-select: none;
}
.forum-more__summary::-webkit-details-marker { display: none; }
.forum-more__summary::before {
  content: "▾";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(0, 155, 58, 0.12);
  color: var(--teal-deep);
  font-size: 12px;
  transition: transform 0.2s ease;
}
.forum-more[open] .forum-more__summary::before {
  transform: rotate(-180deg);
}
.forum-more__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.forum-more__hint {
  margin-left: auto;
  font-weight: 600;
}
.forum-more__grid {
  padding: 0 12px 12px;
}
.hubs--shortcuts {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.hub-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  min-width: 0;
  text-decoration: none;
}
.hub-chip .glyph {
  width: 32px !important;
  height: 32px !important;
}
.hub-chip__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.hub-chip__text strong {
  font-size: 13px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hub-chip__text .tiny {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 900px) {
  .hubs--shortcuts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .hubs--shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.demo-box { background: linear-gradient(160deg, #002776, #006b28); color: #fff; border-radius: 16px; padding: 24px; text-align: center; }
.demo-box a, .demo-box .btn { margin-top: 12px; }
.demo-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.demo-orient-hint {
  margin: 0 0 8px;
  color: #b45309;
  font-weight: 700;
}

/* Demo: caixa simétrica; iframe 100% (sem scale — evita lado torto e scroll travado) */
.demo-stage-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.demo-stage {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: #000;
  border-radius: 16px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: auto;
  display: block;
}
.demo-stage--phone {
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: 70dvh;
  touch-action: none;
}
.demo-page .demo-stage {
  margin-left: auto !important;
  margin-right: auto !important;
}
.demo-stage--desk {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  max-height: 70vh;
  touch-action: manipulation;
}
.demo-stage:fullscreen,
.demo-stage:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 0;
}
.demo-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
  max-width: none;
}

@media (max-width: 768px) {
  .demo-page--mobile {
    overflow: visible;
  }
  .demo-stage--phone {
    width: min(100%, calc(70dvh * 9 / 16));
  }
}
.provider-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.provider-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 155, 58, 0.06);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.provider-tab:hover { border-color: var(--teal); }
.provider-tab.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.provider-tab__n {
  font-size: 11px;
  opacity: 0.85;
  font-weight: 600;
}
.game-card--compact {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.game-card--compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 39, 22, 0.1);
}
.game-card--compact .thumb-row {
  align-items: flex-start;
}
.game-card--compact h3 {
  margin: 2px 0 2px;
  font-size: 15px;
  line-height: 1.25;
}
.game-card--compact .clamp2 {
  margin: 4px 0 0;
  line-height: 1.35;
}
.seo-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.seo-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 155, 58, 0.06);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-deep);
}
.game-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4px;
}
@media (max-width: 960px) {
  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}
table.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
table.compare th, table.compare td { border: 1px solid var(--line); padding: 10px; text-align: left; }
table.compare th { background: rgba(0, 155, 58, 0.12); }

/* ===== Upgrade: comeback / social / poll / age / copy ===== */
.site-header__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(0, 155, 58, 0.12);
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 800;
}
.demo-comeback {
  background: linear-gradient(90deg, #006b28, #002776);
  color: #fff;
  padding: 10px 0;
  border-bottom: 2px solid var(--gold);
}
.demo-comeback__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.demo-comeback__actions { display: flex; flex-wrap: wrap; gap: 6px; }
.float-social {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.float-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  text-decoration: none;
}
.float-social__wa { background: #25d366; }
.float-social__tg { background: #2aabee; }
.float-social__x { background: #111111; }
.float-social__yt { background: #ff0000; }
.float-social__ig { background: linear-gradient(45deg, #f58529, #dd2a7b 50%, #8134af); }
.float-social__kick { background: #53fc18; color: #0b0b0b; }
@media (max-width: 480px) {
  .float-social {
    right: 10px;
    bottom: 12px;
    gap: 6px;
  }
  .float-social__btn {
    min-width: 96px;
    padding: 8px 10px;
    font-size: 11px;
  }
}
.copy-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
}
.copy-code {
  background: rgba(0, 155, 58, 0.12);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 800;
}
.copy-btn { cursor: pointer; border: 0; }
.poll-option {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0, 155, 58, 0.05);
  cursor: pointer;
  justify-content: space-between;
  text-align: left;
}
.poll-option:hover { border-color: var(--teal); }
.poll-option.is-voted {
  border-color: var(--teal);
  background: rgba(0, 155, 58, 0.14);
}
.poll-option:disabled { opacity: 0.85; cursor: default; }
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(11, 31, 20, 0.72);
  padding: 16px;
}
.age-gate[hidden] { display: none !important; }
.age-gate__card {
  width: min(420px, 100%);
  padding: 22px;
  background: #fff;
}

/* Equal-height bonus/guide pairs */
.pair-block { display: flex; flex-direction: column; gap: 10px; }
.pair-block__heads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.pair-block__rows { display: flex; flex-direction: column; gap: 12px; }
.pair-block__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.pair-block__row > .compact-card,
.pair-block__row > .panel {
  height: 100%;
  min-height: 92px;
  margin: 0;
}
.compact-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  box-sizing: border-box;
}
.compact-card .thumb-row__body {
  flex: 1;
  min-width: 0;
}
.compact-card .copy-row {
  margin: 0;
}
.pair-block__spacer { visibility: hidden; min-height: 92px; }
@media (max-width: 720px) {
  .pair-block__heads,
  .pair-block__row {
    grid-template-columns: 1fr;
  }
  .pair-block__heads .section-title:last-child {
    margin-top: 8px;
  }
  .pair-block__spacer { display: none; }
}

.breadcrumbs {
  margin: 0 0 12px;
  font-size: 13px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted, #5a6b62);
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  opacity: 0.5;
}
.breadcrumbs a { color: var(--teal-deep); font-weight: 600; }
.seo-block h2 { margin-top: 0; }
.seo-block p { line-height: 1.55; }
.seo-steps {
  margin: 8px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-steps li { line-height: 1.45; }

/* Daily must-visit */
.daily-must {
  margin: 0 0 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(255, 223, 0, 0.22), transparent 50%),
    linear-gradient(135deg, #0b3d2e 0%, #009b3a 55%, #002776 120%);
  color: #fff;
  border: 1px solid rgba(255, 223, 0, 0.28);
}
.daily-must__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.daily-must__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffdf00;
}
.daily-must__title {
  margin: 4px 0 0;
  font-family: var(--font-display), var(--font-body), sans-serif;
  font-size: clamp(18px, 2.8vw, 24px);
  color: #fff;
  max-width: 28ch;
}
.daily-must__clock {
  text-align: right;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 120px;
}
.daily-must__clock strong {
  display: block;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: #ffdf00;
}
.daily-must__clock .muted { color: rgba(255, 255, 255, 0.65); }
.daily-must__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 720px) {
  .daily-must__grid { grid-template-columns: 1fr; }
  .daily-must__clock { text-align: left; }
}
.daily-must__code,
.daily-must__path {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px;
}
.daily-must__code .copy-row {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 6px 8px;
}
.daily-must__code .muted,
.daily-must__path .muted { color: rgba(255, 255, 255, 0.72); }
.daily-must__steps {
  margin: 8px 0 10px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}
.daily-must__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.daily-must .btn-soft {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.daily-must .btn-teal {
  background: #ffdf00;
  color: #0b1f14;
}

.streak-nudge {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.streak-nudge[hidden] { display: none !important; }
.streak-nudge a { font-weight: 800; color: var(--teal-deep); }
.streak-nudge--ok {
  border-color: var(--teal);
  background: rgba(0, 155, 58, 0.1);
}
.streak-nudge--warn {
  border-color: #e6b800;
  background: rgba(255, 223, 0, 0.2);
}
.streak-nudge--info {
  border-color: rgba(0, 39, 118, 0.25);
  background: rgba(0, 39, 118, 0.06);
}

.share-blast__text {
  width: 100%;
  box-sizing: border-box;
  margin-top: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.45;
  resize: vertical;
  background: rgba(0, 155, 58, 0.04);
}

.streak-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 155, 58, 0.12);
  overflow: hidden;
  margin: 8px 0;
}
.streak-bar__fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #009b3a, #ffdf00);
  transition: width 0.25s ease;
}
.checkin-recover__code {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 13px;
  letter-spacing: 0.02em;
  word-break: break-all;
}
.checkin-recover__input {
  width: 100%;
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel, #fff);
  font: inherit;
  font-size: 14px;
}
.streak-rewards__now {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-deep);
  white-space: nowrap;
}
.streak-rewards__list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}
@media (max-width: 720px) {
  .streak-rewards__list { grid-template-columns: 1fr; }
}
.streak-tier {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 155, 58, 0.04);
}
.streak-tier.is-unlocked {
  border-color: var(--teal);
  background: rgba(0, 155, 58, 0.12);
}
.streak-tier__code-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.streak-tier__masked,
.streak-tier__real {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
}
.streak-tier__copy:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.ad-tile__lock {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffdf00;
  line-height: 1.2;
}
.ad-tile__lock.is-unlocked {
  color: #fff;
}

.today-ticker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 12px 16px;
  margin: 0 0 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(0, 39, 118, 0.08), rgba(0, 155, 58, 0.12));
  border: 1px solid rgba(0, 155, 58, 0.22);
}
.today-ticker__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  flex-shrink: 0;
}
.today-ticker__track {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.today-ticker__item {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}
.today-ticker__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-deep);
  white-space: nowrap;
}
.community-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  margin: 0 0 14px;
  border-radius: 16px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 223, 0, 0.28), transparent 55%),
    linear-gradient(135deg, #009b3a 0%, #002776 100%);
  color: #fff;
}
.community-cta__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
  color: #ffdf00;
}
.community-cta__title {
  margin: 4px 0 0;
  font-family: var(--font-display), var(--font-body), sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  color: #fff;
  max-width: 28ch;
}
.community-cta .muted { color: rgba(255, 255, 255, 0.78); }
.community-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.community-cta .btn-soft {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.community-cta .btn-teal {
  background: #ffdf00;
  color: #0b1f14;
}
.community-cta--compact {
  padding: 14px 16px;
}
.community-cta--compact .community-cta__title {
  font-size: 18px;
}
.mission-board .mission-progress {
  font-weight: 800;
  font-size: 18px;
  color: var(--teal-deep);
}
.mission-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mission-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 155, 58, 0.04);
}
.mission-item.is-done {
  border-color: var(--teal);
  background: rgba(0, 155, 58, 0.12);
}
.mission-item.is-done .mission-check {
  background: var(--teal);
  border-color: var(--teal);
}
.mission-item.is-done .mission-check::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.mission-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0;
}
.mission-item__body { flex: 1; min-width: 0; }
.mission-go { flex-shrink: 0; }
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px dashed var(--line);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted, #5a6b62);
  opacity: 0.55;
}
.badge-chip.is-unlocked {
  opacity: 1;
  border-style: solid;
  border-color: var(--teal);
  background: rgba(0, 155, 58, 0.1);
  color: var(--ink);
}
.badge-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.notice { margin-bottom: 12px; }
.notice--ok {
  border-color: var(--teal);
  background: rgba(0, 155, 58, 0.1);
}
.notice--err {
  border-color: #c45c26;
  background: rgba(196, 92, 38, 0.08);
}
.submit-form label {
  display: block;
  font-weight: 600;
  font-size: 13px;
}

/* —— Home hero stage —— */
.hero-stage {
  position: relative;
  overflow: hidden;
  margin: 0 0 14px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  min-height: min(72vh, 560px);
  display: flex;
  align-items: stretch;
  background: #062814;
  color: #f4fff7;
  animation: hero-rise 0.7s ease both;
}
.hero-stage__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 40%, rgba(255, 223, 0, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 60% at 12% 80%, rgba(0, 155, 58, 0.55), transparent 60%),
    radial-gradient(ellipse 40% 50% at 60% 10%, rgba(0, 39, 118, 0.45), transparent 50%),
    linear-gradient(145deg, #041a0e 0%, #0b3d22 48%, #12301f 100%);
  pointer-events: none;
}
.hero-stage__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 11px,
    rgba(255, 255, 255, 0.05) 11px,
    rgba(255, 255, 255, 0.05) 12px
  );
}
.hero-stage__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  width: 100%;
  padding: clamp(22px, 4vw, 40px);
  align-items: center;
}
.hero-stage__brand {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(40px, 7.5vw, 68px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  font-style: normal;
  font-feature-settings: "tnum" 1, "kern" 1;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  animation: hero-rise 0.8s 0.05s ease both;
}
.hero-stage__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 223, 0, 0.92);
}
.hero-stage__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}
.hero-stage__eyebrow {
  margin: 22px 0 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-stage__title {
  margin: 8px 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  animation: hero-rise 0.75s 0.12s ease both;
}
.hero-stage__lead {
  margin: 12px 0 0;
  max-width: 36ch;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(232, 255, 240, 0.78);
}
.hero-stage__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  animation: hero-rise 0.8s 0.18s ease both;
}
.hero-stage__cta .btn-soft {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stage__cta .btn-ink {
  background: linear-gradient(180deg, #1a4a9c, #002776);
}
.hero-stage__social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
}
.hero-stage__social a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 223, 0, 0.35);
  padding-bottom: 2px;
}
.hero-stage__social a:hover { color: #fff; border-bottom-color: var(--gold); }
.hero-stage__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: hero-rise 0.85s 0.1s ease both;
}
.hero-stage__art {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-stage__art .hero-stage__thumb,
.hero-stage__art .game-thumb.hero-stage__thumb,
.hero-stage__art .glyph.hero-stage__thumb {
  width: 100% !important;
  height: 100% !important;
  max-width: 280px;
  max-height: 280px;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  animation: hero-float 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.hero-stage__art-glow {
  position: absolute;
  inset: 12% 8% auto;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 223, 0, 0.45), transparent 68%);
  filter: blur(18px);
  z-index: 0;
  animation: hero-pulse 4s ease-in-out infinite;
}
.hero-stage__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.hero-stage__chip .muted { color: rgba(255, 255, 255, 0.55); }
.hero-stage__chip strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.hero-stage__ficha {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.hero-stage__ficha:hover { color: var(--gold); }

.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}
.facts-strip__item {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stage__paths {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55) !important;
}
.daily-template__list {
  margin: 0 0 12px;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
}
.daily-template__list li {
  line-height: 1.4;
}


@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes hero-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

@media (max-width: 860px) {
  .hero-stage { min-height: 0; }
  .hero-stage__grid {
    grid-template-columns: 1fr;
    padding: 22px 18px 26px;
  }
  .hero-stage__visual { order: -1; }
  .hero-stage__brand { font-size: clamp(36px, 12vw, 56px); }
  .facts-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stage,
  .hero-stage__brand,
  .hero-stage__title,
  .hero-stage__cta,
  .hero-stage__visual,
  .hero-stage__art .hero-stage__thumb,
  .hero-stage__art-glow {
    animation: none !important;
  }
}

