@font-face {
  font-family: "ABC Whyte Semi Inktrap";
  src: url("fonts/ABCWhyteSemiInktrap-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Whyte Semi Inktrap";
  src: url("fonts/ABCWhyteSemiInktrap-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Whyte Semi Inktrap";
  src: url("fonts/ABCWhyteSemiInktrap-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LoRes 15 OT";
  src: url("fonts/LoRes15OTAltOakland-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LoRes 12 OT";
  src: url("fonts/LoRes12OT-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nighty";
  src: url("Nighty.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --size-unit: 16;
  --size-container-ideal: 1440;
  --size-container-min: 992px;
  --size-container-max: 2560px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
  --color-light: #fff;
  --color-dark: #000;
  --color-grey: grey;
  --color-grey-dark: #333;
  --color-accent: #00deff;
  --color-dark-20: #0003;
  --color-dark-50: #00000080;
  --font-primary: "Chivo Mono", "SF Mono", ui-monospace, monospace;
  --tag-size: 0.75em;
  --padding-global: 2.5em;
}

@media screen and (min-width: 1921px) {
  :root {
    --size-font: 21.333333px;
  }
}

@media screen and (max-width: 991px) {
  :root {
    --size-container-ideal: 834;
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 600;
    --size-container-min: 480px;
    --size-container-max: 767px;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 390;
    --size-container-min: 320px;
    --size-container-max: 479px;
  }
}

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

html,
body {
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  overflow-x: clip;
}

html {
  background: #000;
}

body {
  background: #000;
  color: var(--color-dark);
  font-family: var(--font-primary);
  font-size: var(--size-font);
  line-height: 1.2;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
body * {
  cursor: url("./cursors/handcur-cursor.png") 16 11, auto !important;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading,
body.is-loading * {
  cursor: url("./cursors/keycur-cursor.png") 2 15, auto !important;
}

.cursor-flame-trail {
  position: fixed;
  inset: 0;
  z-index: 10001;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: difference;
}

body.is-loading::before {
  content: "";
  position: fixed;
  inset: -20vh -1px;
  z-index: 9999;
  background: #000;
  pointer-events: none;
}

.page-loader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: -webkit-fill-available;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  color: #fff;
  transform: translateY(0);
  transition: transform 0.78s cubic-bezier(0.65, 0, 0.35, 1);
}

.page-loader.is-leaving {
  transform: translateY(-100%);
  pointer-events: none;
}

.page-loader-message {
  width: min(78vw, 62rem);
  text-align: center;
}

.page-loader-message p {
  margin: 0 0 1.25rem;
  color: #ccff00;
  font-size: clamp(0.62rem, 0.8vw, 0.78rem);
  letter-spacing: 0.16em;
}

.page-loader-message h1 {
  margin: 0;
  font-family: "LoRes 15 OT", var(--font-primary);
  font-size: clamp(2.2rem, 6.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.025em;
  text-wrap: balance;
  animation: loader-text-jitter 0.36s steps(2, jump-none) infinite;
}

@keyframes loader-text-jitter {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-1px, 1px); }
  66% { transform: translate(1px, -1px); }
}

.page-loader-status {
  position: absolute;
  right: var(--padding-global);
  bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  left: var(--padding-global);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem 1.25rem;
  align-items: end;
}

.page-loader-readout {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.page-loader-track {
  grid-column: 1 / -1;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.page-loader-actions {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.page-loader-enter {
  min-width: min(18rem, calc(100vw - 6rem));
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid #ccff00;
  background: #ccff00;
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 150ms linear, filter 150ms linear;
}

.page-loader-enter:disabled {
  cursor: wait;
  opacity: 0.28;
}

.page-loader-enter:not(:disabled):hover,
.page-loader-enter:not(:disabled):focus-visible {
  background: #ccff00;
  color: #000;
  filter: brightness(0.78);
}

.page-loader-track span {
  display: block;
  width: 0;
  height: 100%;
  background: #ccff00;
  transform-origin: left center;
}

.page-loader-audio {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: border-color 150ms linear, background 150ms linear;
}

.page-loader-audio:hover,
.page-loader-audio:focus-visible {
  border-color: #ccff00;
  background: rgba(204, 255, 0, 0.1);
}

.page-loader-audio img {
  width: 1.1rem;
  height: 1.1rem;
  filter: invert(1);
}

.page-loader-audio .is-sound-off,
.page-loader-audio[aria-pressed="false"] .is-sound-on {
  display: none;
}

.page-loader-audio[aria-pressed="false"] .is-sound-off {
  display: block;
}

.page-loader-corner {
  position: absolute;
  width: 1rem;
  height: 1rem;
  color: #ccff00;
}

.page-loader-corner::before,
.page-loader-corner::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.page-loader-corner::before {
  width: 100%;
  height: 1px;
}

.page-loader-corner::after {
  width: 1px;
  height: 100%;
}

.page-loader-corner.is-tl { top: calc(1rem + env(safe-area-inset-top, 0px)); left: calc(1rem + env(safe-area-inset-left, 0px)); }
.page-loader-corner.is-tr { top: calc(1rem + env(safe-area-inset-top, 0px)); right: calc(1rem + env(safe-area-inset-right, 0px)); transform: rotate(90deg); }
.page-loader-corner.is-br { right: calc(1rem + env(safe-area-inset-right, 0px)); bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); transform: rotate(180deg); }
.page-loader-corner.is-bl { bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); left: calc(1rem + env(safe-area-inset-left, 0px)); transform: rotate(270deg); }

@media screen and (max-width: 767px) {
  .page-loader-message {
    width: min(88vw, 32rem);
  }

  .page-loader-status {
    right: max(1.25rem, calc(env(safe-area-inset-right, 0px) + 0.75rem));
    bottom: max(1.35rem, calc(env(safe-area-inset-bottom, 0px) + 0.75rem));
    left: max(1.25rem, calc(env(safe-area-inset-left, 0px) + 0.75rem));
    grid-template-columns: 1fr;
  }

  .page-loader-enter {
    min-width: min(14rem, calc(100vw - 8rem));
  }

}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    transition-duration: 0.01ms;
  }
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--size-container);
  margin-left: auto;
  margin-right: auto;
}

.padding-global {
  padding-right: var(--padding-global);
  padding-left: var(--padding-global);
  position: relative;
}

.padding-section-nav {
  padding-top: 0.9em;
  padding-bottom: 0.9em;
}

.grid-global {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  width: 100%;
  position: relative;
}

.text-style-tag-regular {
  font-family: var(--font-primary);
  font-size: var(--tag-size);
  font-weight: 400;
}

.text-align-justify {
  text-align: justify;
}

.tag_component {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.375em;
  white-space: nowrap;
}

.tag_component.is-grey {
  color: var(--color-grey);
}

.tag_component.is-white {
  color: var(--color-light);
}

.tag_icon {
  width: 0.4375em;
  height: 0.4375em;
  background: var(--color-dark);
  flex: 0 0 auto;
}

.tag_icon.is-white {
  background: var(--color-light);
}

.tag_icon.is-grey {
  background: var(--color-grey);
}

.navbar-slot {
  height: var(--nav-h, 4.75em);
  flex-shrink: 0;
  background: #ccff00;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  background: #ccff00;
  color: #000;
  border-bottom: 1px solid #000;
}

.navbar .tag_icon {
  background: currentColor;
}

.nav_wrapper {
  width: 100%;
}

.nav_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25em;
  width: 100%;
}

.nav_logo-link {
  display: block;
  flex: 0 0 auto;
  width: 5.5em;
}

.nav_logo {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.26);
  transform-origin: left center;
}

.nav_navigation_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5em;
  flex: 1 1 auto;
}

.nav_link_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.375em;
  white-space: nowrap;
}

