:root {
  --bg: #091421;
  --bg-alt: #0d1b2d;
  --surface: rgba(15, 27, 43, 0.78);
  --surface-strong: rgba(10, 21, 37, 0.94);
  --line: rgba(200, 226, 255, 0.14);
  --line-strong: rgba(200, 226, 255, 0.24);
  --text: #edf6ff;
  --muted: #a4b9cf;
  --accent: #72f0d1;
  --accent-strong: #ffd36a;
  --shadow: 0 24px 72px rgba(2, 8, 18, 0.48);
  --radius-xl: 32px;
  --header-height: 88px;
  --container: min(1140px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(22, 183, 201, 0.15), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 211, 106, 0.16), transparent 28%),
    linear-gradient(180deg, #08111d 0%, #0a1728 48%, #091421 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 92%);
  opacity: 0.45;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.ambient-embers {
  position: fixed;
  inset: -18vh 0 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.95;
}

.ambient-embers::before,
.ambient-embers::after {
  content: "";
  position: absolute;
  inset: auto auto 6vh;
  width: 42vw;
  height: 32vh;
  filter: blur(70px);
  border-radius: 50%;
  opacity: 0.18;
  background: radial-gradient(circle, rgba(255, 183, 94, 0.92), transparent 70%);
}

.ambient-embers::before {
  left: -8vw;
}

.ambient-embers::after {
  right: -6vw;
  bottom: 18vh;
  background: radial-gradient(circle, rgba(255, 145, 82, 0.72), transparent 72%);
}

.ambient-embers span {
  position: absolute;
  left: var(--ember-x);
  bottom: -12vh;
  width: var(--ember-size);
  height: var(--ember-size);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 247, 221, 0.95), rgba(255, 194, 105, 0.92) 35%, rgba(255, 141, 64, 0.46) 68%, transparent 100%);
  box-shadow:
    0 0 10px rgba(255, 176, 92, 0.5),
    0 0 24px rgba(255, 132, 64, 0.28);
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
  animation:
    ember-rise var(--ember-duration) linear infinite,
    ember-flicker calc(var(--ember-duration) * 0.42) ease-in-out infinite;
  animation-delay: var(--ember-delay), var(--ember-delay);
}

@keyframes ember-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.65);
  }

  10% {
    opacity: 0.88;
  }

  55% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--ember-drift), -118vh, 0) scale(1.24);
  }
}

@keyframes ember-flicker {
  0%,
  100% {
    filter: blur(0);
  }

  35% {
    filter: blur(0.8px);
  }

  65% {
    filter: blur(0.2px);
  }
}

img,
iframe {
  max-width: 100%;
}

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

p,
li {
  color: var(--muted);
}

h1,
h2,
h3,
strong,
summary {
  color: var(--text);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

p {
  margin: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(5, 12, 22, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.site-brand--footer {
  align-items: flex-start;
}

.site-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  background-image:
    url("images/logo.png");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 28px rgba(3, 9, 18, 0.25);
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-copy span:last-child {
  font-size: 0.83rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  position: relative;
  color: #c9d7e4;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.45rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0.32rem auto;
  background: var(--text);
  border-radius: 999px;
}

.hero,
.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 3.5rem);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-bottom: 5rem;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(6, 13, 26, 0.82));
  pointer-events: none;
}

.hero-shell,
.split-layout,
.story-layout,
.contact-layout,
.faq-layout {
  display: grid;
  gap: 2rem;
}

.hero-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title,
.page-title {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-title {
  max-width: 12ch;
  font-size: clamp(2.9rem, 8vw, 5rem);
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 12ch;
}

.hero-text,
.page-copy,
.section-copy {
  max-width: 60ch;
  font-size: 1.03rem;
}

.hero-text {
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #08131f;
  background: linear-gradient(135deg, var(--accent) 0%, #98fff1 48%, var(--accent-strong) 100%);
  box-shadow: 0 18px 32px rgba(13, 219, 201, 0.24);
}

.button--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.button--secondary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(114, 240, 209, 0.18), rgba(255, 211, 106, 0.16));
  border-color: rgba(114, 240, 209, 0.28);
}

.hero-tags,
.game-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-tags {
  margin-top: 1.4rem;
}

