@layer reset, base, components;
@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  body, h1, h2, h3, p, figure, dl, dd { margin: 0; }
  img { display: block; max-width: 100%; height: auto; }
  button, input { font: inherit; }
}
@layer base {
  :root { --ink: #241536; --purple: #6231a5; --orange: #fa7518; --orange-dark: #a53e04; --paper: #fff; --soft: #f6f2fb; --line: #e6dfed; --muted: #665d70; --display: 'Avenir Next', 'Trebuchet MS', system-ui, sans-serif; }
  html { scroll-behavior: smooth; scroll-padding-top: 24px; }
  body { font: 1rem/1.65 'Avenir Next', system-ui, -apple-system, sans-serif; color: var(--ink); background: var(--paper); }
  h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.07; letter-spacing: -.045em; text-wrap: balance; }
  h1 { font-size: clamp(3.25rem, 6vw, 5.6rem); }
  h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
  h3 { font-size: 1.5rem; }
  em { font-style: normal; color: var(--orange-dark); }
  a { color: inherit; text-underline-offset: .23em; }
  a:hover { text-decoration-thickness: 2px; }
  a:focus-visible, summary:focus-visible { outline: 3px solid #8a4bdb; outline-offset: 5px; border-radius: 3px; }
  p { text-wrap: pretty; }
  ::selection { color: var(--ink); background: #ffc784; }
  .container { width: min(1200px, calc(100% - 80px)); margin-inline: auto; }
  .narrow { max-width: 800px; }
  .eyebrow { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
  .lede { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.6; }
  .spark { color: var(--orange); font-size: 2rem; line-height: 1; }
  .text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
  svg { width: 23px; height: 23px; flex-shrink: 0; }
  @media (max-width: 600px) { .container { width: calc(100% - 40px); } }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
}
@layer components {
  .skip-link { position: absolute; top: 8px; left: 12px; z-index: 10; padding: 12px; background: white; transform: translateY(-150%); }
  .skip-link:focus { transform: translateY(0); }
  .site-header { position: relative; z-index: 5; background: white; border-bottom: 1px solid var(--line); }
  .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 104px; }
  .brand { flex-shrink: 0; }
  .logo-crop { display: block; width: 200px; aspect-ratio: 2.75; overflow: hidden; position: relative; }
  .logo-crop img { width: 100%; position: absolute; top: -7%; }
  .pixie-crop { display: block; position: relative; overflow: hidden; aspect-ratio: 300 / 330; }
  .pixie-crop img { position: absolute; width: 512%; max-width: none; left: -204%; top: -193%; }
  .site-header nav { display: flex; align-items: center; gap: 38px; }
  .site-header nav a, .games-dropdown summary { text-decoration: none; font-size: .9rem; font-weight: 650; padding: 12px 0; }
  .site-header nav a:hover, .site-header nav a[aria-current] { color: var(--orange-dark); }
  .games-dropdown { position: relative; }
  .games-dropdown summary { display: flex; align-items: center; gap: 6px; cursor: pointer; list-style: none; }
  .games-dropdown summary::-webkit-details-marker { display: none; }
  .games-dropdown summary svg { width: 14px; height: 14px; transition: transform .15s; }
  .games-dropdown[open] summary svg { transform: rotate(180deg); }
  .games-dropdown summary:hover, .games-dropdown.is-active summary, .games-dropdown[open] summary { color: var(--orange-dark); }
  .games-menu { position: absolute; top: calc(100% + 4px); left: -16px; width: 248px; margin: 0; padding: 8px; list-style: none; background: white; border: 1px solid var(--line); border-top: 3px solid var(--orange); border-radius: 12px; box-shadow: 0 12px 32px #24153620; }
  .site-header .games-menu a { display: block; padding: 12px; border-radius: 6px; }
  .games-menu a:hover, .games-menu a:focus-visible { background: var(--soft); }
  .games-menu li + li { border-top: 1px solid var(--line); }
  .games-menu span { display: block; color: var(--muted); font-size: .75rem; font-weight: 500; margin-top: 3px; }
  @media (max-width: 700px) { .site-header nav { position: relative; } .games-dropdown { position: static; } .games-dropdown summary { font-size: .875rem; } .games-menu { left: 0; width: min(280px, 100%); } }
  .button { display: inline-flex; justify-content: center; align-items: center; gap: 28px; min-height: 55px; padding: 14px 22px; border-radius: 8px; background: var(--ink); border: 2px solid var(--ink); color: white; font-size: .95rem; font-weight: 750; text-decoration: none; transition: transform .2s, background .2s; }
  .button:hover { transform: translateY(-3px); background: #4d296f; }
  .button-light { background: #ffb55d; border-color: #ffb55d; color: #2a1535; }
  .button-light:hover { background: #ffcc8e; }
  .button-outline { background: transparent; color: var(--ink); }
  .button-outline:hover { color: white; }
  .pill { font-size: .75rem; font-weight: 700; letter-spacing: .025em; border: 1px solid #b898d5; padding: 6px 12px; border-radius: 100px; white-space: nowrap; }
  .release-note { font-size: .85rem; color: #d3c5e0; margin-top: 18px; }
  .support-banner { background: #ffdfb6; padding: 52px 0; }
  .support-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
  .support-inner .eyebrow { margin-bottom: 12px; }
  .support-inner h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
  .support-inner p:last-child { margin-top: 12px; }
  .site-footer { padding: 56px 0 24px; background: white; }
  .footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-main h2 { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin: 20px 0; }
  .footer-main a:not(:has(.logo-crop)) { display: block; font-size: .9rem; margin-bottom: 10px; text-decoration: none; }
  .footer-main p { font-size: .9rem; color: var(--muted); }
  .footer-logo { width: 175px; }
  .footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; font-size: .78rem; color: var(--muted); }
  .footer-bottom div { display: flex; gap: 24px; }
  @media (max-width: 700px) { .header-inner { flex-direction: column; gap: 0; padding-top: 10px; } .logo-crop { width: 160px; } .site-header nav { gap: 18px; width: 100%; justify-content: space-between; } .site-header nav a { font-size: .875rem; } .support-inner { align-items: flex-start; flex-direction: column; } .footer-main { grid-template-columns: 1fr 1fr; } .footer-main > div:first-child { grid-column: 1 / -1; } }
  @media (max-width: 380px) { .logo-crop { width: 130px; } .site-header nav { gap: 12px; } }
}
