/* HyperBlocks SMP - Minecraft server website theme */
:root {
  --bg-dark: #0f0f17;
  --bg-card: #16162a;
  --bg-card-hover: #1e1e35;
  --accent: #22c55e;
  --accent-dim: #16a34a;
  --accent-glow: rgba(34, 197, 94, 0.25);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #2d2d44;
  --font-display: 'Segoe UI', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/*
 * Plain content links (no class): browsers default to blue / purple :visited,
 * which reads muddy on --bg-dark. Use the site accent like .inline-link.
 * Nav, buttons, and wiki sidebar use more specific selectors and keep their look.
 */
main a,
.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

main a:hover,
.site-footer a:hover {
  color: #4ade80;
  text-decoration: underline;
}

main a:visited,
.site-footer a:visited {
  color: var(--accent);
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 0.45rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.7rem;
  position: relative;
}

.hb-public-header-mount {
  min-height: 5.5rem;
}

/* Hidden on desktop; horizontal quick bar on small screens */
.site-header-mobile-bar {
  display: none;
}

.site-header-nav {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}

.site-header--fallback .nav-fallback-msg {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-header--fallback .nav-fallback-msg a {
  color: var(--accent);
}

.server-address {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: right;
  position: absolute;
  right: 1.5rem;
  bottom: 0.45rem;
  margin: 0;
  pointer-events: none;
}

.nav-server-gap {
  list-style: none;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.nav-server-gap .server-address {
  position: static;
  pointer-events: auto;
  text-align: center;
  margin: 0;
  padding: 0 0.45rem;
  font-size: 1.06rem;
  font-weight: 700;
}

.nav-links--with-server-gap .nav-login-item {
  margin-left: 0;
}

.server-address--mobile-only {
  display: none;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 80px;
  width: auto;
  display: block;
  border-radius: 10px;
}

.site-logo:hover .site-logo-img {
  opacity: 0.92;
}

.nav-links {
  display: flex;
  gap: 0.42rem;
  list-style: none;
  width: 100%;
  align-items: center;
}

.nav-links a {
  display: inline-block;
  padding: 0.46rem 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:visited {
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--bg-card);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active:visited {
  color: var(--accent);
}

/* Public pages (no account/admin shell): denser header — smaller logo, centered nav row */
body:not(.account-body):not(.admin-body) .site-header .nav-inner {
  align-items: center;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

body:not(.account-body):not(.admin-body) .site-header .site-logo-img {
  height: 48px;
  width: auto;
  max-width: min(220px, 50vw);
  object-fit: contain;
  border-radius: 0;
  vertical-align: middle;
}

@media (max-width: 768px) {
  body:not(.account-body):not(.admin-body) .site-header .nav-inner > nav {
    align-self: center;
  }
}

.nav-links a.nav-login {
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent) !important;
}

.nav-links a.nav-login:visited {
  color: var(--accent) !important;
}

.nav-links a.nav-login:hover {
  background: rgba(34, 197, 94, 0.12) !important;
  color: #4ade80 !important;
}

.nav-login-item {
  margin-left: auto;
}

.nav-links a.nav-profile-link,
.nav-links button.nav-profile-link {
  display: inline-block;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 0;
  background: var(--bg-card);
  overflow: hidden;
}

.nav-links a.nav-profile-link:visited {
  color: var(--text);
}

.nav-links a.nav-profile-link:hover,
.nav-links button.nav-profile-link:hover {
  border-color: var(--accent-dim);
  background: var(--bg-card-hover);
}

.nav-links button.nav-profile-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0;
  display: block;
}

.public-header-profile {
  position: relative;
}

.public-header-profile-trigger {
  cursor: pointer;
}

.public-header-profile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 320;
  min-width: 14.25rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  border-radius: 8px;
  border: 1px solid rgba(61, 61, 82, 0.95);
  background: linear-gradient(180deg, #1e1e2e 0%, #12121c 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.public-header-profile-menu[hidden] {
  display: none !important;
}

.public-header-profile-menu li {
  margin: 0;
}

.public-header-profile-menu a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  white-space: nowrap;
}

.public-header-profile-menu a:hover,
.public-header-profile-menu a:focus-visible {
  background: rgba(167, 139, 250, 0.12);
  color: #f8fafc;
  outline: none;
}

.site-header-mobile-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.site-header-mobile-btn:visited {
  color: var(--text-muted);
}

.site-header-mobile-btn:hover {
  color: var(--accent);
  border-color: var(--accent-dim);
  background: var(--bg-card-hover);
}

.site-header-mobile-btn.active {
  color: var(--accent);
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.1);
}

.site-header-mobile-btn.active:visited {
  color: var(--accent);
}

.site-header-mobile-btn--login {
  border-color: var(--accent);
  color: var(--accent);
}

.site-header-mobile-btn--login:visited {
  color: var(--accent);
}

.site-header-mobile-btn--login:hover {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.site-header-mobile-btn--store {
  background: var(--accent);
  border-color: var(--accent);
  color: #0f0f17;
}

.site-header-mobile-btn--store:visited {
  color: #0f0f17;
}

.site-header-mobile-btn--store:hover {
  background: #4ade80;
  color: #0f0f17;
}

.site-header-mobile-btn--profile {
  border-color: var(--accent-dim);
}

.site-header-mobile-avatar {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

@media (max-width: 1120px) and (min-width: 769px) {
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 0.2rem;
    padding-bottom: 0.35rem;
  }

  .site-logo {
    order: 1;
  }

  .site-header-nav {
    order: 2;
    flex: 1 1 auto;
  }

}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.btn-account {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid var(--accent);
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}

.btn-account:hover {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(180deg, #15803d 0%, #14532d 52%, #0f3d24 100%);
  color: #f8fafc;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid #86efac;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 6px 18px rgba(0, 0, 0, 0.35);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s, color 0.2s, border-color 0.2s;
}

.btn-store:hover {
  background: linear-gradient(180deg, #16a34a 0%, #15803d 50%, #166534 100%);
  color: #ffffff;
  border-color: #bbf7d0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(187, 247, 208, 0.35),
    0 10px 26px rgba(34, 197, 94, 0.35);
  transform: translateY(-1px);
}

.btn-store:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.9),
    0 0 0 6px rgba(134, 239, 172, 0.55);
}

/* Keep store CTA readable: main link defaults would wash out green-on-green */
main a.btn-store,
main a.btn-store:visited {
  color: #f8fafc;
}

main a.btn-store:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Main content */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Home — HyperCore integration graphic (below hero tile on index) */
.home-hypercore-showcase {
  margin: 0 0 2rem;
  padding: 0;
}

.home-hypercore-showcase-frame {
  position: relative;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(
    125deg,
    #22d3ee 0%,
    #f97316 22%,
    #eab308 48%,
    #a855f7 72%,
    #22c55e 100%
  );
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.45),
    0 0 60px rgba(34, 211, 238, 0.14),
    0 0 100px rgba(249, 115, 22, 0.08),
    0 28px 56px rgba(0, 0, 0, 0.55);
}

.home-hypercore-showcase-frame::before,
.home-hypercore-showcase-frame::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 2;
  border-color: rgba(250, 204, 21, 0.9);
  border-style: solid;
}

