:root {
  --ink: #08080d;
  --panel: #111119;
  --line: #ffffff17;
  --muted: #9a98a5;
  --text: #f4f1f7;
  --amber: #ffb84d;
  --cyan: #57e9db;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font:
    500 14px Manrope,
    Arial,
    sans-serif;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0.45;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 4%, #6d45c214, transparent 27%),
    radial-gradient(circle at 88% 42%, #ffb84d0b, transparent 25%),
    linear-gradient(115deg, transparent 35%, #ffffff03 50%, transparent 65%);
}
.topbar {
  height: 80px;
  padding: 0 clamp(24px, 5vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.brand {
  font: 800 18px Unbounded;
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 9px;
  align-items: center;
  letter-spacing: -1px;
}
.brand-mark {
  width: 27px;
  height: 27px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--amber);
  font: 700 13px DM Mono;
}
nav {
  display: flex;
  gap: 31px;
  margin-left: 80px;
}
nav a,
footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}
nav .active,
nav a:hover {
  color: #fff;
}
.account {
  display: flex;
  gap: 12px;
  align-items: center;
}
.online-dot,
.pulse {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}
.balance {
  font: 700 14px DM Mono;
}
.balance small {
  color: var(--amber);
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #46414e;
  background: #292631;
  color: #fff;
}
.hero {
  min-height: 600px;
  max-width: 1440px;
  margin: auto;
  padding: 105px clamp(24px, 8vw, 130px) 70px;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -50px;
  top: -280px;
  background: #6139c8;
  opacity: 0.16;
  filter: blur(190px);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(570px, 100%);
}
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  font: 500 10px DM Mono;
  letter-spacing: 1.6px;
  color: #b7b1c1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow span {
  width: 18px;
  height: 1px;
  background: var(--amber);
}
h1,
h2 {
  font: 700 clamp(42px, 5.3vw, 78px) / 1.04 Unbounded;
  margin: 0;
  letter-spacing: -4px;
}
h2 {
  font-size: clamp(30px, 3.4vw, 49px);
}
em {
  color: var(--amber);
  font-style: normal;
}
.hero-text {
  max-width: 430px;
  color: #aaa7b2;
  line-height: 1.8;
  margin: 25px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.button {
  border: 0;
  border-radius: 5px;
  padding: 14px 19px;
  background: var(--amber);
  color: #151017;
  font: 800 12px Manrope;
  cursor: pointer;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #ffb84d35;
}
.button b {
  font-size: 16px;
  margin-left: 8px;
}
.button.quiet {
  background: #ffffff10;
  border: 1px solid #ffffff20;
  color: #e7e3eb;
}
.hero-stats {
  display: flex;
  gap: 35px;
  margin-top: 74px;
}
.hero-stats div {
  display: grid;
  gap: 3px;
}
.hero-stats strong {
  font: 700 19px DM Mono;
}
.hero-stats span {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-art {
  position: absolute;
  inset: 0 0 0 39%;
  pointer-events: none;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.88;
  mask-image: linear-gradient(90deg, transparent 1%, #000 24%);
}
.orbit {
  position: absolute;
  width: 500px;
  height: 160px;
  right: 4%;
  top: 37%;
  border: 1px solid #c2a8ff38;
  border-radius: 50%;
  transform: rotate(-24deg);
  animation: drift 7s ease-in-out infinite;
}
.orbit-two {
  width: 640px;
  height: 220px;
  right: -10%;
  top: 29%;
  animation-delay: -4s;
}
.scroll-note {
  position: absolute;
  bottom: 35px;
  left: 8%;
  font: 500 9px DM Mono;
  letter-spacing: 1.4px;
  color: #75717b;
}
.scroll-note i {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: #77727c;
  margin-left: 10px;
}
.drops-bar {
  height: 48px;
  padding: 0 max(24px, 8vw);
  display: flex;
  align-items: center;
  gap: 28px;
  border-block: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}
.drops-bar p {
  font: 500 10px DM Mono;
  color: var(--amber);
  letter-spacing: 1px;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  background: var(--ink);
  padding-right: 28px;
}
.pulse {
  display: inline-block;
  animation: pulse 1.8s infinite;
}
.drops-track {
  display: flex;
  gap: 45px;
  min-width: max-content;
  animation: marquee 28s linear infinite;
}
.drops-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.drops-track span {
  font-size: 11px;
  color: #d4d0da;
}
.drops-track b {
  color: #8b8792;
  font-weight: 500;
}
.drops-track i {
  font: 400 10px DM Mono;
  color: #6f6a75;
  margin-left: 6px;
}
.catalogue {
  max-width: 1280px;
  margin: auto;
  padding: 110px 28px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}
.filters {
  display: flex;
  gap: 7px;
}
.filter {
  border: 1px solid #ffffff16;
  border-radius: 30px;
  background: transparent;
  color: #9995a0;
  padding: 8px 13px;
  font: 700 10px Manrope;
}
.filter.selected {
  color: #17121c;
  background: var(--amber);
  border-color: var(--amber);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.case-card {
  --case: #a27cff;
  min-height: 318px;
  border: 1px solid #ffffff12;
  background: linear-gradient(150deg, #1b1724, #0e0e15 60%);
  padding: 17px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
}
.case-card:hover {
  transform: translateY(-8px);
  border-color: var(--case);
}
.case-card:after {
  content: "";
  position: absolute;
  inset: 30% -70% -50%;
  background: radial-gradient(ellipse, var(--case), transparent 62%);
  opacity: 0.3;
}
.case-rarity {
  font: 500 9px DM Mono;
  letter-spacing: 1px;
  color: var(--case);
  position: relative;
  z-index: 1;
}
.case-visual {
  height: 163px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.case-box {
  width: 108px;
  height: 125px;
  border: 1px solid var(--case);
  background: linear-gradient(125deg, #28222f, var(--case));
  box-shadow:
    inset 0 0 0 7px #08080d55,
    0 20px 45px #0008;
  transform: perspective(500px) rotateY(-17deg) rotateX(8deg);
  transition: 0.3s;
}
.case-card:hover .case-box {
  transform: perspective(500px) rotateY(12deg) rotateX(-7deg) scale(1.05);
}
.case-box:before {
  content: "✦";
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #fff;
  text-shadow: 0 0 20px #fff;
}
.case-card h3 {
  font: 700 16px Unbounded;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}
.case-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 11px;
  position: relative;
  z-index: 1;
}
.case-footer strong {
  font: 700 16px DM Mono;
}
.case-footer button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 21px;
}
.inventory {
  max-width: 1280px;
  margin: 0 auto 110px;
  padding: 65px 70px;
  background: linear-gradient(110deg, #16121c, #101118);
  border: 1px solid #ffffff10;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}
.inventory h2 {
  margin-bottom: 18px;
}
.inventory-copy {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 13px;
  margin-bottom: 28px;
}
.inventory-stack {
  min-height: 245px;
  display: grid;
  place-items: center;
  position: relative;
}
.empty-inventory {
  font: 600 20px / 1.5 Unbounded;
  color: #46414e;
  text-align: center;
  border: 1px dashed #3a3540;
  padding: 50px 70px;
}
.inventory-item {
  position: absolute;
  width: 190px;
  height: 210px;
  padding: 18px;
  background: linear-gradient(140deg, #27202f, #141219);
  border: 1px solid var(--item);
  box-shadow: 0 12px 30px #0008;
  transform: rotate(var(--tilt)) translate(var(--x), var(--y));
  animation: arrive 0.4s both;
}
.inventory-item p {
  font: 500 9px DM Mono;
  color: var(--item);
  margin: 0 0 35px;
}
.inventory-item h4 {
  font: 700 14px Unbounded;
  margin: 0;
  line-height: 1.35;
}
.fairness {
  max-width: 1280px;
  margin: 0 auto 90px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
}
.fairness > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  max-width: 510px;
  margin-top: 22px;
}
.fair-card {
  border: 1px solid #ffffff14;
  background: #101017;
  padding: 27px;
}
.fair-step {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.fair-step span {
  font: 500 10px DM Mono;
  color: var(--amber);
}
.fair-step p {
  margin: 7px 0;
  color: #d7d2de;
}
.fair-step code {
  font: 400 10px DM Mono;
  color: #77727e;
  word-break: break-all;
}
.fair-card .button {
  margin-top: 23px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 35px max(24px, 8vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p {
  color: #77727d;
  font-size: 11px;
}
.open-dialog,
.fair-dialog {
  border: 1px solid #ffffff22;
  background: #111119;
  color: #fff;
  width: min(800px, calc(100% - 30px));
  padding: 30px;
  box-shadow: 0 30px 100px #000;
}
.open-dialog::backdrop,
.fair-dialog::backdrop {
  background: #040407d9;
  backdrop-filter: blur(7px);
}
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #fff;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}
.open-top {
  display: flex;
  justify-content: space-between;
  font: 500 10px DM Mono;
  color: #aaa4b2;
  letter-spacing: 1px;
  padding-right: 25px;
}
.open-top span:last-child {
  color: var(--amber);
}
.reel-window {
  height: 190px;
  margin: 32px -30px 24px;
  overflow: hidden;
  position: relative;
  background: #0b0b10;
  border-block: 1px solid #ffffff15;
}
.reel {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 9px;
  padding-left: calc(50% - 68px);
}
.reel.spinning {
  animation: spin 2.5s cubic-bezier(0.08, 0.8, 0.12, 1) forwards;
}
.reel-item {
  flex: 0 0 136px;
  height: 138px;
  padding: 16px;
  border: 1px solid var(--item);
  background: #17141c;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.reel-item span {
  font: 500 9px DM Mono;
  color: var(--item);
  margin-bottom: 8px;
}
.reel-item b {
  font: 700 11px Unbounded;
  line-height: 1.4;
}
.reel-marker {
  height: 100%;
  width: 2px;
  background: var(--amber);
  position: absolute;
  left: 50%;
  z-index: 2;
  box-shadow: 0 0 14px var(--amber);
}
.opening-status {
  text-align: center;
  color: #918b99;
  font: 500 11px DM Mono;
}
.won-card {
  text-align: center;
  padding: 10px;
}
.won-card p {
  font: 500 10px DM Mono;
  letter-spacing: 2px;
  color: var(--amber);
}
.won-card h3 {
  font: 700 25px Unbounded;
  margin: 8px;
}
.won-card div {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.won-card span {
  font: 700 17px DM Mono;
}
.won-card small {
  color: #8d8795;
}
.open-again {
  display: block;
  margin: 15px auto 0;
}
.fair-dialog {
  width: min(500px, calc(100% - 30px));
  padding: 36px;
}
.fair-dialog h2 {
  font-size: 31px;
  letter-spacing: -2px;
}
.fair-dialog > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.fair-dialog label {
  display: block;
  margin: 15px 0 0;
  color: #b5afbd;
  font-size: 11px;
}
input {
  width: 100%;
  display: block;
  margin-top: 6px;
  background: #09090e;
  border: 1px solid #393340;
  padding: 11px;
  color: #fff;
  border-radius: 3px;
}
.verify-out {
  font: 500 11px DM Mono;
  color: var(--cyan);
  margin-top: 15px;
  min-height: 18px;
}
.error {
  color: #ff8e91;
}
@keyframes drift {
  50% {
    transform: rotate(-14deg) translateY(17px);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.35;
    box-shadow: none;
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes spin {
  to {
    transform: translateX(-1170px);
  }
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: rotate(var(--tilt)) translate(var(--x), 40px);
  }
  to {
    opacity: 1;
    transform: rotate(var(--tilt)) translate(var(--x), var(--y));
  }
}
@media (max-width: 900px) {
  .hero-art {
    opacity: 0.45;
    left: 20%;
  }
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .inventory {
    margin-inline: 24px;
    padding: 45px;
    grid-template-columns: 1fr;
  }
  .fairness {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 570px;
  }
  nav {
    margin: 0;
  }
  .filters {
    display: none;
  }
}
@media (max-width: 600px) {
  .topbar {
    height: 65px;
  }
  .topbar nav {
    display: none;
  }
  .hero {
    padding-top: 75px;
  }
  .hero-art {
    left: 0;
    opacity: 0.3;
  }
  .hero-stats {
    gap: 18px;
    margin-top: 50px;
  }
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-card {
    min-height: 270px;
  }
  .case-visual {
    height: 125px;
  }
  .catalogue {
    padding-block: 70px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    margin-bottom: 20px;
  }
  .inventory {
    margin: 0 14px 70px;
    padding: 30px;
  }
  .empty-inventory {
    padding: 40px;
  }
  .fairness {
    padding: 0 24px;
    margin-bottom: 60px;
  }
  footer {
    display: grid;
    gap: 16px;
  }
  .drops-bar {
    padding: 0 24px;
  }
  .drops-bar p {
    display: none;
  }
}
