/* ─── Variables ──────────────────────────────────────────────────── */
:root {
  --bg:            #07101c;
  --bg-mid:        #0b1930;
  --panel:         rgba(13, 27, 50, 0.92);
  --panel-strong:  #0f2240;
  --text:          #ddeaff;
  --muted:         #8aa4c8;
  --heading:       #ffffff;
  --line:          rgba(255,255,255,0.10);
  --brand:         #f6c34f;
  --brand-strong:  #ff9d2f;
  --brand-glow:    rgba(246,195,79,0.30);
  --brand-ink:     #2c1900;
  --accent:        #6fd1ff;
  --accent-dim:    rgba(111,209,255,0.12);
  --success:       #7ce4a8;
  --danger:        #ff7272;
  --shadow-sm:     0 4px 18px rgba(0,0,0,0.28);
  --shadow:        0 16px 54px rgba(0,0,0,0.38);
  --shadow-gold:   0 8px 32px rgba(246,195,79,0.20);
  --radius:        20px;
  --radius-sm:     14px;
  --radius-xs:     10px;
  --max:           1220px;
  --header-h:      68px;
}

/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body  {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(111,209,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 100% 0%, rgba(246,195,79,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(15,34,64,0.60) 0%, transparent 70%),
    linear-gradient(180deg, #07101c 0%, #0b1930 50%, #071220 100%);
  background-attachment: fixed;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
p    { margin: 0 0 16px; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ─── Trust Bar ──────────────────────────────────────────────────── */
.trust-bar {
  background: rgba(6,14,28,0.96);
  border-bottom: 1px solid rgba(246,195,79,0.15);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 7px 0;
  flex-wrap: wrap;
}
.trust-inner span { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.trust-inner span strong { color: var(--brand); }
.trust-inner .t-sep { color: rgba(255,255,255,0.15); }

/* ─── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  overflow: visible;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  background: rgba(6,14,28,0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 24px rgba(0,0,0,0.30);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 8px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 8px;
}
.brand-mark {
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(246,195,79,0.24), rgba(246,195,79,0.06));
  box-shadow: inset 0 0 0 1px rgba(246,195,79,0.28), var(--shadow-gold);
  flex-shrink: 0;
}
.brand-copy strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.01em;
}
.brand-copy em {
  display: block;
  font-style: normal;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  font-size: 0.88rem;
  font-weight: 500;
}
.main-nav > a,
.nav-group-btn {
  color: var(--muted);
  padding: 8px 13px;
  border-radius: var(--radius-xs);
  transition: color .18s, background .18s;
  white-space: nowrap;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > a:hover,
.nav-group-btn:hover,
.main-nav > a:focus-visible,
.nav-group-btn:focus-visible {
  color: var(--heading);
  background: rgba(255,255,255,0.07);
}
.main-nav > a[aria-current="page"] {
  color: var(--brand);
  background: rgba(246,195,79,0.10);
}
.nav-bonus {
  color: var(--brand) !important;
  background: rgba(246,195,79,0.10) !important;
}
.nav-bonus:hover { background: rgba(246,195,79,0.18) !important; }

/* Dropdown */
.nav-group {
  position: relative;
}
.nav-group-btn svg {
  width: 12px; height: 12px;
  transition: transform .2s;
}
.nav-group:hover .nav-group-btn svg,
.nav-group:focus-within .nav-group-btn svg {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(10,22,42,0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 16px 8px 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: flex;
}
.nav-dropdown a {
  color: var(--muted);
  padding: 9px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover { color: var(--heading); background: rgba(255,255,255,0.07); }
.nav-dropdown a span { font-size: 1rem; }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 0;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-xs);
  cursor: pointer;
  padding: 10px 11px;
  margin-left: auto;
}
.burger-line {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s, width .25s;
}
.nav-toggle.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .burger-line:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn, .btn-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform .18s, box-shadow .18s, background .18s;
  white-space: nowrap;
}
.btn {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: var(--brand-ink);
  box-shadow: 0 6px 24px var(--brand-glow);
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(246,195,79,0.40);
}
.btn-alt {
  background: rgba(255,255,255,0.08);
  color: var(--heading);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.13);
}
.btn-alt:hover, .btn-alt:focus-visible {
  background: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ─── Container ──────────────────────────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--heading);
  line-height: 1.14;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 4rem); margin-top: 14px; }
h2 { font-size: clamp(1.65rem, 3vw, 2.6rem); }
h3 { font-size: 1.15rem; }

.lead {
  font-size: 1.06rem;
  color: #c8daf2;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.72;
}
.kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid rgba(111,209,255,0.22);
  color: #c8eeff;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--heading); }
.breadcrumb .sep { opacity: 0.35; }

/* ─── Sections ───────────────────────────────────────────────────── */
main section { padding: 32px 0; }

.section-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.section-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.section-shell.light {
  background: linear-gradient(160deg, #eef5fc 0%, #dce8f5 100%);
  color: #122340;
  box-shadow: 0 8px 32px rgba(16,35,64,0.12);
}
.section-shell.light::before { background: transparent; }
.section-shell.light h2,
.section-shell.light h3 { color: #0d1f3c; }
.section-shell.light p,
.section-shell.light li,
.section-shell.light td,
.section-shell.light th { color: #2a4268; }
.section-shell.light .kicker { color: #1760c9; }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero { padding: 40px 0 32px; }
.hero-copy {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero-copy h1 { max-width: 15ch; margin: 16px auto; }

.hero-actions, .inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
  justify-content: center;
}

/* Metric pills */
.metric-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.metric {
  border-radius: 16px;
  padding: 16px 20px;
  width: min(220px, 100%);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  transition: border-color .2s, transform .2s;
}
.metric:hover { border-color: rgba(246,195,79,0.25); transform: translateY(-2px); }
.metric strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}

/* ─── Cards ──────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.note, .intent-box, .quote, .list-card, .fact-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding: 20px 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.note:hover, .intent-box:hover, .quote:hover, .list-card:hover, .fact-card:hover {
  border-color: rgba(111,209,255,0.20);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.note h3, .intent-box h3, .quote strong, .list-card strong, .fact-card strong {
  display: block;
  color: var(--heading);
  margin-bottom: 8px;
  font-size: 1rem;
}
.fact-card strong { font-size: 1.2rem; color: var(--brand); }

.section-shell.light .note,
.section-shell.light .intent-box,
.section-shell.light .quote,
.section-shell.light .list-card,
.section-shell.light .fact-card {
  background: rgba(255,255,255,0.70);
  border-color: rgba(16,35,63,0.11);
  box-shadow: 0 2px 12px rgba(16,35,63,0.07);
}
.section-shell.light .note strong,
.section-shell.light .intent-box strong,
.section-shell.light .quote strong,
.section-shell.light .list-card strong { color: #0d1f3c; }
.section-shell.light .fact-card strong { color: #1760c9; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.steps .list-card {
  counter-increment: step;
  position: relative;
  padding-top: 24px;
}

/* Fact band */
.fact-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

/* TOC grid */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-top: 24px;
}
.toc-grid a {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--heading);
  transition: border-color .2s, background .2s, transform .2s;
  display: block;
}
.toc-grid a:hover {
  border-color: var(--brand);
  background: rgba(246,195,79,0.07);
  transform: translateY(-2px);
}
.toc-grid span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.88rem;
}

/* ─── Game cards ─────────────────────────────────────────────────── */
.card-grid { display: grid; gap: 18px; }
.card-grid.games {
  grid-template-columns: repeat(4, minmax(0,1fr));
  margin-top: 22px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
  margin-top: 24px;
}
.games-grid .game-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
}
.games-grid .game-card img {
  width: 100%;
  height: auto;
  display: block;
}
.game-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0 0 18px 18px;
}
@media (max-width: 860px) {
  .games-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.game-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,0.40);
  border-color: rgba(246,195,79,0.30);
}
.game-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.game-card .thumb-link { display: block; }
.game-card .copy { padding: 14px 16px; }
.game-card .copy strong {
  display: block;
  color: var(--heading);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.game-card .copy p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ─── Table ──────────────────────────────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
}
th, td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  vertical-align: top;
}
th {
  font-size: 0.80rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  font-weight: 600;
}
tr:last-child td { border-bottom: none; }
.section-shell.light th {
  color: #3b5c84;
  background: rgba(16,35,63,0.05);
}
.section-shell.light td { border-color: rgba(16,35,63,0.09); }