.home-hypercore-showcase-frame::before {
  top: 12px;
  left: 12px;
  border-width: 3px 0 0 3px;
  border-radius: 4px 0 0 0;
  box-shadow: -2px -2px 16px rgba(34, 211, 238, 0.35);
}

.home-hypercore-showcase-frame::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 4px 0;
  box-shadow: 2px 2px 16px rgba(249, 115, 22, 0.3);
}

.home-hypercore-showcase-inner {
  position: relative;
  border-radius: 17px;
  overflow: hidden;
  background: #06070d;
  line-height: 0;
}

.home-hypercore-showcase-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 17px;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
}

.home-hypercore-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.home-hypercore-showcase-caption {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.home-hypercore-showcase-caption-sep {
  margin: 0 0.5rem;
  color: #64748b;
  user-select: none;
}

@media (max-width: 600px) {
  .home-hypercore-showcase-frame::before,
  .home-hypercore-showcase-frame::after {
    width: 24px;
    height: 24px;
  }

  .home-hypercore-showcase-frame::before {
    top: 8px;
    left: 8px;
  }

  .home-hypercore-showcase-frame::after {
    bottom: 8px;
    right: 8px;
  }

  .home-hypercore-showcase-caption {
    font-size: 0.85rem;
    line-height: 1.45;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1rem 4rem;
}

.hero-with-bg {
  position: relative;
  border-radius: 16px;
  margin: 0 -0.5rem 2rem;
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 40%, #0f172a 100%);
  border: 1px solid var(--border);
}

.hero-with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background-image: 
    linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-with-bg h1,
.hero-with-bg .tagline,
.hero-with-bg .hero-note,
.hero-with-bg .btn-store {
  position: relative;
  z-index: 1;
}

.hero-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent), #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero .tagline .hero-tagline-highlight {
  color: var(--text);
  font-weight: 700;
}