.nav_link_wrapper:hover {
  opacity: 0.6;
}

.nav-contract-copy,
.menu-contract-copy {
  position: relative;
  border: 1px solid #000;
  background: #000;
  color: #ccff00;
  font: inherit;
  font-size: var(--tag-size);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-contract-copy {
  min-height: 2.25rem;
  padding: 0.55rem 0.8rem;
  white-space: nowrap;
}

.contract-short {
  text-transform: none;
}

.nav-contract-copy:hover,
.nav-contract-copy:focus-visible,
.menu-contract-copy:hover,
.menu-contract-copy:focus-visible {
  background: #ccff00;
  color: #000;
}

.copy-toast {
  position: absolute;
  right: -0.35rem;
  bottom: -1.55rem;
  z-index: 20;
  width: max-content;
  padding: 0.35rem 0.5rem;
  border: 1px solid #ccff00;
  border-radius: 0.2rem;
  background: #000;
  color: #ccff00;
  font-size: 0.58rem;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.25rem);
  transition: opacity 150ms ease, transform 150ms ease;
}

[data-copy-address].is-copied .copy-toast {
  opacity: 1;
  transform: translateY(0);
}

.marker-overlay {
  position: fixed;
  inset: 1.25em;
  z-index: 950;
  pointer-events: none;
  color: var(--color-light);
  mix-blend-mode: difference;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25em;
}