.hero-tags li,
.game-card__meta span,
.pill {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.game-card__meta span {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  line-height: 1.15;
  white-space: nowrap;
}

.hero-visual,
.media-card,
.support-card,
.policy-card,
.statement-card,
.step-card,
.faq-item,
.contact-form,
.game-card,
.legal-shell,
.hero-float {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  align-items: start;
  min-height: 500px;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  overflow: hidden;
  gap: 0.9rem;
  background-image:
    linear-gradient(180deg, rgba(5, 13, 24, 0.1), rgba(5, 13, 24, 0.72)),
    radial-gradient(circle at top left, rgba(114, 240, 209, 0.35), transparent 35%),
    url("images/stockholm-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-visual__panel {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  justify-self: stretch;
  min-width: 0;
  max-width: none;
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(7, 17, 31, 0.8);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-label {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero-visual__panel h2 {
  font-size: clamp(1.45rem, 2.1vw, 1.75rem);
}

.hero-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.1rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.hero-float {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  min-width: 0;
  max-width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 22px;
}

.hero-float p {
  margin-top: 0.8rem;
}

.section {
  padding: 5rem 0;
}

.section--compact {
  padding: 4rem 0;
}

.section--contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.section-kicker {
  margin-bottom: 0.9rem;
  color: var(--accent-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  max-width: 12ch;
}

.section-copy {
  margin-top: 1.1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.split-layout,
.story-layout,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.media-card {
  min-height: 420px;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-media {
  background-image:
    linear-gradient(180deg, rgba(6, 15, 27, 0.22), rgba(6, 15, 27, 0.7)),
    radial-gradient(circle at top left, rgba(255, 211, 106, 0.18), transparent 35%),
    url("images/social-lounge.jpg");
}

.story-media {
  background-image:
    linear-gradient(180deg, rgba(6, 15, 27, 0.18), rgba(6, 15, 27, 0.7)),
    radial-gradient(circle at top, rgba(114, 240, 209, 0.18), transparent 45%),
    url("images/friends-evening.jpg");
}

.statement-grid,
.story-steps,
.policy-grid,
.catalog-grid {
  display: grid;
  gap: 1.25rem;
}

.statement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.statement-card,
.step-card,
.policy-card {
  padding: 1.35rem;
  border-radius: 24px;
}

.statement-card h3,
.step-card h3,
.policy-card h3,
.statement-card h2 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.story-steps,
.catalog-grid,
.policy-grid {
  margin-top: 1.75rem;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.game-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.game-art {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.game-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(5, 12, 22, 0.84));
}

.game-art--energy {
  background-image:
    linear-gradient(180deg, rgba(11, 21, 36, 0.1), rgba(11, 21, 36, 0.32)),
    radial-gradient(circle at top left, rgba(255, 211, 106, 0.28), transparent 36%),
    url("images/more-energy-coins.jpg");
}

.game-art--coin-strike {
  background-image:
    linear-gradient(180deg, rgba(11, 21, 36, 0.12), rgba(11, 21, 36, 0.34)),
    radial-gradient(circle at top right, rgba(114, 240, 209, 0.24), transparent 34%),
    url("images/coin-strike.jpg");
}

.game-art--clover-strike {
  background-image:
    linear-gradient(180deg, rgba(11, 21, 36, 0.12), rgba(11, 21, 36, 0.34)),
    radial-gradient(circle at top left, rgba(114, 240, 209, 0.28), transparent 34%),
    url("images/clover-strike.jpg");
}

.game-card__body {
  padding: 1.4rem;
  display: grid;
  gap: 0.95rem;
  flex: 1;
}

.game-card__body h2,
.game-card__body h3 {
  font-size: 1.45rem;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
}

.contact-form,
.support-card,
.legal-shell {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field span {
  color: var(--text);
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7f96ae;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(114, 240, 209, 0.22);
  border-color: rgba(114, 240, 209, 0.4);
}

.form-status {
  color: var(--accent);
  font-weight: 700;
}

.support-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.support-list {
  display: grid;
  gap: 0.8rem;
}

.support-card__notice {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.policy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-card {
  display: block;
  min-height: 100%;
}

.policy-card:hover,
.policy-card:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.page-hero {
  padding-bottom: 5rem;
}

.page-hero--compact .page-hero__content {
  padding-top: 1.6rem;
}

.page-copy {
  margin-top: 1rem;
}

.legal-shell {
  max-width: 900px;
}

.legal-copy {
  display: grid;
  gap: 1.15rem;
}

.legal-copy h2 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
}

.game-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.game-shell {
  padding-top: var(--header-height);
}

.game-shell iframe {
  display: block;
  width: 100%;
  height: clamp(600px, calc(100vh - var(--header-height)), 980px);
  border: 0;
  background: #061320;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 19, 0.92);
}

.site-footer--game {
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2.3rem 0 1.7rem;
}

.footer-grid h2 {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.footer-copy {
  margin-top: 1rem;
  max-width: 42ch;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0 1.6rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background:
    radial-gradient(circle at top, rgba(114, 240, 209, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.82), rgba(5, 10, 18, 0.94));
  backdrop-filter: blur(18px);
}

.age-gate__panel {
  width: min(620px, 100%);
  padding: 2rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 18, 33, 0.98);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.age-gate__panel h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  text-transform: uppercase;
}

.age-gate__panel p {
  margin-top: 1rem;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.age-gate__list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.has-modal {
  overflow: hidden;
}

.is-ready .hero-copy,
.is-ready .hero-visual,
.is-ready .page-hero__content,
.is-ready .section,
.is-ready .site-footer {
  animation: rise-in 560ms ease both;
}

.is-ready .hero-visual {
  animation-delay: 100ms;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .policy-grid,
  .statement-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 82px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(6, 15, 27, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0.5rem;
  }

  .hero-shell,
  .split-layout,
  .story-layout,
  .contact-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 460px;
  }

  .hero-visual__panel {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-float {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 700px) {
  .policy-grid,
  .statement-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section--compact {
    padding: 3.3rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-title,
  .page-title,
  .section-title {
    max-width: none;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 410px;
    padding: 1rem;
  }

  .hero-float {
    max-width: 100%;
  }

  .contact-form,
  .support-card,
  .legal-shell,
  .age-gate__panel {
    padding: 1.2rem;
  }

  .game-shell iframe {
    height: calc(100svh - var(--header-height));
    min-height: 72svh;
  }

  .ambient-embers::before,
  .ambient-embers::after {
    width: 70vw;
    height: 26vh;
    opacity: 0.14;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .ambient-embers {
    display: none !important;
  }
}