.hero .btn-store {
  font-size: 1.1rem;
  padding: 0.85rem 1.75rem;
}

/* Sections */
.section {
  margin-bottom: 3rem;
}

.section h2 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.section p, .section ul {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section ul {
  padding-left: 1.5rem;
}

.section li {
  margin-bottom: 0.5rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 52rem;
}

.section-lead strong {
  color: var(--text);
}

.kbd-inline {
  font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.9em;
  font-weight: 600;
  color: var(--accent);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
}

.home-subheading {
  font-size: 1.15rem;
  color: var(--text);
  margin: 1.75rem 0 1rem;
  font-weight: 700;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}

.home-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.home-feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(34, 197, 94, 0.35);
}

.home-feature-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.home-feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

.home-feature-card p strong {
  color: var(--text);
}

.features-showcase,
.account-features,
.web-integration-spotlight,
.home-setup-below-showcase {
  scroll-margin-top: 5rem;
}

/* Homepage — web ↔ Survival bridge */
.web-integration-spotlight {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.09) 0%, transparent 55%);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.web-integration-spotlight > h2 {
  border-bottom-color: rgba(34, 197, 94, 0.25);
}

.web-integration-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.web-integration-spotlight .section-lead:last-of-type {
  margin-bottom: 0;
}

.home-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  counter-reset: hb-step;
}

.home-steps li {
  counter-increment: hb-step;
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-steps li::before {
  content: counter(hb-step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.home-steps li strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.home-account-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.btn-account--ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--border);
}

.btn-account--ghost:hover {
  border-color: var(--accent);
  background: rgba(34, 197, 94, 0.08);
  color: #4ade80;
}

.ranks-hub-hint {
  margin: 0.35rem 0 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* Cards (ranks) */
.rank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.rank-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.rank-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-dim);
}

.rank-card h3 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

a.rank-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.rank-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.rank-card__cta {
  margin-top: 0.9rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent);
}

a.rank-card:hover .rank-card__cta {
  text-decoration: underline;
}

a.rank-card.rank-card--action {
  border: 1px solid rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.1);
  position: relative;
  padding-top: 1.35rem;
  padding-left: 1.35rem;
  border-left: 4px solid var(--accent);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

a.rank-card.rank-card--action::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  border-right: 2px solid var(--accent);
  border-top: 2px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s, right 0.2s;
}

a.rank-card.rank-card--action:hover {
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2), 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

a.rank-card.rank-card--action:hover::after {
  opacity: 0.95;
  right: 0.95rem;
}

.rank-card--action .rank-card__cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

a.rank-card.rank-card--action:hover .rank-card__cta {
  text-decoration: none;
  background: rgba(34, 197, 94, 0.2);
  border-color: var(--accent-dim);
  color: #4ade80;
}

.rank-detail {
  max-width: 50rem;
}

.rank-detail-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.65rem;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}

.rank-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), transparent 45%, rgba(99, 102, 241, 0.06));
  pointer-events: none;
}

.rank-detail-hero h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #fefce8;
}

.rank-detail-hero p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.rank-detail-hero .rank-detail-actions {
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.rank-perk-deck {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rank-perk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem 1.15rem;
}

.rank-perk-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.05rem 1.2rem 1.15rem;
  margin: 0;
}