.marker-overlay_icon {
  width: 0.625em;
  height: 0.625em;
}

.marker-overlay_icon.is-top-left {
  position: absolute;
  top: 0;
  left: 0;
}

.marker-overlay_icon.is-top-right {
  position: absolute;
  top: 0;
  right: 0;
}

.marker-overlay_icon.is-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.marker-overlay_icon.is-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.marker-overlay_icon.is-center-left {
  height: 1.1875em;
  position: absolute;
  left: 0;
}

.marker-overlay_icon.is-center-right {
  height: 1.1875em;
  position: absolute;
  right: 0;
}

.menu-button {
  display: none;
  position: fixed;
  top: 0.9em;
  right: var(--padding-global);
  z-index: 999;
  align-items: center;
  gap: 0.3125em;
  background: #ccff00;
  color: #000;
  border-radius: 0.125em;
  padding: 0.625em;
}

.menu-button .tag_icon.is-white {
  background: currentColor;
}

.menu-contract-copy {
  width: 100%;
  padding: 1rem;
  text-align: left;
}



.menu_wrapper {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.625, 0.05, 0, 1);
}

.menu_wrapper.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu_overlay {
  position: absolute;
  inset: 0;
  background: var(--color-dark-50);
  border: 1px solid var(--color-dark-20);
}

.menu {
  position: absolute;
  inset: 1.25em;
  z-index: 1;
  background: #ccff00;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.25em;
  transform: scale(0);
  transform-origin: 100% 0%;
  transition: transform 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}

.menu .tag_component.is-white {
  color: #000;
}

.menu .tag_icon.is-white {
  background: currentColor;
}

.menu_wrapper.is-open .menu {
  transform: scale(1);
}

.menu_top,
.menu_bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  width: 100%;
}

.menu_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu_close {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75em;
  min-height: 1.75em;
  padding: 0.625em;
  border-radius: 0.125em;
  background: #000;
  color: #ccff00;
}

.menu_close svg {
  width: 0.7em;
  height: 0.7em;
  display: block;
}

.divider {
  width: 100%;
  height: 0.0625em;
  background: #000;
}

.menu_link_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25em;
}

.menu_link_item {
  display: flex;
  align-items: center;
  gap: 0.375em;
  color: #000;
  white-space: nowrap;
}

.menu_link_item:hover {
  opacity: 0.6;
}

.menu_link_icon {
  width: 0.4375em;
  height: 0.4375em;
  background: currentColor;
}

.menu_link_text {
  font-size: 1.25em;
}

.menu_bottom_links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em;
  width: 100%;
}

.footer_link {
  font-size: var(--tag-size);
}

.section_home-hero {
  width: 100vw;
  height: calc(100dvh - var(--nav-h, 4.75em));
  min-height: calc(100dvh - var(--nav-h, 4.75em));
  position: relative;
  overflow: hidden;
  background: #000;
  isolation: isolate;
  cursor: pointer;
}

body.is-story-locked {
  overflow: hidden;
}

.section-story {
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: #000;
  border-top: 1px solid #fff;
}