/* ─── Pros / Cons ────────────────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.pros-cons h3 { margin-bottom: 12px; font-size: 1rem; }
.pros-cons li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.94rem;
}
.pros-cons li::before { font-size: 1rem; flex-shrink: 0; line-height: 1.5; }
.pros-cons .pros li::before { content: "✓"; color: var(--success); }
.pros-cons .cons li::before { content: "✗"; color: var(--danger); }

/* ─── Rating bars ────────────────────────────────────────────────── */
.rating-bar { display: flex; align-items: center; gap: 12px; margin: 10px 0; }
.rating-bar span:first-child { min-width: 130px; color: var(--muted); font-size: 0.88rem; }
.rating-track { flex: 1; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.rating-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-strong)); }
.rating-score { min-width: 36px; text-align: right; font-weight: 700; color: var(--heading); font-size: 0.92rem; }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 12px; margin-top: 22px; }
.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(111,209,255,0.25); }
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--heading);
  text-align: left;
  padding: 18px 22px;
  font: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.faq-item button:hover { background: rgba(255,255,255,0.04); }
.faq-item div { padding: 0 22px 18px; color: var(--muted); display: none; font-size: 0.96rem; line-height: 1.7; }
.faq-item.open div { display: block; }
.faq-item .icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; color: var(--accent); }

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer { padding: 16px 0 120px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 32px 36px;
  background: rgba(5,12,24,0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.footer-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--heading);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-grid p, .footer-grid li { color: var(--muted); font-size: 0.88rem; margin: 0 0 8px; }
.footer-grid a:hover { color: var(--heading); text-decoration: underline; }
.footer-note { font-size: 0.86rem; color: #7a98bc; margin-top: 18px; text-align: center; }
.footer-legal { font-size: 0.73rem; color: #556880; margin-top: 10px; line-height: 1.55; border-top: 1px solid #1c2e45; padding-top: 12px; }

/* ─── Mobile CTA ─────────────────────────────────────────────────── */
.mobile-cta {
  position: fixed;
  left: 10px; right: 10px; bottom: 10px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(7,16,28,0.96);
  border: 1px solid rgba(246,195,79,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.50);
  backdrop-filter: blur(16px);
}
.mobile-cta span { display: block; font-size: 0.80rem; color: var(--muted); }
.mobile-cta strong { display: block; font-size: 0.96rem; color: var(--heading); }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .two-col, .pros-cons { grid-template-columns: 1fr; }
  .footer-grid, .toc-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .fact-band { grid-template-columns: 1fr 1fr; }
  .card-grid.games { grid-template-columns: repeat(3,1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(5,12,24,0.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a, .nav-group-btn {
    padding: 11px 14px;
    font-size: 0.96rem;
    border-radius: var(--radius-xs);
  }
  .nav-group { width: 100%; }
  .nav-group-btn { width: 100%; justify-content: space-between; }
  .nav-dropdown {
    position: static;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.04);
    border: none;
    box-shadow: none;
    padding: 4px 0 4px 12px;
  }
  .nav-group.mobile-open .nav-dropdown { display: flex; }
  .header-actions .btn-alt { display: none; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fact-band { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 14px; font-size: 0.72rem; }
  .section-shell { padding: 24px 20px; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 20px)); }
  h1 { font-size: 2rem; }
  .card-grid.games { grid-template-columns: 1fr 1fr; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  th, td { padding: 10px 12px; font-size: 0.88rem; }
  .mobile-cta { flex-direction: column; align-items: stretch; }
  .mobile-cta .btn { text-align: center; justify-content: center; }
  .trust-bar { display: none; }
}