.rank-perk-group h3 {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.rank-perk-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-perk-group li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  color: #cbd5e1;
  font-size: 0.94rem;
  line-height: 1.45;
}

.rank-perk-group li:last-child {
  margin-bottom: 0;
}

.rank-perk-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.rank-includes {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin: 0;
}

.rank-includes h3 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.rank-includes p {
  margin: 0;
  color: #a8b3c4;
  font-size: 0.92rem;
  line-height: 1.55;
}

.rank-detail-cta {
  text-align: center;
  margin-top: 0.5rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Rules page */
.rules-list {
  list-style: none;
  padding: 0;
}

.rules-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rules-list .rule-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.rules-list strong {
  color: var(--text);
}

.rules-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

.rules-sublist {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.rules-sublist li {
  margin-bottom: 0.5rem;
}

.rules-bottom {
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.5rem;
}

.rules-official {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

/* CTA strip */
.cta-strip {
  text-align: center;
  padding: 2.5rem 1rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.cta-strip p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.25rem;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.footer-nav a {
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-sep {
  color: var(--text-muted);
  opacity: 0.75;
  user-select: none;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.9;
  margin: 0;
}

/* Legal pages */
.legal-page h2 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page h2:first-of-type {
  margin-top: 1.25rem;
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--accent);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* Page title */
.page-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.page-intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Contact page */
.contact-section {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
}

.contact-form label {
  color: var(--text);
  font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background: #101426;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-dropzone {
  position: relative;
  display: block;
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  background: rgba(34, 197, 94, 0.04);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.contact-dropzone.is-drag-over {
  border-color: var(--accent);
  background: rgba(34, 197, 94, 0.14);
}

.contact-dropzone.is-file-selected {
  border-color: rgba(34, 197, 94, 0.6);
}

.contact-dropzone-title {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-dropzone-sub {
  margin-bottom: 0.75rem;
}

.contact-select-btn {
  justify-content: center;
  margin: 0 auto;
}

.contact-file-meta {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-send-btn {
  justify-content: center;
}

.contact-success,
.contact-error {
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}

.contact-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #86efac;
}

.contact-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fecaca;
}

.contact-error p {
  margin-bottom: 0.35rem;
}

.contact-error ul {
  margin: 0;
  padding-left: 1.25rem;
}

/* ========== Wiki page: sidebar + content ========== */
.wiki-main {
  display: flex;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  align-items: flex-start;
}

.wiki-sidebar {
  flex-shrink: 0;
  width: 220px;
  position: sticky;
  top: 5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.wiki-sidebar-title {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.wiki-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wiki-nav > ul > li {
  margin-bottom: 0.5rem;
}

.wiki-nav > ul > li > a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.35rem 0;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.wiki-nav > ul > li > a:hover {
  color: var(--accent);
  background: var(--bg-card-hover);
}

.wiki-nav > ul > li > ul {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--border);
}

.wiki-nav > ul > li > ul li {
  margin-bottom: 0.2rem;
}

.wiki-nav > ul > li > ul a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.2rem 0;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.wiki-nav > ul > li > ul a:hover {
  color: var(--accent);
  background: var(--bg-card-hover);
}

.wiki-content {
  flex: 1;
  min-width: 0;
}

.wiki-content .page-title {
  margin-bottom: 0.5rem;
}

.wiki-content .page-intro {
  margin-bottom: 2rem;
}

.wiki-section {
  margin-bottom: 2.5rem;
}

.wiki-section h2 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.wiki-section h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.wiki-section p,
.wiki-section ul {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.wiki-section code {
  background: var(--bg-card);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--accent);
  border: 1px solid var(--border);
}

.wiki-list {
  list-style: none;
  padding: 0;
}

.wiki-list li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
  color: var(--text-muted);
}

.wiki-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.wiki-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.wiki-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.wiki-table th,
.wiki-table td {
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.wiki-table th {
  background: var(--bg-card);
  color: var(--accent);
  font-weight: 600;
}

.wiki-table tr:last-child td {
  border-bottom: none;
}

.wiki-table tr:hover td {
  background: rgba(34, 197, 94, 0.05);
}

.wiki-table code {
  background: var(--bg-dark);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .wiki-main {
    flex-direction: column;
    padding: 1.5rem 1rem 3rem;
  }

  .wiki-sidebar {
    position: static;
    width: 100%;
  }

  .wiki-nav > ul > li > ul {
    margin-bottom: 0.5rem;
  }
}

/* Public header — phone / small tablet: horizontal quick bar */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0.45rem 0.65rem 0.55rem;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header-nav {
    display: none !important;
  }

  .server-address--mobile-only {
    display: block;
    white-space: normal;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    width: 100%;
    text-align: center;
    order: 4;
    position: static;
    pointer-events: auto;
    margin: 0;
    padding: 0 0.35rem;
  }

  .site-logo {
    order: 1;
    align-self: center;
  }

  .site-header-mobile-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    overflow-y: hidden;
    padding: 0.35rem 0 0.15rem;
    margin: 0;
    order: 3;
    border-top: 1px solid var(--border);
  }

  .site-header-mobile-bar::-webkit-scrollbar {
    height: 4px;
  }

  .site-header-mobile-bar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
  }
}

/* Home & general main — phones / small tablets */
@media (max-width: 640px) {
  main {
    padding: 1.25rem 1rem 3rem;
  }

  .hero {
    padding: 2rem 0.75rem 2.5rem;
  }

  .hero-with-bg {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }

  .hero .tagline {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-note {
    font-size: 0.9rem;
    padding: 0 0.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn-store,
  .hero-actions .btn-account {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-feature-card {
    padding: 1.1rem 1.15rem;
  }

  .home-steps li {
    padding: 0.85rem 0.85rem 0.85rem 2.85rem;
  }

  .home-steps li::before {
    left: 0.75rem;
    top: 0.85rem;
  }

  .home-account-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .home-account-cta .btn-account {
    width: 100%;
    justify-content: center;
  }

  .cta-strip {
    padding: 1.75rem 0.85rem;
    margin-top: 1.5rem;
  }

  .page-title {
    font-size: 1.55rem;
  }

  .contact-form {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .site-logo-img {
    height: 72px;
  }

  .hb-public-header-mount {
    min-height: 5rem;
  }
}

/* Tablets — rules, ranks, legal, footer */
@media (max-width: 900px) {
  .rank-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    gap: 1rem;
  }

  .rules-list li {
    padding: 0.9rem 1.05rem;
  }

  .legal-page h2 {
    font-size: 1.15rem;
  }

  .section {
    margin-bottom: 2.25rem;
  }

  .page-intro {
    font-size: 0.98rem;
  }
}

/* Phones — rules, ranks, legal, wiki main (when only styles.css) */
@media (max-width: 640px) {
  .rank-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .rank-card {
    padding: 1.1rem 1.15rem;
  }

  .rank-card h3 {
    font-size: 1.1rem;
  }

  .rules-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
  }

  .rules-list .rule-num {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
  }

  .rules-official {
    padding: 0.85rem 1rem;
  }

  .rules-sublist {
    padding-left: 1.25rem;
  }

  .legal-page h2 {
    font-size: 1.08rem;
    margin-top: 1.65rem;
  }

  .legal-page h2:first-of-type {
    margin-top: 0.95rem;
  }

  .legal-page p {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }

  .page-intro {
    overflow-wrap: anywhere;
  }

  .section {
    margin-bottom: 1.85rem;
  }

  .site-footer {
    padding: 1.35rem 1rem 1.75rem;
  }

  .footer-nav a {
    white-space: normal;
  }

  .wiki-main {
    padding: 1.25rem 0.85rem 2.5rem;
  }

  .wiki-section h2 {
    font-size: 1.28rem;
  }

  .wiki-section h3 {
    font-size: 1.12rem;
  }

  .wiki-table {
    font-size: 0.875rem;
  }

  .wiki-table th,
  .wiki-table td {
    padding: 0.45rem 0.65rem;
  }

  .hb-launch-countdown {
    padding: 1.35rem 1rem 1.5rem;
  }

  .hb-launch-countdown__timer {
    gap: 0.55rem;
  }

  .hb-launch-countdown__unit {
    min-width: 4.1rem;
    padding: 0.65rem 0.45rem 0.75rem;
  }

  .hb-launch-countdown__num {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }
}

main > .hb-launch-countdown:first-child {
  margin-top: 0;
}

.hb-launch-countdown {
  position: relative;
  margin: 1.75rem 0 2rem;
  padding: 1.85rem 1.5rem 2.1rem;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(125deg, #f472b6, #a78bfa, #22d3ee, #facc15, #22c55e, #f472b6) border-box;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(244, 114, 182, 0.12),
    0 0 100px rgba(34, 197, 94, 0.08);
}

.hb-launch-countdown__aurora {
  position: absolute;
  inset: -40%;
  background:
    conic-gradient(from 120deg at 50% 50%,
      rgba(244, 114, 182, 0.35),
      rgba(167, 139, 250, 0.25),
      rgba(34, 211, 238, 0.3),
      rgba(250, 204, 21, 0.28),
      rgba(34, 197, 94, 0.32),
      rgba(244, 114, 182, 0.35));
  animation: hb-launch-spin 14s linear infinite;
  filter: blur(36px);
  opacity: 0.85;
  pointer-events: none;
}

.hb-launch-countdown__confetti {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(250, 204, 21, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 18%, rgba(244, 114, 182, 0.85) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 78%, rgba(34, 211, 238, 0.85) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 82%, rgba(167, 139, 250, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 8%, rgba(34, 197, 94, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 94% 55%, rgba(250, 204, 21, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 6% 48%, rgba(244, 114, 182, 0.65) 0 2px, transparent 3px);
  background-size: 100% 100%;
  animation: hb-launch-confetti 5s ease-in-out infinite;
  opacity: 0.55;
  pointer-events: none;
}

@keyframes hb-launch-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hb-launch-confetti {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-6px) scale(1.03);
    opacity: 0.7;
  }
}

.hb-launch-countdown__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}

.hb-launch-countdown__welcome {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.hb-launch-countdown__eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  background: linear-gradient(90deg, #fde68a, #f472b6, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(250, 204, 21, 0.35));
}

.hb-launch-countdown__title {
  font-size: clamp(1.35rem, 3.8vw, 2.05rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  color: #fefce8;
  text-shadow:
    0 0 20px rgba(250, 204, 21, 0.35),
    0 2px 0 rgba(15, 15, 23, 0.5);
}

.hb-launch-countdown__sub {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.55;
}

.hb-launch-countdown__when {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  color: #cbd5e1;
}

.hb-launch-countdown__when strong {
  color: #fef9c3;
  font-weight: 800;
}

.hb-launch-countdown__timer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hb-launch-countdown__unit {
  flex: 1 1 auto;
  min-width: 4.75rem;
  max-width: 7.5rem;
  padding: 0.85rem 0.65rem 0.95rem;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(22, 22, 42, 0.92) 0%, rgba(15, 15, 23, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(244, 114, 182, 0.08);
  animation: hb-launch-pulse 2.8s ease-in-out infinite;
}

.hb-launch-countdown__unit:nth-child(2) {
  animation-delay: 0.2s;
}

.hb-launch-countdown__unit:nth-child(3) {
  animation-delay: 0.4s;
}

.hb-launch-countdown__unit:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes hb-launch-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.35),
      0 0 24px rgba(244, 114, 182, 0.08);
  }

  50% {
    transform: translateY(-3px);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.4),
      0 0 32px rgba(34, 197, 94, 0.15);
  }
}

.hb-launch-countdown__num {
  display: block;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: clamp(1.65rem, 5vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fefce8 0%, #fde68a 40%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(250, 204, 21, 0.45));
}

.hb-launch-countdown__lbl {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.hb-launch-countdown__live {
  margin: 1.25rem 0 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: #4ade80;
  text-shadow: 0 0 24px rgba(34, 197, 94, 0.5);
  animation: hb-launch-livepop 0.8s ease-out;
}

@keyframes hb-launch-livepop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hb-launch-countdown__aurora,
  .hb-launch-countdown__confetti,
  .hb-launch-countdown__unit,
  .hb-launch-countdown__live {
    animation: none;
  }
}