.section-story.is-active {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.section-story.is-complete {
  pointer-events: none;
}

.section-story.is-complete.is-awaiting-play .story-video {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.play-story {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 125;
  display: none;
  min-width: 8.5rem;
  padding: 1em 1.7em;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.38);
}

.section-story.is-awaiting-play .play-story {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.play-story:hover,
.play-story:focus-visible {
  background: #c6ff00;
  border-color: #c6ff00;
  color: #000;
}

.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #000;
}

.skip-story {
  position: absolute;
  z-index: 120;
  top: calc(var(--nav-h, 4.75em) + 0.85em);
  right: var(--padding-global);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92em 1.6em;
  border: 2px solid #ccff00;
  background: #ccff00;
  color: #000;
  font-family: var(--font-primary);
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.skip-story:hover {
  background: #000;
  border-color: #000;
  color: #ccff00;
}

.section-luck-slot {
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  background: #000;
}

.section-luck {
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: #000;
  border-top: 1px solid #fff;
  cursor: pointer;
}

.section-luck.is-square-in {
  position: fixed;
  inset: 0;
  z-index: 50;
  cursor: default;
  clip-path: inset(calc(50% - 7px) calc(50% - 7px) calc(50% - 7px) calc(50% - 7px));
  animation: luck-square 1.65s linear forwards;
}

.section-luck.is-scroll-return {
  position: fixed;
  inset: 0;
  z-index: 50;
  cursor: default;
  will-change: clip-path;
}

@keyframes luck-square {
  from {
    clip-path: inset(calc(50% - 7px) calc(50% - 7px) calc(50% - 7px) calc(50% - 7px));
  }
  to {
    clip-path: inset(0);
  }
}

.luck-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #000;
}

.luck-cards {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
}

.luck-card {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(10rem, 19vw, var(--card-size));
  aspect-ratio: 9 / 16;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--r)) scale(1);
  filter: drop-shadow(0 1.1rem 1.4rem rgba(0, 0, 0, 0.62));
  will-change: transform, opacity;
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
}

.luck-card.is-dragging,
.luck-card.is-moved {
  animation: none !important;
  opacity: 1;
  transform: translate(calc(-50% + var(--drag-x, 0px)), calc(-50% + var(--drag-y, 0px))) rotate(var(--r)) scale(1);
}

.luck-card.is-dragging {
  z-index: 100;
  cursor: grabbing;
  filter: drop-shadow(0 1.6rem 2rem rgba(0, 0, 0, 0.75));
}

.section-luck.is-in .luck-card.is-pop {
  animation: luck-card-pop 0.9s steps(6, end) var(--delay) both;
}

.luck-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
}

.section-luck.is-in .luck-card img {
  animation: luck-card-jitter 0.46s steps(2, jump-none) calc(var(--delay) * -1) infinite;
}

.section-luck.is-in .luck-card.is-dragging img,
.section-luck.is-in .luck-card.is-moved img {
  animation: none;
  pointer-events: none;
}

@keyframes luck-card-pop {
  0% {
    opacity: 1;
    transform: translate(-50%, calc(-50% + 5rem)) rotate(calc(var(--r) - 28deg)) scale(0.28);
  }
  60% {
    transform: translate(-50%, calc(-50% - 0.8rem)) rotate(calc(var(--r) + 7deg)) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--r)) scale(1);
  }
}

@keyframes luck-card-jitter {
  0% {
    transform: translate(-2px, 1px) rotate(-1.1deg);
  }
  25% {
    transform: translate(2px, -2px) rotate(0.8deg);
  }
  50% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  75% {
    transform: translate(2px, 2px) rotate(1.2deg);
  }
  100% {
    transform: translate(-2px, 1px) rotate(-1.1deg);
  }
}

.luck-card.is-locked-card {
  z-index: 40;
  cursor: default;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .section-luck.is-in .luck-card.is-pop {
    animation-duration: 0.01ms;
    animation-delay: 0ms;
  }

  .section-luck.is-in .luck-card img {
    animation: none;
  }
}

.luck-wheel {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 20;
  width: min(42vw, 17.5rem);
  aspect-ratio: 1;
  transform: translate(-50%, 130%);
  pointer-events: none;
}

.section-luck.is-in .luck-wheel {
  animation: luck-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

@keyframes luck-rise {
  from {
    transform: translate(-50%, 130%);
  }
  to {
    transform: translate(-50%, 0);
  }
}

.luck-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.55));
  transform: rotate(0deg);
}

.luck-disc.is-spinning {
  animation: luck-spin 2.8s cubic-bezier(0.12, 0.72, 0.08, 1) forwards;
}

@keyframes luck-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1480deg);
  }
}

.luck-disc svg {
  width: 100%;
  height: 100%;
  display: block;
}

.luck-slices-lime path {
  fill: #c6ff00;
}

.luck-slices-black path {
  fill: #0a0a0a;
}

.luck-type {
  font-family: "Press Start 2P", "Chivo Mono", monospace;
  font-size: 5.4px;
  letter-spacing: 1.1px;
}

.luck-type-dark {
  fill: #111;
}

.luck-type-lime {
  fill: #c6ff00;
}

