/* MoneyBot Media — original stories, characters, and creative technology */
:root {
  --bg: #050706;
  --panel: #0a0d0b;
  --panel-2: #0d120f;
  --text: #f2f5f2;
  --soft: #a1aaa4;
  --muted: #657068;
  --green: #30ec7d;
  --green-dim: rgba(48, 236, 125, .12);
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);
  --display: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--green); color: #031007; }

.particle-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .28;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, .footer { position: relative; z-index: 1; }

/* Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 22px 34px;
  transition: padding .35s var(--ease), background .35s, border-color .35s;
}
.nav.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(5, 7, 6, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}
.nav-inner {
  max-width: 1380px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}
.logo-mark { width: 34px; height: 34px; color: var(--green); flex: 0 0 auto; }
.logo-mark svg { display: block; width: 100%; height: 100%; }
.logo-text, .footer-brand > span:last-child { font-family: var(--display); font-size: 1.08rem; letter-spacing: -.02em; }
.logo-text strong, .footer-brand strong { color: var(--green); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link, .nav-cta {
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-link { color: var(--soft); transition: color .2s; }
.nav-link:hover { color: var(--text); }
.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: color .25s, background .25s, border-color .25s;
}
.nav-cta:hover { background: var(--green); border-color: var(--green); color: #041108; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px 0; background: var(--text); transition: transform .3s var(--ease); }
.menu-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Shared */
section { width: min(100% - 64px, 1380px); margin: 0 auto; padding: 130px 0; }
.section-label, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.section-header { margin-bottom: 58px; }
.split-header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 420px); gap: 60px; align-items: end; }
.section-header h2, .studio h2, .channels h2, .contact h2 {
  font-family: var(--display);
  font-size: clamp(2.55rem, 5vw, 5.3rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
.split-header > p { max-width: 390px; color: var(--soft); font-size: 1.02rem; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s, color .3s;
}
.btn-primary { background: var(--green); color: #031008; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 45px rgba(48, 236, 125, .2); }
.btn-text { color: var(--text); }
.btn-text span { transition: transform .25s; }
.btn-text:hover span { transform: translateX(5px); }
.btn-large { min-height: 56px; padding-inline: 31px; }

/* Hero */
.hero {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding: 155px max(32px, calc((100vw - 1380px) / 2)) 74px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-visual, .hero-vignette { position: absolute; inset: 0; }
.hero-video {
  position: absolute;
  top: 50%;
  left: 65%;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: translate(-50%, -50%) scale(1.08);
  filter: saturate(.75) contrast(1.06);
  opacity: .72;
}
.hero-vignette {
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(5,7,6,.93) 34%, rgba(5,7,6,.28) 69%, rgba(5,7,6,.8) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 32%, rgba(5,7,6,.45) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 850px; padding-bottom: 66px; }
.hero h1 {
  max-width: 830px;
  margin-bottom: 27px;
  font-family: var(--display);
  font-size: clamp(4rem, 8.4vw, 8.9rem);
  font-weight: 500;
  line-height: .83;
  letter-spacing: -.065em;
}
.hero h1 em { color: var(--green); font-weight: 500; }
.hero-desc { max-width: 540px; margin-bottom: 32px; color: #b7c0ba; font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1380px) / 2));
  bottom: 35px;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Originals */
.originals { padding-top: 150px; }
.originals-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .75fr); gap: 18px; }
.original-card, .vault-card { position: relative; min-height: 640px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); }
.original-media, .original-media video, .media-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.original-media video { object-fit: cover; object-position: center 25%; transition: transform 1.2s var(--ease); }
.original-card:hover video { transform: scale(1.035); }
.media-shade { background: linear-gradient(0deg, rgba(5,7,6,.98) 0%, rgba(5,7,6,.2) 58%, rgba(5,7,6,.06) 100%); }
.original-copy { position: absolute; z-index: 2; left: 36px; right: 36px; bottom: 34px; }
.work-tag {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 11px;
  border: 1px solid rgba(48,236,125,.22);
  border-radius: 999px;
  background: rgba(5,7,6,.55);
  color: var(--green);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.original-copy h3, .vault-card h3 { font-family: var(--display); font-size: clamp(2rem, 3.8vw, 4rem); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.original-copy p { max-width: 560px; margin-top: 13px; color: #bec6c1; }
.vault-card { padding: 30px; display: flex; flex-direction: column; justify-content: space-between; background: radial-gradient(circle at 50% 38%, rgba(48,236,125,.1), transparent 34%), var(--panel); }
.vault-topline { display: flex; justify-content: space-between; color: var(--muted); font-size: .66rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.vault-topline span:first-child { color: var(--green); }
.vault-orbit { position: relative; width: min(82%, 330px); aspect-ratio: 1; margin: 20px auto; border: 1px solid var(--line); border-radius: 50%; }
.vault-orbit::before, .vault-orbit::after { content: ""; position: absolute; inset: 17%; border: 1px solid var(--line); border-radius: 50%; }
.vault-orbit::after { inset: 34%; }
.vault-core { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); color: var(--green); font-family: var(--display); font-size: 1.2rem; }
.vault-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 24px rgba(48,236,125,.65); }
.dot-one { top: 6%; left: 48%; }
.dot-two { right: 13%; bottom: 20%; }
.dot-three { left: 19%; bottom: 25%; }
.vault-card > div:last-child p { margin: 14px 0 22px; color: var(--soft); }
.vault-formats { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.vault-formats li { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--soft); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }

/* Technology */
.technology { width: 100%; max-width: none; padding: 145px max(32px, calc((100vw - 1380px) / 2)); background: var(--panel); border-block: 1px solid var(--line); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.pillar { position: relative; min-height: 390px; padding: 32px 28px; border-right: 1px solid var(--line); background: rgba(255,255,255,.008); transition: background .35s; }
.pillar:last-child { border-right: 0; }
.pillar:hover { background: rgba(48,236,125,.035); }
.pillar-number { color: var(--muted); font-size: .68rem; letter-spacing: .12em; }
.pillar-icon { width: 52px; height: 52px; margin: 76px 0 28px; color: var(--green); }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h3 { margin-bottom: 12px; font-family: var(--display); font-size: 1.45rem; font-weight: 500; line-height: 1.1; }
.pillar p { color: var(--soft); font-size: .87rem; }

/* Intersection */
.intersection { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; min-height: 720px; }
.intersection blockquote { max-width: 780px; font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5.8rem); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.intersection blockquote em { color: var(--green); }
.intersection-visual { position: relative; width: min(100%, 480px); aspect-ratio: 1; justify-self: end; }
.orbit-ring { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); border: 1px solid var(--line); border-radius: 50%; }
.ring-one { width: 38%; height: 38%; }
.ring-two { width: 68%; height: 68%; }
.ring-three { width: 98%; height: 98%; }
.orbit-center { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); color: var(--green); font-family: var(--display); font-size: 1.2rem; }
.orbit-label { position: absolute; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); color: var(--soft); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
.visual-label { top: 9%; left: 44%; }
.story-label { bottom: 18%; left: 7%; }
.tech-label { right: -3%; bottom: 31%; }

/* Universe */
.universe { width: 100%; max-width: none; padding: 145px max(32px, calc((100vw - 1380px) / 2)); background: linear-gradient(180deg, var(--panel), #070a08); border-block: 1px solid var(--line); }
.universe-links { border-top: 1px solid var(--line); }
.universe-card {
  display: grid;
  grid-template-columns: 58px 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: 118px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .35s var(--ease), background .35s;
}
.universe-card:hover { padding-inline: 18px; background: rgba(48,236,125,.035); }
.universe-index { color: var(--muted); font-size: .7rem; letter-spacing: .1em; }
.universe-card strong { display: block; margin-bottom: 3px; font-family: var(--display); font-size: 1.65rem; font-weight: 500; }
.universe-card p { color: var(--soft); font-size: .88rem; }
.external-arrow { color: var(--green); font-size: 1.2rem; }
.app-badge { padding: 5px 10px; border: 1px solid rgba(48,236,125,.3); border-radius: 999px; color: var(--green); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }

/* Studio / channels / contact */
.studio { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: start; }
.studio h2 em { color: var(--green); }
.studio-copy { padding-top: 42px; }
.studio-copy > p { max-width: 540px; margin-bottom: 20px; color: var(--soft); }
.studio-copy .studio-lead { color: var(--text); font-family: var(--display); font-size: 1.55rem; line-height: 1.3; }
.founder-line { display: flex; align-items: center; gap: 13px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.founder-line > span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--green); font-family: var(--display); }
.founder-line strong, .founder-line small { display: block; }
.founder-line strong { font-size: .9rem; }
.founder-line small { color: var(--muted); font-size: .73rem; }
.channels { padding-top: 20px; }
.channels-row { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: end; }
.social-links { border-top: 1px solid var(--line); }
.social-links a { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.social-links span { font-family: var(--display); font-size: 1.25rem; }
.social-links small { color: var(--muted); }
.social-links b { color: var(--green); font-weight: 400; }
.contact { width: min(100% - 64px, 1380px); margin-bottom: 90px; padding: 120px 60px; border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 80% 30%, rgba(48,236,125,.12), transparent 35%), var(--panel); text-align: center; }
.contact h2 { max-width: 900px; margin: 0 auto 22px; }
.contact p { max-width: 620px; margin: 0 auto 30px; color: var(--soft); }

/* Footer */
.footer { width: min(100% - 64px, 1380px); margin: auto; padding: 34px 0 45px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer .logo-mark { width: 30px; height: 30px; }
.footer-links { display: flex; gap: 23px; }
.footer-links a { color: var(--soft); font-size: .75rem; text-decoration: none; }
.footer > p { justify-self: end; color: var(--muted); font-size: .7rem; }

@media (max-width: 980px) {
  section { width: min(100% - 40px, 1380px); padding: 100px 0; }
  .nav { padding-inline: 20px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 90px 30px;
    background: rgba(5,7,6,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s, visibility .3s, transform .3s var(--ease);
  }
  .nav-links.active { opacity: 1; visibility: visible; transform: none; }
  .nav-link, .nav-cta { font-family: var(--display); font-size: 2rem; text-transform: none; letter-spacing: -.02em; }
  .nav-cta { padding: 0; border: 0; color: var(--green); }
  .hero { padding-inline: 20px; }
  .hero-video { left: 67%; width: 76%; }
  .hero-vignette { background: linear-gradient(90deg, var(--bg) 0%, rgba(5,7,6,.85) 45%, rgba(5,7,6,.4) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 30%, rgba(5,7,6,.45) 100%); }
  .hero h1 { font-size: clamp(4rem, 12vw, 7rem); }
  .hero-note { right: 20px; }
  .split-header, .studio, .channels-row, .intersection { grid-template-columns: 1fr; gap: 45px; }
  .originals-grid { grid-template-columns: 1fr; }
  .original-card { min-height: 650px; }
  .vault-card { min-height: 560px; }
  .technology, .universe { padding-inline: 20px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intersection-visual { width: min(82vw, 450px); justify-self: center; }
  .studio-copy { padding-top: 0; }
  .contact { width: calc(100% - 40px); padding-inline: 26px; }
  .footer { width: calc(100% - 40px); grid-template-columns: 1fr auto; }
  .footer-links { display: none; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 72px; }
  body { overflow-x: clip; }
  .grain { display: none; }

  .nav, .nav.scrolled {
    padding: max(12px, env(safe-area-inset-top)) 16px 12px;
  }
  .nav.scrolled { background: rgba(5, 7, 6, .94); }
  .logo { gap: 8px; }
  .logo-mark { width: 30px; height: 30px; }
  .logo-text { font-size: .94rem; }
  .menu-toggle {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    margin-right: -8px;
  }
  .nav-links { padding: 92px 24px max(32px, env(safe-area-inset-bottom)); }
  .nav-link, .nav-cta { min-height: 48px; display: flex; align-items: center; }

  section { width: calc(100% - 32px); padding: 76px 0; }
  .section-label, .eyebrow { margin-bottom: 14px; font-size: .62rem; letter-spacing: .16em; }
  .section-header { margin-bottom: 32px; }
  .section-header h2, .studio h2, .channels h2, .contact h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 1;
  }
  .split-header { gap: 18px; }
  .split-header > p { font-size: .94rem; }

  .hero {
    width: 100%;
    min-height: max(680px, 100svh);
    padding: 112px 16px max(30px, env(safe-area-inset-bottom));
    align-items: center;
  }
  .hero-video {
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: none !important;
    object-position: 58% center;
    opacity: .48;
  }
  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(5,7,6,.96) 0%, rgba(5,7,6,.76) 58%, rgba(5,7,6,.35) 100%),
      linear-gradient(0deg, var(--bg) 0%, transparent 42%, rgba(5,7,6,.45) 100%);
  }
  .hero-content { max-width: 100%; padding: 42px 0 72px; }
  .hero h1 {
    max-width: 350px;
    margin-bottom: 20px;
    font-size: clamp(3.2rem, 15.3vw, 4.3rem);
    line-height: .87;
    letter-spacing: -.055em;
  }
  .hero-desc { max-width: 330px; margin-bottom: 24px; font-size: .96rem; line-height: 1.55; }
  .hero-actions { align-items: stretch; gap: 8px; }
  .hero-actions .btn { min-height: 46px; padding: 11px 16px; font-size: .67rem; }
  .hero-note { left: 16px; right: 16px; bottom: 22px; font-size: .53rem; white-space: nowrap; }

  .originals { padding-top: 84px; }
  .originals-grid { gap: 12px; }
  .original-card, .vault-card { border-radius: 18px; }
  .original-card { min-height: 430px; }
  .original-media video { object-position: 54% center; }
  .original-copy { left: 20px; right: 20px; bottom: 20px; }
  .original-copy h3 { font-size: 2.15rem; }
  .original-copy p { margin-top: 9px; font-size: .86rem; line-height: 1.5; }
  .work-tag { margin-bottom: 10px; }
  .vault-card { min-height: 430px; padding: 20px; }
  .vault-orbit { width: 220px; margin-block: 8px; }
  .vault-card h3 { font-size: 2.1rem; }
  .vault-card > div:last-child p { margin: 10px 0 16px; font-size: .86rem; line-height: 1.5; }

  .technology, .universe { padding: 80px 16px; }
  .pillars-grid { grid-template-columns: 1fr; border-radius: 18px; }
  .pillar {
    min-height: 0;
    padding: 24px 22px 27px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pillar:last-child { border-bottom: 0; }
  .pillar-icon { width: 40px; height: 40px; margin: 28px 0 18px; }
  .pillar h3 { margin-bottom: 7px; font-size: 1.3rem; }
  .pillar p { font-size: .83rem; line-height: 1.55; }

  .intersection { min-height: 0; gap: 28px; }
  .intersection blockquote { font-size: clamp(2.55rem, 12vw, 3.2rem); }
  .intersection-visual { width: min(78vw, 290px); }
  .orbit-label { font-size: .56rem; }
  .tech-label { right: -1%; }

  .universe-card {
    grid-template-columns: 28px minmax(0, 1fr) 22px;
    gap: 10px;
    min-height: 96px;
    padding: 18px 0;
  }
  .universe-card:hover { padding-inline: 8px; }
  .universe-card strong { font-size: 1.32rem; }
  .universe-card p { font-size: .75rem; line-height: 1.45; }
  .app-badge { display: none; }

  .studio { gap: 26px; }
  .studio-copy .studio-lead { font-size: 1.32rem; }
  .studio-copy > p { margin-bottom: 14px; font-size: .9rem; }
  .founder-line { margin-top: 26px; padding-top: 20px; }
  .channels { padding-top: 4px; }
  .channels-row { gap: 28px; }
  .social-links a { grid-template-columns: 1fr auto; min-height: 58px; padding: 14px 0; }
  .social-links small { display: none; }

  .contact {
    width: calc(100% - 32px);
    margin-bottom: 32px;
    padding: 64px 20px;
    border-radius: 20px;
  }
  .contact p { margin-bottom: 24px; font-size: .9rem; }
  .btn-large { width: 100%; }
  .footer { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 16px; padding-bottom: max(30px, env(safe-area-inset-bottom)); }
  .footer > p { justify-self: start; }
}

@media (max-width: 350px) {
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn-text { border: 1px solid var(--line-strong); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .particle-bg { display: none; }
}