.luck-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 34%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 32% 28%, #ff8a80 0%, #ff2a2a 38%, #c40000 68%, #6a0000 100%);
  box-shadow:
    0 0 0 3px #1a1a1a,
    0 0 0 5px #c6ff00,
    inset 0 -10px 14px rgba(0, 0, 0, 0.35),
    inset 0 8px 10px rgba(255, 255, 255, 0.28),
    0 10px 18px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.luck-hub:active {
  transform: translate(-50%, -50%) scale(0.96);
}

.house-wins {
  position: absolute;
  right: var(--padding-global);
  bottom: 2.5em;
  z-index: 30;
  padding: 0.7em 0.9em;
  background: #c6ff00;
  color: #041208;
  font-family: "Press Start 2P", "Chivo Mono", monospace;
  font-size: 0.55rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.8em);
  pointer-events: none;
}

.house-wins.is-on {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-parade {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(46vh / 6 + 1.25rem);
  background: #000;
}

.parade-sticky {
  position: relative;
  top: 0;
  height: calc(46vh / 6 + 1.25rem);
  overflow: hidden;
  background: #000;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.parade-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.parade-world {
  position: absolute;
  inset: 0;
  min-width: 100%;
  will-change: transform;
}

.parade-flora {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
  mix-blend-mode: screen;
  pointer-events: none;
}

.parade-flora.is-red {
  left: 16%;
  height: 58.6%;
}

.parade-flora.is-grass-2 {
  left: 23%;
  height: 46%;
  max-width: 6%;
}

.parade-flora.is-green {
  left: 43%;
  height: 46.4%;
  max-width: 5.6%;
}

.parade-flora.is-purple {
  right: 2%;
  left: auto;
  height: 65.8%;
}

.parade-char {
  position: absolute;
  bottom: 0;
  left: 0;
  height: calc(46vh / 6);
  aspect-ratio: 192 / 320;
  will-change: left;
  pointer-events: none;
}

.char-stand,
.char-walk {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.char-stand {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  opacity: 1;
}

.char-walk {
  opacity: 0;
  transform-origin: center bottom;
}

.char-walk-strip {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  will-change: transform;
}

.parade-char.is-idle .char-stand {
  opacity: 1;
}

.parade-char.is-walking .char-stand {
  opacity: 0;
}

.parade-char.is-walking .char-walk {
  opacity: 1;
}

.parade-char.is-reversing .char-stand,
.parade-char.is-reversing .char-walk {
  transform: scaleX(-1);
}

.parade-char[data-char="1"] {
  z-index: 4;
}

.parade-char[data-char="2"] {
  z-index: 3;
}

.parade-char[data-char="3"] {
  z-index: 2;
}

.parade-char[data-char="4"] {
  z-index: 1;
}

.home-hero_background_wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-hero_background-video_content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-video_wrapper,
.background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.marker_home-hero-video {
  display: none;
}

.home-hero_loader-logo_wrapper {
  position: absolute;
  z-index: 100;
  padding: 1em;
  inset: 0;
  width: fit-content;
  height: fit-content;
  margin: auto;
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
}

.home-hero_loader-logo {
  display: block;
  width: min(72vw, 44em);
  height: auto;
}

.home-hero-logo_markers {
  position: absolute;
  inset: 0;
  width: calc(100% + 5px);
  height: calc(100% + 1px);
  pointer-events: none;
}

.home-hero_bottom {
  position: absolute;
  z-index: 100;
  width: 100%;
  bottom: 2.5em;
  color: var(--color-light);
  pointer-events: none;
}

.hero-copy {
  grid-column: 1 / 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  width: 100%;
  pointer-events: auto;
}

.hero-copy-title {
  margin: 0;
  font-size: 1.35em;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

.hero-title-hand,
.story-contract-hand,
.cta-hand {
  display: inline-block;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-title-hand {
  width: 2.35em;
  height: 2.35em;
  margin-left: 0.35em;
  vertical-align: middle;
}

.hero-copy-body {
  margin: 0;
  max-width: 28em;
  font-size: var(--tag-size);
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
  mix-blend-mode: difference;
}

.hero-buy {
  position: absolute;
  z-index: 110;
  left: 50%;
  bottom: calc(2.5em + 7%);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.84em 1.38em;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  white-space: nowrap;
}

.hero-buy:hover {
  background: #c6ff00;
  border-color: #c6ff00;
  color: #000;
}

.story-contract-copy {
  position: absolute;
  z-index: 121;
  top: calc(var(--nav-h, 4.75em) + 7rem);
  right: var(--padding-global);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: #ccff00;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 150ms ease;
}

.story-contract-hand {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
}

.story-contract-copy-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.story-contract-copy:hover,
.story-contract-copy:focus-visible {
  opacity: 0.65;
}

.story-contract-copy .copy-toast {
  right: 0;
  bottom: -1.8rem;
}

.audio-toggle {
  position: absolute;
  z-index: 110;
  right: var(--padding-global);
  bottom: 2.5em;
  display: flex;
  align-items: center;
  gap: 0.375em;
  color: var(--color-light);
  mix-blend-mode: difference;
  cursor: pointer;
  white-space: nowrap;
  pointer-events: auto;
}

.audio-toggle:hover {
  color: var(--color-accent);
}

@media screen and (max-width: 991px) {
  .nav_navigation_wrapper {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero-copy {
    grid-column: 1 / 8;
  }

  .home-hero_loader-logo {
    width: min(90vw, 28em);
  }

  .marker-overlay {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .nav_logo-link {
    width: 4.5em;
  }

  .hero-copy {
    grid-column: 1 / span 8;
  }

  .padding-global {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }

  :root {
    --padding-global: 1.25em;
  }
}

.section-cta {
  position: relative;
  min-height: 100dvh;
  background: #000;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
}

.cta-flower {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
  aspect-ratio: 576 / 1024;
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
  z-index: 1;
}

.cta-device {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(48vw, 40rem);
  transform: translate(36%, -50%) rotate(-18deg);
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

.cta-copy {
  position: relative;
  z-index: 2;
  width: min(52rem, 72vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.cta-kicker {
  margin: 0;
  font-family: "ABC Whyte Semi Inktrap", "Chivo Mono", sans-serif;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.cta-accent {
  color: #ccff00;
}

.cta-lines {
  margin: 0;
  font-family: "ABC Whyte Semi Inktrap", "Chivo Mono", sans-serif;
  font-size: clamp(1.15rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.cta-body {
  margin: 0.35rem 0 0;
  max-width: 34em;
  font-family: var(--font-primary);
  font-size: 0.95em;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #d8d8d8;
}

.cta-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.85em 1.45em;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

.cta-buy:hover {
  background: #c6ff00;
  border-color: #c6ff00;
  color: #000;
}

.cta-meta {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 0.68em;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.cta-brand {
  margin: 1.4rem 0 0;
  font-family: "LoRes 15 OT", "LoRes 12 OT", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  font-smooth: never;
  -webkit-font-smoothing: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-hand {
  width: clamp(4rem, 7vw, 6rem);
  height: clamp(4rem, 7vw, 6rem);
  margin-left: 0.2em;
  flex: 0 0 auto;
}

.cta-dollar {
  color: #ccff00;
}

.site-footer {
  background: #ccff00;
  color: #000;
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.4;
  text-transform: none;
  border-top: 1px solid #000;
}

.footer-shell {
  width: 100%;
}

.footer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.65fr);
  gap: 2rem;
  align-items: end;
  padding: clamp(1.75rem, 3.25vw, 3.25rem) var(--padding-global);
  border-bottom: 1px solid #000;
}

.footer-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand-block h2 {
  margin: 0;
  max-width: 9em;
  font-family: "Nighty", "ABC Whyte Semi Inktrap", sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.footer-tagline {
  max-width: 39rem;
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
}

.footer-manifesto {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.8rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid #000;
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: #000;
  color: #ccff00;
  transform: translate(-2px, -2px);
}

.footer-socials img {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-social-wordmark {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 0.55rem;
  line-height: 1;
}

.footer-socials a:hover img,
.footer-socials a:focus-visible img {
  filter: invert(1);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid #000;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 10rem;
  padding: 1.3rem var(--padding-global) 1.55rem;
  border-right: 1px solid #000;
}

.footer-col:last-child {
  border-right: 0;
}

.footer-col h3 {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a {
  width: fit-content;
  color: #000;
  font-size: clamp(0.92rem, 1.35vw, 1.15rem);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  text-decoration-thickness: 3px;
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.1rem var(--padding-global);
  border-bottom: 1px solid #000;
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer-legal p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--padding-global);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .cta-device {
    width: min(52vw, 22rem);
    right: 0;
    transform: translate(36%, -50%) rotate(-18deg);
  }

  .cta-flower {
    width: auto;
    height: 100%;
    opacity: 0.85;
  }

  .footer-intro {
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 767px) {
  .section-parade {
    height: calc(46vh / 6 + 1.25rem);
  }

  .parade-sticky {
    position: relative;
    top: 0;
    height: calc(46vh / 6 + 1.25rem);
  }

  .parade-world {
    width: max(230vw, 52rem);
    transform: translate3d(calc(-1px * var(--parade-camera, 0)), 0, 0);
  }

  .parade-char {
    height: calc(46vh / 6);
  }

  .footer-intro {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .footer-nav,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-col {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #000;
  }

  .footer-col:last-child {
    border-bottom: 0;
  }

  .footer-legal {
    gap: 1rem;
  }

  .cta-device {
    top: auto;
    right: -3rem;
    bottom: -1rem;
    width: min(44vw, 17rem);
    opacity: 0.9;
    transform: rotate(-10deg);
  }

  .cta-flower {
    width: min(20vw, 7rem);
    height: 92%;
    top: 4%;
    object-fit: contain;
    object-position: left center;
    opacity: 0.82;
  }
}

@media screen and (max-width: 479px) {
  .padding-section-nav {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .nav_logo-link {
    width: 4.25rem;
  }

  .menu-button {
    top: 0.45rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    justify-content: center;
    padding: 0.65rem;
  }

  .menu {
    inset: 0.75rem;
    padding: 1rem;
  }

  .home-hero_loader-logo_wrapper {
    padding: 0.65rem;
  }

  .home-hero_loader-logo {
    width: 84vw;
  }

  .home-hero_bottom {
    bottom: 6.25rem;
  }

  .hero-copy {
    grid-column: 1 / -1;
    max-width: 20rem;
    gap: 0.65rem;
  }

  .hero-copy-title {
    font-size: 1.25rem;
  }

  .hero-copy-body {
    max-width: 27rem;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .hero-buy {
    right: auto;
    bottom: 1.25rem;
    left: var(--padding-global);
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    transform: none;
    font-size: 0.78rem;
  }

  .story-contract-copy {
    top: calc(var(--nav-h, 4.75em) + 5.5rem);
    right: 1rem;
    font-size: 0.65rem;
  }

  .story-contract-hand {
    width: 2.5rem;
    height: 2.5rem;
  }

  .audio-toggle {
    right: var(--padding-global);
    bottom: 1.25rem;
    min-height: 2.75rem;
    padding: 0.75rem 0 0.75rem 0.75rem;
    font-size: 0.78rem;
  }

  .luck-card {
    filter: drop-shadow(0 0.55rem 0.75rem rgba(0, 0, 0, 0.5));
  }

  .cta-copy {
    width: calc(100% - 2.5rem);
    gap: 0.9rem;
    padding: 2.25rem 0 1.75rem;
  }

  .section-cta {
    min-height: auto;
  }

  .cta-flower {
    top: 0.5rem;
    width: 5.75rem;
    height: 12rem;
    opacity: 0.88;
    object-position: left top;
  }

  .cta-device {
    right: -2.75rem;
    bottom: -0.45rem;
    width: 9.75rem;
    opacity: 0.95;
    transform: rotate(-8deg);
  }

  .hero-title-hand {
    width: 2rem;
    height: 2rem;
  }

  .cta-hand {
    width: 3.25rem;
    height: 3.25rem;
  }

  .cta-body,
  .cta-meta {
    max-width: 18rem;
  }

  .footer-intro {
    gap: 1.4rem;
    padding: 1.5rem var(--padding-global);
  }

  .footer-brand-block h2 {
    font-size: 2.7rem;
    line-height: 0.82;
  }

  .footer-socials {
    gap: 0.5rem;
  }

  .footer-socials a {
    min-height: 2.75rem;
    gap: 0.5rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.64rem;
  }

  .footer-socials img {
    width: 1.15rem;
    height: 1.15rem;
  }

  .footer-social-wordmark {
    width: 1.15rem;
    height: 1.15rem;
  }

  .footer-col {
    padding-top: 1.1rem;
    padding-bottom: 1.25rem;
  }

  .footer-legal {
    font-size: 0.68rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
