@import url('pixel-ui.css');

/* ─────────────────────────────────────────────
   foolies — web3 adversarial arena
   ───────────────────────────────────────────── */

@font-face {
  font-family: '04B_03';
  src: url('fonts/04B_03.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: '04B03';
  src: url('fonts/04B_03.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'KiwiSoda';
  src: url('fonts/KiwiSoda.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CHAOS16';
  src: url('fonts/CHAOS16.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINESeedJP';
  src: url('fonts/LINESeedJP-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINESeedJP';
  src: url('fonts/LINESeedJP-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINESeedJP';
  src: url('fonts/LINESeedJP-Thin.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink-50: #10130d;
  --pink-100: #080a06;
  --pink-200: #13170e;
  --pink-300: #1a2012;
  --pink-400: #252e18;
  --hot: #d6ff00;
  --hot-deep: #9ab800;
  --berry: #ffffff;
  --berry-soft: #a0aec0;
  --cream: #0e110b;
  --mint: #d6ff00;
  --butter: #e2ff33;
  --sky: #88ff00;

  --font-title: 'KiwiSoda', 'CHAOS16', monospace;
  --font-body: '04B_03', '04B03', monospace;
  --font-pixel: '04B_03', '04B03', monospace;
  --font-display: '04B_03', '04B03', monospace;

  --radius: 26px;
  --shadow-candy: 0 8px 0 rgba(214, 255, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--berry);
  background-color: #070905;
  background-image: conic-gradient(#11160c 25%, transparent 0 50%, #11160c 0 75%, transparent 0);
  background-size: 56px 56px;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--hot);
  color: #000;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

/* ─── nav ─── */

.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: none;
  align-items: center;
  gap: 26px;
  padding: 10px 14px 10px 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 0;
  box-shadow: none;
  white-space: nowrap;
}

.nav__logo {
  font-family: var(--font-title);
  font-size: 3.45rem;
  color: var(--hot);
  text-decoration: none;
  letter-spacing: 1px;
  -webkit-text-stroke: 1.5px #9ab800;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
}

.nav__links {
  display: flex;
  gap: 24px;
}

.nav__links a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--berry-soft);
  text-decoration: none;
  transition: color .2s, transform .2s;
}

.nav__links a:hover {
  color: var(--hot);
  transform: translateY(-2px) rotate(-2deg);
}

/* ─── buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  padding: 18px 40px;
  border-radius: 999px;
  border: 4px solid #d6ff00;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s cubic-bezier(.34, 1.56, .64, 1), box-shadow .18s;
}

.btn--primary {
  background: var(--hot);
  color: #000;
  box-shadow: 0 8px 0 var(--hot-deep);
}

.btn--primary:hover {
  transform: translateY(-3px) rotate(-1.5deg);
  box-shadow: 0 12px 0 var(--hot-deep);
}

.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--hot-deep);
}

.btn--mint {
  background: var(--cream);
  color: var(--berry-soft);
  box-shadow: 0 8px 0 var(--pink-300);
  cursor: help;
}

.btn--mint:hover {
  transform: translateY(-3px) rotate(1.5deg);
  box-shadow: 0 12px 0 var(--pink-300);
}

.btn--small {
  font-size: 1.55rem;
  padding: 12px 28px;
}

.soon-tag {
  font-family: var(--font-pixel);
  font-size: .9rem;
  background: var(--butter);
  color: var(--berry);
  padding: 5px 12px 4px;
  border-radius: 10px;
  transform: rotate(4deg);
}

/* ─── profile button ─── */

.profile-btn {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 2.8rem;
  background: rgba(14, 17, 11, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 5px solid #d6ff00;
  border-radius: 50%;
  box-shadow: var(--shadow-candy);
  text-decoration: none;
  overflow: hidden;
  padding: 0;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s;
}

.profile-btn__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.profile-btn:hover {
  transform: translateY(-4px) rotate(-5deg);
  box-shadow: 0 14px 0 rgba(214, 255, 0, 0.3);
}

/* ─── hero ─── */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px 24px 90px;
}

.hero__inner {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: var(--hot);
  background: #0f130b;
  border: 3px solid var(--hot);
  padding: 10px 24px 8px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(214, 255, 0, 0.25);
}

.hero__title {
  font-family: var(--font-title);
  font-weight: normal;
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 1.05;
  letter-spacing: 3px;
  color: var(--hot);
  text-shadow:
    -4px 0 0 #000, 4px 0 0 #000, 0 -4px 0 #000, 0 4px 0 #000,
    -4px -4px 0 #000, 4px 4px 0 #000, -4px 4px 0 #000, 4px -4px 0 #000,
    0 0 35px rgba(214, 255, 0, 0.6),
    8px 12px 0 rgba(0, 0, 0, 0.9);
  animation: title-bob 5s ease-in-out infinite;
  white-space: nowrap;
  max-width: 100%;
}

@keyframes title-bob {

  0%,
  100% {
    transform: rotate(-1.2deg) translateY(0);
  }

  50% {
    transform: rotate(1.2deg) translateY(-8px);
  }
}

.hero__tagline {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--berry-soft);
  margin: 28px 0 38px;
}

.hero__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 18px;
  justify-content: center;
  list-style: none;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero__stats li {
  background: #0f130b;
  border: 3.5px solid var(--pink-200);
  border-radius: 24px;
  padding: 16px 28px;
  box-shadow: var(--shadow-candy);
  min-width: 140px;
}

.hero__stats li:nth-child(1) {
  transform: rotate(-2deg);
}

.hero__stats li:nth-child(2) {
  transform: rotate(1.5deg);
}

.hero__stats li:nth-child(3) {
  transform: rotate(-1deg);
}

.hero__stats b {
  display: block;
  font-family: var(--font-pixel);
  font-size: 2.3rem;
  color: var(--hot);
}

.hero__stats span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--berry-soft);
}

/* floating tibies */

.hero__floater {
  position: absolute;
  width: clamp(120px, 16vw, 220px);
  border-radius: 30px;
  border: 5px solid #d6ff00;
  box-shadow: 0 14px 34px rgba(214, 255, 0, 0.3);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero__floater--1 {
  top: 16%;
  left: 5%;
  transform: rotate(-8deg);
  animation-delay: 0s;
}

.hero__floater--2 {
  bottom: 12%;
  left: 10%;
  transform: rotate(6deg);
  animation-delay: -1.6s;
}

.hero__floater--3 {
  top: 14%;
  right: 6%;
  transform: rotate(7deg);
  animation-delay: -3.1s;
}

.hero__floater--4 {
  bottom: 14%;
  right: 9%;
  transform: rotate(-6deg);
  animation-delay: -4.5s;
}

@keyframes float {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

/* clouds */

.cloud {
  position: absolute;
  background: #ffffff;
  border-radius: 999px;
  opacity: 0.65;
  filter: blur(2px);
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
}

.cloud--1 {
  width: 220px;
  height: 60px;
  top: 12%;
  left: 0;
  animation: drift 36s linear infinite;
  animation-delay: 0s;
}

.cloud--2 {
  width: 160px;
  height: 46px;
  top: 68%;
  left: 0;
  animation: drift 48s linear infinite;
  animation-delay: -18s;
}

.cloud--3 {
  width: 200px;
  height: 54px;
  top: 40%;
  left: 0;
  animation: drift 42s linear infinite;
  animation-delay: -28s;
}

.cloud--1::before {
  width: 80px;
  height: 80px;
  top: -34px;
  left: 36px;
}

.cloud--1::after {
  width: 60px;
  height: 60px;
  top: -22px;
  right: 44px;
}

.cloud--2::before {
  width: 60px;
  height: 60px;
  top: -26px;
  left: 28px;
}

.cloud--2::after {
  width: 44px;
  height: 44px;
  top: -16px;
  right: 34px;
}

.cloud--3::before {
  width: 70px;
  height: 70px;
  top: -30px;
  left: 34px;
}

.cloud--3::after {
  width: 52px;
  height: 52px;
  top: -20px;
  right: 40px;
}

@keyframes drift {
  0% {
    transform: translateX(-320px);
  }

  100% {
    transform: translateX(calc(100vw + 320px));
  }
}

.arrow-char {
  display: inline-block;
  transform: translateY(4px);
}

/* pixel hearts (pure CSS, box-shadow pixel art) */

.pixel-heart {
  --px: 7px;
  position: absolute;
  width: var(--px);
  height: var(--px);
  background: transparent;
  z-index: 1;
  box-shadow:
    calc(var(--px)*1) 0 var(--hot), calc(var(--px)*2) 0 var(--hot),
    calc(var(--px)*4) 0 var(--hot), calc(var(--px)*5) 0 var(--hot),
    0 var(--px) var(--hot), calc(var(--px)*1) var(--px) var(--hot), calc(var(--px)*2) var(--px) var(--hot),
    calc(var(--px)*3) var(--px) var(--hot), calc(var(--px)*4) var(--px) var(--hot),
    calc(var(--px)*5) var(--px) var(--hot), calc(var(--px)*6) var(--px) var(--hot),
    0 calc(var(--px)*2) var(--hot), calc(var(--px)*1) calc(var(--px)*2) var(--hot),
    calc(var(--px)*2) calc(var(--px)*2) var(--hot), calc(var(--px)*3) calc(var(--px)*2) var(--hot),
    calc(var(--px)*4) calc(var(--px)*2) var(--hot), calc(var(--px)*5) calc(var(--px)*2) var(--hot),
    calc(var(--px)*6) calc(var(--px)*2) var(--hot),
    calc(var(--px)*1) calc(var(--px)*3) var(--hot), calc(var(--px)*2) calc(var(--px)*3) var(--hot),
    calc(var(--px)*3) calc(var(--px)*3) var(--hot), calc(var(--px)*4) calc(var(--px)*3) var(--hot),
    calc(var(--px)*5) calc(var(--px)*3) var(--hot),
    calc(var(--px)*2) calc(var(--px)*4) var(--hot), calc(var(--px)*3) calc(var(--px)*4) var(--hot),
    calc(var(--px)*4) calc(var(--px)*4) var(--hot),
    calc(var(--px)*3) calc(var(--px)*5) var(--hot);
  animation: heart-float 7s ease-in-out infinite;
  opacity: .8;
}

.pixel-heart--1 {
  top: 22%;
  left: 3%;
  scale: .8;
  animation-delay: 0s;
}

.pixel-heart--2 {
  top: 65%;
  right: 3%;
  scale: 1.1;
  animation-delay: -2.3s;
}

.pixel-heart--3 {
  top: 18%;
  right: 4%;
  scale: .7;
  animation-delay: -4.6s;
}

.pixel-heart--4 {
  top: 75%;
  left: 4%;
  scale: .9;
  animation-delay: -3.2s;
}

@keyframes heart-float {

  0%,
  100% {
    translate: 0 0;
    rotate: -6deg;
  }

  50% {
    translate: 0 -26px;
    rotate: 6deg;
  }
}

/* full-document background sparkles layer (scrolls with page, behind all cards) */
.bg-sparkles-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero,
.marquee,
.arena-section,
.profile-page,
.footer {
  position: relative;
  z-index: 2;
}

.pixel-sparkle {
  --px: 5px;
  position: absolute;
  width: var(--px);
  height: var(--px);
  background: #ffffff;
  z-index: 0;
  pointer-events: none;
  box-shadow:
    0 calc(var(--px) * -2) #ffffff,
    0 calc(var(--px) * -1) #ffffff,
    0 calc(var(--px) * 1) #ffffff,
    0 calc(var(--px) * 2) #ffffff,
    calc(var(--px) * -2) 0 #ffffff,
    calc(var(--px) * -1) 0 #ffffff,
    calc(var(--px) * 1) 0 #ffffff,
    calc(var(--px) * 2) 0 #ffffff;
  animation: sparkle-float 6s ease-in-out infinite;
  opacity: .85;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.95));
}

/* Perfectly distributed background sparkles across full viewport & document area */
.pixel-sparkle--1  { top: 2%;  left: 3%;   scale: 1.15; animation-delay: 0s; }
.pixel-sparkle--2  { top: 5%;  left: 26%;  scale: 0.9;  animation-delay: -2.3s; }
.pixel-sparkle--3  { top: 3%;  left: 50%;  scale: 1.25; animation-delay: -4.1s; }
.pixel-sparkle--4  { top: 8%;  left: 74%;  scale: 0.85; animation-delay: -1.5s; }
.pixel-sparkle--5  { top: 2%;  left: 96%;  scale: 1.1;  animation-delay: -3.8s; }

.pixel-sparkle--6  { top: 14%; left: 8%;   scale: 0.95; animation-delay: -0.7s; }
.pixel-sparkle--7  { top: 19%; left: 33%;  scale: 1.2;  animation-delay: -5.2s; }
.pixel-sparkle--8  { top: 13%; left: 60%;  scale: 1.05; animation-delay: -2.8s; }
.pixel-sparkle--9  { top: 18%; left: 85%;  scale: 1.3;  animation-delay: -4.5s; }
.pixel-sparkle--10 { top: 22%; left: 97%;  scale: 0.85; animation-delay: -1.1s; }

.pixel-sparkle--11 { top: 26%; left: 2%;   scale: 1.1;  animation-delay: -1.8s; }
.pixel-sparkle--12 { top: 32%; left: 20%;  scale: 1.35; animation-delay: -3.4s; }
.pixel-sparkle--13 { top: 28%; left: 44%;  scale: 0.9;  animation-delay: -0.9s; }
.pixel-sparkle--14 { top: 34%; left: 68%;  scale: 1.15; animation-delay: -4.6s; }
.pixel-sparkle--15 { top: 27%; left: 91%;  scale: 1.0;  animation-delay: -2.1s; }

.pixel-sparkle--16 { top: 39%; left: 11%;  scale: 1.2;  animation-delay: -3.9s; }
.pixel-sparkle--17 { top: 44%; left: 30%;  scale: 0.85; animation-delay: -1.2s; }
.pixel-sparkle--18 { top: 38%; left: 56%;  scale: 1.3;  animation-delay: -4.8s; }
.pixel-sparkle--19 { top: 46%; left: 80%;  scale: 1.1;  animation-delay: -2.5s; }
.pixel-sparkle--20 { top: 40%; left: 98%;  scale: 0.95; animation-delay: -0.8s; }

.pixel-sparkle--21 { top: 51%; left: 4%;   scale: 1.05; animation-delay: -2.7s; }
.pixel-sparkle--22 { top: 57%; left: 23%;  scale: 1.25; animation-delay: -3.1s; }
.pixel-sparkle--23 { top: 52%; left: 48%;  scale: 0.9;  animation-delay: -4.4s; }
.pixel-sparkle--24 { top: 59%; left: 71%;  scale: 1.2;  animation-delay: -1.4s; }
.pixel-sparkle--25 { top: 53%; left: 93%;  scale: 1.15; animation-delay: -5.0s; }

.pixel-sparkle--26 { top: 64%; left: 14%;  scale: 1.3;  animation-delay: -4.8s; }
.pixel-sparkle--27 { top: 70%; left: 37%;  scale: 0.85; animation-delay: -3.6s; }
.pixel-sparkle--28 { top: 65%; left: 62%;  scale: 1.1;  animation-delay: -2.2s; }
.pixel-sparkle--29 { top: 72%; left: 86%;  scale: 1.25; animation-delay: -0.5s; }
.pixel-sparkle--30 { top: 66%; left: 99%;  scale: 0.9;  animation-delay: -3.3s; }

.pixel-sparkle--31 { top: 77%; left: 2%;   scale: 1.15; animation-delay: -5.4s; }
.pixel-sparkle--32 { top: 83%; left: 27%;  scale: 0.95; animation-delay: -0.2s; }
.pixel-sparkle--33 { top: 78%; left: 52%;  scale: 1.35; animation-delay: -2.9s; }
.pixel-sparkle--34 { top: 85%; left: 76%;  scale: 1.0;  animation-delay: -4.3s; }
.pixel-sparkle--35 { top: 79%; left: 94%;  scale: 1.2;  animation-delay: -1.7s; }

.pixel-sparkle--36 { top: 90%; left: 9%;   scale: 1.05; animation-delay: -3.7s; }
.pixel-sparkle--37 { top: 96%; left: 34%;  scale: 1.25; animation-delay: -1.9s; }
.pixel-sparkle--38 { top: 91%; left: 58%;  scale: 0.85; animation-delay: -5.1s; }
.pixel-sparkle--39 { top: 97%; left: 82%;  scale: 1.15; animation-delay: -2.6s; }
.pixel-sparkle--40 { top: 93%; left: 97%;  scale: 1.0;  animation-delay: -0.4s; }

@keyframes sparkle-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-22px) rotate(15deg) scale(1.25);
    opacity: 1;
  }
}

.hero__fade {
  position: absolute;
  bottom: -30px;
  left: -10%;
  width: 120%;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255, 245, 250, 0) 0%, var(--pink-100) 100%);
  transform: rotate(-1deg);
  transform-origin: center center;
  z-index: 3;
  pointer-events: none;
}

/* ─── marquee ─── */

.marquee {
  background: var(--hot);
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  overflow: hidden;
  padding: 14px 0 10px;
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 8px 24px rgba(214, 255, 0, 0.3);
  position: relative;
  z-index: 6;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee__track span {
  font-family: var(--font-body);
  font-size: 1.8rem;
  color: #000;
  white-space: nowrap;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── doors ─── */

.doors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 42px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.door-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ffffff;
  border: none;
  border-radius: 80px 80px 20px 20px;
  padding: 28px 16px;
  min-height: 280px;
  box-shadow: 0 10px 24px rgba(214, 255, 0, 0.3);
  text-decoration: none;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
  position: relative;
}

.door-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.door-card__icon {
  font-family: var(--font-body);
  font-size: 4.2rem;
  color: var(--hot);
  line-height: 1;
  margin-top: auto;
  margin-bottom: auto;
}

.door-card__label {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--hot);
  text-align: center;
}

.door-card__status {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 5px 16px;
  border-radius: 999px;
  border: 2px solid var(--pink-200);
  color: var(--berry-soft);
  background: var(--pink-50);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Open door: pure white glowing aura & pulse animation */
.door-card.is-open {
  background: #ffffff;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.95), 0 0 70px rgba(255, 255, 255, 0.7), 0 12px 28px rgba(214, 255, 0, 0.3);
  animation: door-white-glow 3s ease-in-out infinite alternate;
}

.door-card.is-open:hover {
  box-shadow: 0 0 50px rgba(255, 255, 255, 1), 0 0 95px rgba(255, 255, 255, 0.85), 0 16px 32px rgba(214, 255, 0, 0.3);
}

@keyframes door-white-glow {
  0% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.85), 0 0 55px rgba(255, 255, 255, 0.6), 0 10px 24px rgba(214, 255, 0, 0.3);
  }

  100% {
    box-shadow: 0 0 45px rgba(255, 255, 255, 1), 0 0 85px rgba(255, 255, 255, 0.8), 0 14px 30px rgba(214, 255, 0, 0.3);
  }
}

.door-card.is-open .door-card__status {
  background: var(--mint);
  border-color: #6dd4a8;
  color: #1b7a4b;
  font-weight: bold;
}

.door-card.is-locked {
  filter: grayscale(0.2);
  opacity: 0.75;
  border: none;
  background: #f8eef4;
}

.door-card.is-locked:hover {
  transform: translateY(-4px);
  filter: grayscale(0);
  opacity: 0.9;
}

.door-card.is-locked .door-card__status {
  background: var(--pink-100);
  color: var(--berry-soft);
}

@media (max-width: 700px) {
  .doors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ─── sections ─── */

.section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 110px 28px;
}

.section__title {
  font-family: var(--font-pixel);
  font-weight: normal;
  font-size: clamp(3.0rem, 7vw, 4.5rem);
  color: var(--berry);
  margin-bottom: 28px;
  text-shadow: 4px 4px 0 var(--pink-200);
}

.section__title--center {
  text-align: center;
}

.section__sub {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--berry-soft);
  margin-bottom: 54px;
}

/* ─── about ─── */

.about {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}

.about__text p {
  margin-bottom: 22px;
  font-size: 1.65rem;
  line-height: 1.6;
}

.about__text em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--hot);
}

.dream-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--cream);
  border: 4px solid #d6ff00;
  outline: 3px dashed var(--pink-300);
  outline-offset: -12px;
  border-radius: var(--radius);
  padding: 30px 30px 30px 26px;
  margin-top: 36px;
  box-shadow: var(--shadow-candy);
  transform: rotate(-.8deg);
}

.dream-card__icon {
  font-size: 2.8rem;
  line-height: 1;
  background: var(--sky);
  border-radius: 18px;
  padding: 12px 16px;
  transform: rotate(-6deg);
}

.dream-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--hot);
  margin-bottom: 8px;
}

.dream-card p {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.5;
}

.about__collage {
  position: relative;
  min-height: 460px;
}

.about__img {
  position: absolute;
  width: 62%;
  border-radius: 30px;
  border: 6px solid #d6ff00;
  box-shadow: 0 16px 36px rgba(214, 255, 0, 0.3);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.about__img--1 {
  top: 0;
  left: 0;
  transform: rotate(-7deg);
  z-index: 1;
}

.about__img--2 {
  top: 26%;
  right: 0;
  transform: rotate(5deg);
  z-index: 2;
}

.about__img--3 {
  bottom: 0;
  left: 8%;
  transform: rotate(-3deg);
  z-index: 3;
}

.about__img:hover {
  transform: rotate(0deg) scale(1.06);
  z-index: 5;
}

.about__spark {
  position: absolute;
  font-size: 1.6rem;
  color: var(--hot);
  animation: spark-pop 3s ease-in-out infinite;
}

.about__spark--1 {
  top: -4%;
  right: 18%;
  animation-delay: 0s;
}

.about__spark--2 {
  bottom: 8%;
  right: -2%;
  animation-delay: -1s;
  color: var(--hot);
}

.about__spark--3 {
  top: 48%;
  left: -6%;
  animation-delay: -2s;
}

@keyframes spark-pop {

  0%,
  100% {
    transform: scale(.7) rotate(-10deg);
    opacity: .5;
  }

  50% {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
  }
}

/* ─── pixel divider ─── */

.pixel-divider {
  height: 18px;
  background-image: conic-gradient(var(--pink-300) 25%, transparent 0 50%, var(--pink-300) 0 75%, transparent 0);
  background-size: 18px 18px;
  opacity: .55;
}

/* ─── gallery carousel ─── */

.carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.carousel+.carousel {
  margin-top: 8px;
}

.carousel__track {
  display: flex;
  width: max-content;
}

.carousel__track.is-ready {
  animation: carousel-left 44s linear infinite;
}

.carousel--right .carousel__track.is-ready {
  animation: carousel-right 50s linear infinite;
}

.carousel:hover .carousel__track,
.carousel:focus-within .carousel__track {
  animation-play-state: paused;
}

@keyframes carousel-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes carousel-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.card {
  flex: 0 0 auto;
  width: 250px;
  margin-right: 30px;
  background: var(--cream);
  border: 4px solid #d6ff00;
  border-radius: var(--radius);
  padding: 14px 14px 18px;
  box-shadow: var(--shadow-candy);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
  position: relative;
}

.card:nth-child(odd) {
  transform: rotate(-1.3deg);
}

.card:nth-child(even) {
  transform: rotate(1.3deg);
}

.card:nth-child(3n) {
  transform: rotate(-.6deg);
}

.card:hover,
.card:focus-visible {
  transform: rotate(0deg) translateY(-10px) scale(1.04);
  box-shadow: 0 16px 0 rgba(214, 255, 0, 0.3);
  z-index: 4;
  outline: none;
}

.card:focus-visible {
  border-color: var(--hot);
}

.card img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.card figcaption {
  padding: 14px 6px 0;
  text-align: center;
}

.card figcaption b {
  display: block;
  font-family: var(--font-pixel);
  font-weight: normal;
  font-size: 1.6rem;
  color: var(--hot);
  margin-bottom: 4px;
}

.card figcaption span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--berry-soft);
  opacity: .9;
}

.card.wiggle {
  animation: wiggle .5s ease-in-out;
}

@keyframes wiggle {

  0%,
  100% {
    rotate: 0deg;
  }

  25% {
    rotate: -4deg;
    scale: 1.05;
  }

  75% {
    rotate: 4deg;
    scale: 1.05;
  }
}

/* burst hearts on click */

.burst {
  position: absolute;
  font-size: 1.2rem;
  pointer-events: none;
  animation: burst-up 1s ease-out forwards;
  z-index: 20;
}

@keyframes burst-up {
  0% {
    transform: translate(0, 0) scale(.6) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translate(var(--dx, 0), -90px) scale(1.25) rotate(var(--dr, 20deg));
    opacity: 0;
  }
}

/* ─── soon ─── */

.soon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.soon-card {
  background: var(--cream);
  border: 4px solid #d6ff00;
  border-radius: var(--radius);
  padding: 38px 30px 34px;
  box-shadow: var(--shadow-candy);
  position: relative;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

.soon-card:nth-child(1) {
  transform: rotate(-1.2deg);
}

.soon-card:nth-child(2) {
  transform: rotate(.9deg);
}

.soon-card:nth-child(3) {
  transform: rotate(-.7deg);
}

.soon-card:hover {
  transform: rotate(0) translateY(-8px);
}

.soon-card__tag {
  position: absolute;
  top: -16px;
  right: 22px;
  font-family: var(--font-pixel);
  font-size: 1.35rem;
  background: var(--butter);
  border: 3.5px solid #fff;
  color: var(--berry);
  padding: 8px 16px 6px;
  border-radius: 12px;
  transform: rotate(3deg);
  box-shadow: 0 4px 0 rgba(214, 255, 0, 0.3);
}

.soon-card:nth-child(2) .soon-card__tag {
  background: var(--mint);
}

.soon-card:nth-child(3) .soon-card__tag {
  background: var(--sky);
}

.soon-card h3 {
  font-family: var(--font-pixel);
  font-weight: normal;
  font-size: 1.85rem;
  color: var(--hot);
  margin-bottom: 14px;
}

.soon-card p {
  font-size: 1.45rem;
  line-height: 1.5;
}

/* ─── footer ─── */

.footer {
  text-align: center;
  padding: 50px 24px 40px;
  background: linear-gradient(var(--pink-100), var(--pink-200));
  position: relative;
  overflow: hidden;
  border-top: 4px solid #ffffff;
}

.footer .pixel-heart,
.footer .pixel-sparkle {
  z-index: 1;
}

.footer__inner {
  position: relative;
  z-index: 2;
}

.footer-heart--1  { top: 18%; left: 5%;  scale: .9;  animation-delay: 0s; }
.footer-heart--2  { top: 58%; left: 14%; scale: 1.2; animation-delay: -1.5s; }
.footer-heart--3  { top: 28%; left: 26%; scale: .7;  animation-delay: -3s; }
.footer-heart--4  { top: 72%; left: 35%; scale: 1.0; animation-delay: -4.5s; }
.footer-heart--5  { top: 16%; left: 48%; scale: .85; animation-delay: -2s; }
.footer-heart--6  { top: 68%; right: 38%; scale: 1.15; animation-delay: -5s; }
.footer-heart--7  { top: 24%; right: 25%; scale: .9;  animation-delay: -1s; }
.footer-heart--8  { top: 74%; right: 16%; scale: 1.3; animation-delay: -3.5s; }
.footer-heart--9  { top: 20%; right: 7%;  scale: .8;  animation-delay: -2.5s; }
.footer-heart--10 { top: 64%; right: 3%;  scale: 1.0; animation-delay: -4s; }

.footer-sparkle--1  { top: 18%; left: 2%;   scale: 1.2;  animation-delay: -0.5s; }
.footer-sparkle--2  { top: 72%; left: 6%;   scale: 0.9;  animation-delay: -2.8s; }
.footer-sparkle--3  { top: 30%; left: 14%;  scale: 1.35; animation-delay: -1.2s; }
.footer-sparkle--4  { top: 82%; left: 22%;  scale: 1.1;  animation-delay: -4.1s; }
.footer-sparkle--5  { top: 22%; left: 32%;  scale: 0.95; animation-delay: -2.3s; }
.footer-sparkle--6  { top: 68%; left: 42%;  scale: 1.25; animation-delay: -0.8s; }
.footer-sparkle--7  { top: 15%; left: 52%;  scale: 1.0;  animation-delay: -3.6s; }
.footer-sparkle--8  { top: 78%; right: 38%; scale: 1.15; animation-delay: -1.9s; }
.footer-sparkle--9  { top: 25%; right: 28%; scale: 0.9;  animation-delay: -4.7s; }
.footer-sparkle--10 { top: 84%; right: 18%; scale: 1.3;  animation-delay: -2.1s; }
.footer-sparkle--11 { top: 32%; right: 10%; scale: 1.05; animation-delay: -3.3s; }
.footer-sparkle--12 { top: 70%; right: 5%;  scale: 1.2;  animation-delay: -0.4s; }
.footer-sparkle--13 { top: 16%; right: 2%;  scale: 0.85; animation-delay: -5.0s; }
.footer-sparkle--14 { top: 48%; left: 48%;  scale: 1.1;  animation-delay: -1.6s; }

.footer__logo {
  font-family: var(--font-pixel);
  font-size: 5.7rem;
  color: var(--hot);
  text-shadow:
    -4px 0 0 #fff, 4px 0 0 #fff, 0 -4px 0 #fff, 0 4px 0 #fff,
    -4px -4px 0 #fff, 4px 4px 0 #fff, -4px 4px 0 #fff, 4px -4px 0 #fff;
  margin-bottom: 12px;
}

.footer__love {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--berry-soft);
  margin-bottom: 30px;
}

.footer__socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.pill {
  font-family: var(--font-pixel);
  font-size: 1.4rem;
  color: var(--berry);
  background: var(--cream);
  border: 3.5px solid #fff;
  padding: 14px 28px 12px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(214, 255, 0, 0.3);
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), background .2s, color .2s;
}

.pill:hover {
  background: var(--hot);
  color: #000;
  transform: translateY(-3px) rotate(-2deg);
}

.footer__tiny {
  font-size: 1.35rem;
  color: var(--berry-soft);
  opacity: .85;
}

/* ─── reveal on scroll ─── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.34, 1.56, .64, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── cursor sparkles ─── */

.sparkle {
  position: fixed;
  pointer-events: none;
  font-size: .9rem;
  color: var(--hot);
  z-index: 99;
  animation: sparkle-fade .8s ease-out forwards;
}

@keyframes sparkle-fade {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: .9;
  }

  100% {
    transform: translate(-50%, -50%) scale(.2) rotate(60deg) translateY(18px);
    opacity: 0;
  }
}

/* ─── responsive ─── */

@media (max-width: 960px) {
  .about {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about__collage {
    min-height: 400px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .card {
    width: 200px;
    margin-right: 22px;
  }

  .soon__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .hero__floater--2,
  .hero__floater--3 {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 14px;
    padding: 8px 10px 8px 16px;
  }

  .nav__links {
    display: none;
  }

  .card {
    width: 164px;
    margin-right: 16px;
    padding: 8px 8px 12px;
  }

  .card figcaption b {
    font-size: .9rem;
  }

  .card figcaption span {
    font-size: .72rem;
  }

  .section {
    padding: 80px 20px;
  }

  .hero__floater {
    width: 110px;
    opacity: .9;
  }

  .hero__floater--1 {
    top: 9%;
    left: -6%;
  }

  .hero__floater--4 {
    bottom: 6%;
    right: -6%;
  }

  .hero__stats li {
    min-width: 92px;
    padding: 10px 14px;
  }
}

/* ─── reduced motion ─── */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ─── Profile Page & EVM Wallet Styles ─── */

.hidden {
  display: none !important;
}

.nav--static {
  display: flex !important;
  position: relative;
  top: 0;
  transform: none;
  left: 0;
  margin: 20px auto 40px;
  width: max-content;
  max-width: 90vw;
}

.wallet-pill {
  font-family: var(--font-pixel);
  font-size: 1.5rem;
  padding: 4px 12px;
  background: transparent;
  color: var(--berry-soft);
  border: none;
  box-shadow: none;
  transition: all .3s ease;
}

.wallet-pill.is-connected {
  background: transparent;
  color: #1b7a4b;
  border: none;
}

.profile-page {
  position: relative;
  min-height: 80vh;
  padding: 20px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.profile-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.profile-header {
  text-align: center;
}

.profile-header__title {
  font-family: var(--font-pixel);
  font-size: clamp(4.8rem, 12vw, 7.2rem);
  color: var(--hot);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow:
    -5px 0 0 #fff, 5px 0 0 #fff, 0 -5px 0 #fff, 0 5px 0 #fff,
    -5px -5px 0 #fff, 5px 5px 0 #fff, -5px 5px 0 #fff, 5px -5px 0 #fff,
    8px 10px 0 rgba(214, 255, 0, 0.3);
}

.profile-header__sub {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--berry-soft);
}

/* Wallet Card */
.wallet-card {
  background: rgba(14, 17, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 4px solid #d6ff00;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(214, 255, 0, 0.3);
  overflow: hidden;
  padding: 28px 36px;
}

.wallet-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 2px dashed var(--pink-200);
  margin-bottom: 28px;
}

.wallet-status {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
}

.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--hot-deep);
  box-shadow: 0 0 0 4px rgba(214, 255, 0, 0.3);
  transition: background .3s, box-shadow .3s;
}

.status-dot.is-connected {
  background: #20c997;
  box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.25);
}

.network-badge {
  font-family: var(--font-pixel);
  font-size: 1.55rem;
  background: var(--butter);
  color: var(--berry);
  padding: 6px 18px;
  border-radius: 14px;
  border: 2.5px solid #fff;
}

/* Wallet Views */
.wallet-view--disconnected {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
}

.wallet-icon-big {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.wallet-view--disconnected h2 {
  font-family: var(--font-pixel);
  font-size: 2.9rem;
  color: var(--hot);
  margin-bottom: 14px;
}

.wallet-view--disconnected p {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--berry-soft);
  max-width: 620px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.btn--large {
  font-size: 2.1rem;
  padding: 22px 54px;
}

.wallet-error {
  margin-top: 20px !important;
  color: #e03131 !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}

/* Wallet Connected Layout */
.wallet-details-single {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.wallet-details-single .detail-box {
  flex: 1;
  min-width: 280px;
}

.detail-box {
  background: var(--pink-50);
  border: 3px solid var(--pink-200);
  border-radius: 20px;
  padding: 22px 28px;
}

.detail-box__label {
  display: block;
  font-family: var(--font-pixel);
  font-size: 1.45rem;
  color: var(--berry-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

.address-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.address-text {
  font-family: var(--font-pixel);
  font-size: 2.1rem;
  color: var(--berry);
}

.btn-icon {
  background: #0f130b;
  border: 3px solid var(--pink-300);
  border-radius: 14px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 1.75rem;
  transition: transform .15s, background .15s;
}

.btn-icon:hover {
  transform: scale(1.1);
  background: var(--pink-100);
}

/* Vault / Inventory Section */
.vault-section {
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(8px);
  border: 4px solid #d6ff00;
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-candy);
}

.vault-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.vault-header h2 {
  font-family: var(--font-pixel);
  font-size: 2.9rem;
  color: var(--hot);
}

.vault-count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--berry-soft);
  background: var(--pink-100);
  padding: 8px 24px;
  border-radius: 999px;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  min-height: 180px;
}

.vault-card {
  width: 100% !important;
  margin-right: 0 !important;
}

.vault-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--berry-soft);
}

.vault-empty__icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
  opacity: .8;
}

.vault-empty h3 {
  font-family: var(--font-pixel);
  font-size: 1.3rem;
  color: var(--berry);
  margin-bottom: 6px;
}

.vault-empty p {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--berry);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  padding: 16px 32px;
  border-radius: 20px;
  border: 3px solid var(--pink-200);
  box-shadow: 0 12px 36px rgba(214, 255, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Fullscreen Whitelist Notice Modal */
.notice-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36, 12, 24, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.notice-modal-backdrop:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.notice-modal-card {
  background: #0f130b;
  border: 5px solid var(--pink-200);
  border-radius: 36px;
  padding: 48px 56px;
  max-width: 640px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 70px rgba(214, 255, 0, 0.3), 0 0 0 12px rgba(214, 255, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.notice-modal-backdrop:not(.hidden) .notice-modal-card {
  transform: scale(1);
}

.notice-modal-badge {
  font-family: var(--font-pixel);
  font-size: 1.05rem;
  background: var(--pink-100);
  color: var(--berry);
  padding: 6px 22px;
  border-radius: 999px;
  border: 2px solid var(--pink-200);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.notice-modal-title {
  font-family: var(--font-pixel);
  font-size: 3.6rem;
  color: var(--hot);
  margin: 0;
  line-height: 1.05;
  text-shadow: 3px 3px 0 rgba(214, 255, 0, 0.3);
}

.notice-modal-text {
  font-family: var(--font-body);
  font-size: 1.75rem;
  color: var(--berry-soft);
  margin: 0;
  line-height: 1.4;
}

.notice-modal-text strong {
  color: var(--hot);
  font-weight: 800;
}

.notice-modal-btn {
  margin-top: 12px;
  width: 100%;
  font-size: 1.6rem;
  padding: 16px 36px;
}

/* ─── 4 Horizontal WL Tier Panels ─── */
.wl-panels-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wl-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid #d6ff00;
  border-radius: 24px;
  padding: 20px 26px;
  box-shadow: 0 8px 24px rgba(214, 255, 0, 0.3);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.wl-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(214, 255, 0, 0.3);
}

/* Gem Container */
.wl-panel__gem {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 240, 246, 0.5));
  border: 2px solid var(--pink-200);
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.8);
}

.wl-panel__gem-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
  transition: transform .3s ease;
}

.wl-panel:hover .wl-panel__gem-img {
  transform: scale(1.1) rotate(4deg);
}

.wl-panel__gem-tag {
  position: absolute;
  bottom: -8px;
  font-family: var(--font-pixel);
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: 999px;
  color: #000;
  background: var(--berry);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* Info Side */
.wl-panel__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wl-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wl-panel__title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wl-panel.is-locked {
  filter: grayscale(1);
  opacity: 0.72;
  background: rgba(248, 250, 252, 0.85);
  border-color: #cbd5e1 !important;
  box-shadow: none !important;
}

.wl-panel.is-unlocked {
  filter: none;
  opacity: 1;
}

.wl-panel__title {
  font-family: var(--font-pixel);
  font-size: 3.2rem;
  color: var(--hot);
  margin: 0;
}

.wl-panel__gem-tag {
  position: absolute;
  bottom: -12px;
  font-family: var(--font-pixel);
  font-size: 1.4rem;
  padding: 4px 18px;
  border-radius: 999px;
  color: #000;
  background: var(--berry);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.wl-panel__gem--empty {
  background: rgba(241, 245, 249, 0.6) !important;
  border: 3px dashed #cbd5e1 !important;
  box-shadow: none !important;
}

.wl-gem-socket {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0.45;
}

.wl-gem-socket__icon {
  font-size: 3.2rem;
  filter: grayscale(1);
}

.wl-gem-socket__label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
}

.wl-panel__specs {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.wl-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wl-spec-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--berry-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wl-spec-value {
  font-family: var(--font-pixel);
  font-size: 1.85rem;
  color: var(--berry);
}

.wl-perks-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.wl-perk-pill {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--berry);
  background: var(--pink-100);
  padding: 3px 12px;
  border-radius: 12px;
  border: 1px solid var(--pink-200);
}

/* Tier Specific Color Themes */
/* Tier 0 — Yellow Vibe */
.wl-panel--tier0 {
  border-color: #fef08a;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(254, 240, 138, 0.35));
}

.wl-panel--tier0 .wl-panel__gem {
  background: linear-gradient(135deg, #fffbeb, #fef08a);
  border-color: #facc15;
}

.wl-panel--tier0 .wl-panel__title {
  color: #b45309;
}

/* Tier 1 — Pink Vibe */
.wl-panel--tier1 {
  border-color: #fbcfe8;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 207, 232, 0.35));
}

.wl-panel--tier1 .wl-panel__gem {
  background: linear-gradient(135deg, #fff0f6, #fce7f3);
  border-color: #f472b6;
}

.wl-panel--tier1 .wl-panel__title {
  color: #be185d;
}

/* Tier 2 — Green Vibe */
.wl-panel--tier2 {
  border-color: #bbf7d0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(187, 247, 208, 0.35));
}

.wl-panel--tier2 .wl-panel__gem {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: #4ade80;
}

.wl-panel--tier2 .wl-panel__title {
  color: #15803d;
}

/* Tier 3 — Blue Vibe */
.wl-panel--tier3 {
  border-color: #bfdbfe;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(191, 219, 254, 0.35));
}

.wl-panel--tier3 .wl-panel__gem {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: #60a5fa;
}

.wl-panel--tier3 .wl-panel__title {
  color: #1d4ed8;
}

/* Mobile Responsiveness for Profile & WL Panels */
@media (max-width: 640px) {
  .profile-page {
    padding: 16px 12px 60px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .profile-header__title {
    font-size: clamp(2.4rem, 8.5vw, 4.2rem);
    text-shadow:
      -3px 0 0 #fff, 3px 0 0 #fff, 0 -3px 0 #fff, 0 3px 0 #fff,
      4px 6px 0 rgba(214, 255, 0, 0.3);
  }

  .profile-header__sub {
    font-size: 1.3rem;
  }

  .wallet-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .wallet-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }

  .wallet-status {
    font-size: 1.4rem;
  }

  .network-badge {
    font-size: 1.2rem;
    padding: 4px 12px;
  }

  .detail-box {
    padding: 16px 18px;
    min-width: 0;
    width: 100%;
  }

  .detail-box__label {
    font-size: 1.15rem;
  }

  .address-text {
    font-size: 1.4rem;
    word-break: break-all;
  }

  .vault-section {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .vault-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .vault-header h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .vault-count {
    font-size: 1.2rem;
    padding: 4px 16px;
  }

  .wl-panel {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 18px 14px;
    border-radius: 20px;
    width: 100%;
  }

  .wl-panel__header {
    flex-direction: column;
    justify-content: center;
  }

  .wl-panel__title {
    font-size: 2.5rem;
  }

  .wl-panel__specs {
    justify-content: center;
    gap: 24px;
  }

  .wl-perks-row {
    justify-content: center;
  }

  /* Main Home Page Mobile Responsiveness */
  .hero {
    padding: 80px 16px 40px;
    overflow: hidden;
    max-width: 100vw;
    width: 100%;
  }

  .hero__inner {
    width: 100%;
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(3.2rem, 16vw, 6.5rem);
    text-shadow:
      -4px 0 0 #fff, 4px 0 0 #fff, 0 -4px 0 #fff, 0 4px 0 #fff,
      6px 8px 0 rgba(214, 255, 0, 0.3);
  }

  .hero__badge {
    font-size: 1.1rem;
    padding: 8px 18px 6px;
    margin-bottom: 16px;
  }

  .hero__tagline {
    font-size: 1.3rem;
    margin: 18px 0 26px;
  }

  .hero__floater {
    display: none !important;
  }

  .hero__stats {
    gap: 10px;
    margin-top: 32px;
    width: 100%;
  }

  .hero__stats li {
    min-width: 90px;
    flex: 1;
    padding: 10px 8px;
    border-radius: 18px;
  }

  .hero__stats b {
    font-size: 1.8rem;
  }

  .hero__stats span {
    font-size: 1.1rem;
  }

  .marquee {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .doors {
    padding: 50px 16px;
  }

  .doors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .footer {
    padding: 36px 16px 30px;
  }

  .footer__logo {
    font-size: clamp(3.2rem, 14vw, 5.7rem);
    margin-bottom: 8px;
  }

  .footer__love {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .footer__socials {
    margin-bottom: 24px;
  }

  .footer__tiny {
    font-size: 1.1rem;
  }
}

/* ─── snake game page ─── */

/* ─── snake game page ─── */

.snake-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--pink-100) 0%, var(--cream) 30%);
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.snake-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.snake-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  color: var(--hot);
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  text-shadow: 4px 4px 0 rgba(214, 255, 0, 0.3);
}

/* side-by-side layout: wide 572px field + longer 400px leaderboard, exact matching 572px heights */
.snake-layout {
  display: grid;
  grid-template-columns: 572px 400px;
  justify-content: center;
  gap: 32px;
  align-items: start;
}

.snake-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.snake-right {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* integrated scores inside leaderboard top header */
.snake-lb-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.snake-scores {
  display: flex;
  gap: 12px;
  width: 100%;
}

.snake-score-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--pink-50);
  border: 3px solid var(--pink-200);
  border-radius: 14px;
  padding: 8px 18px;
  flex: 1;
}

.snake-score-label {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--berry-soft);
  text-transform: lowercase;
  font-weight: bold;
}

.snake-score-value {
  font-family: 'CHAOS16', var(--font-title);
  font-size: 2.8rem;
  color: var(--hot);
  font-weight: bold;
  line-height: 1;
}

/* wide game canvas window - exact 572px height & width */
.snake-canvas-wrap {
  position: relative;
  width: 572px;
  height: 572px;
  border: 6px solid var(--hot);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 0 rgba(214, 255, 0, 0.3), 0 0 45px rgba(214, 255, 0, 0.3);
  background: var(--cream);
}

.snake-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.snake-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 248, 0.88);
  z-index: 2;
}

.snake-overlay__content {
  text-align: center;
}

.snake-overlay__title {
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--hot);
  margin-bottom: 10px;
}

.snake-overlay__sub {
  font-family: var(--font-body);
  font-size: 1.7rem;
  color: var(--berry-soft);
}

.snake-hint {
  font-family: var(--font-body);
  font-size: 1.3rem;
  text-align: center;
  color: var(--berry-soft);
  margin-top: 14px;
  opacity: 0.9;
}

/* sleek longer leaderboard window - exact 572px height matching enlarged canvas window */

.snake-leaderboard {
  background: #0f130b;
  border: 5px solid var(--pink-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-candy);
  width: 400px;
  min-height: 572px;
  height: 605px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.snake-lb-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
  color: var(--hot);
  text-align: center;
}

.snake-lb-table-wrap {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
}

.snake-lb-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 1.15rem;
}

.snake-lb-table th {
  text-align: left;
  padding: 4px 8px;
  border-bottom: 2px solid var(--pink-200);
  color: var(--hot);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  -webkit-text-stroke: 0.5px var(--berry);
}

.snake-lb-table td {
  padding: 2px 8px;
  border-bottom: 1px solid var(--pink-100);
  color: var(--berry);
  line-height: 1.25;
}

.snake-lb-table tr.is-you td {
  background: var(--pink-50);
  color: var(--hot);
  font-weight: bold;
}

.lb-you-tag {
  display: inline-block;
  font-size: 0.8rem;
  background: var(--hot);
  color: #000;
  padding: 0px 6px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.snake-lb-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.snake-lb-page {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--berry-soft);
}

.snake-lb-btn {
  font-family: var(--font-body);
  font-size: 1.3rem;
  padding: 8px 22px;
  border: 3px solid var(--pink-200);
  background: var(--pink-50);
  color: var(--berry-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}

.snake-lb-btn:hover:not(:disabled) {
  background: var(--hot);
  color: #000;
  border-color: var(--hot);
}

.snake-lb-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 820px) {
  .snake-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .snake-canvas-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
}


@media (max-width: 480px) {
  .snake-canvas-wrap {
    border-width: 4px;
    border-radius: 14px;
  }

  .snake-scores {
    gap: 10px;
  }

  .snake-score-box {
    padding: 6px 12px;
  }
}

/* Gem Runningline Marquee Divider (Seamless Infinite, Dense, Tilted) */
.gem-marquee-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 10px;
  margin-bottom: -25px;
  overflow: hidden;
  padding: 42px 0;
}

.gem-marquee {
  width: 140vw;
  position: relative;
  left: -20vw;
  background: linear-gradient(135deg, var(--hot) 0%, var(--hot-deep) 100%);
  padding: 14px 0;
  box-shadow: 0 12px 36px rgba(214, 255, 0, 0.3);
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: rotate(1.5deg);
  z-index: 10;
}

.gem-marquee__group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.gem-marquee__item {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.gem-marquee__item:hover {
  transform: scale(1.25) rotate(6deg);
}

/* ─── Wheel of Fortune Section ─── */
.wheel-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 50px;
}

.wheel-section .section__sub {
  margin-bottom: 24px;
}

.wheel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 10px;
}

.wheel-pointer-wrap {
  position: absolute;
  top: -18px;
  z-index: 12;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 8px 16px rgba(214, 255, 0, 0.3));
  pointer-events: none;
}

.wheel-pointer-svg {
  display: block;
}

.wheel-canvas-wrap {
  position: relative;
  width: 560px;
  height: 560px;
  max-width: 92vw;
  max-height: 92vw;
  border-radius: 50%;
  border: 10px solid #ffffff;
  box-shadow: 0 20px 50px rgba(214, 255, 0, 0.3), inset 0 0 25px rgba(255, 255, 255, 0.9), 0 0 0 6px var(--pink-200);
  background: radial-gradient(circle, #fffdfa 0%, var(--pink-50) 100%);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.wheel-canvas-wrap:hover {
  transform: scale(1.01);
}

.wheel-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.wheel-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 460px;
}

.wheel-spin-btn {
  width: 100%;
  justify-content: center;
  font-size: 2.7rem;
  padding: 16px 36px;
  letter-spacing: 1px;
  white-space: pre-line;
  line-height: 1.15;
  text-align: center;
}

.wheel-spin-btn.is-cooldown,
.wheel-spin-btn:disabled {
  background: #94a3b8 !important;
  border-color: #94a3b8 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  opacity: 1;
  cursor: not-allowed !important;
  transform: none !important;
  filter: none !important;
}

.wheel-timer-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pink-50);
  border: 3px solid var(--pink-200);
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-candy);
}

.wheel-timer-label {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--berry-soft);
  text-transform: uppercase;
  font-weight: bold;
}

.wheel-timer-text {
  font-family: var(--font-pixel);
  font-size: 1.9rem;
  color: var(--hot);
  letter-spacing: 1px;
}

/* Wheel Win Modal – smooth open/close */
#wheel-modal.notice-modal-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#wheel-modal.notice-modal-backdrop.wheel-modal-open {
  opacity: 1;
  pointer-events: auto;
}

#wheel-modal .notice-modal-card {
  transform: scale(0.88) translateY(24px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#wheel-modal.wheel-modal-open .notice-modal-card {
  transform: scale(1) translateY(0);
}

/* Wheel Win Modal Extensions */
.wheel-modal-card {
  max-width: 580px;
}

.wheel-modal-gem-wrap {
  width: 130px;
  height: 130px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 246, 0.6));
  border: 3px solid var(--pink-200);
  border-radius: 24px;
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.8);
}

.wheel-modal-gem-wrap.is-sad {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  height: auto;
  margin: 0 auto;
}

.wheel-modal-sad {
  font-family: var(--font-pixel);
  font-size: 5.5rem;
  color: var(--berry-soft);
  line-height: 1;
}

.wheel-modal-gem-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.wheel-modal-note {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: #b45309;
  background: #fffbeb;
  border: 2px solid #fde047;
  padding: 8px 16px;
  border-radius: 14px;
  margin: 0;
}

.wheel-modal-actions {
  display: flex;
  gap: 14px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.wheel-modal-actions .btn {
  flex: 1;
  min-width: 160px;
  justify-content: center;
  font-size: 1.35rem;
}

/* ─── Sky Drop Full-Screen Game Styles ─── */
.skydrop-page {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--pink-50);
}

.skydrop-container-full {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: calc(100vh - 130px);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 16px;
  box-sizing: border-box;
  z-index: 2;
}

.skydrop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 24px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 3px solid var(--pink-200);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(214, 255, 0, 0.3);
  z-index: 10;
}

.skydrop-hud-scores {
  display: flex;
  gap: 24px;
  align-items: center;
}

.skydrop-hud-box {
  display: flex;
  flex-direction: flex-start;
  gap: 6px;
  align-items: baseline;
}

.skydrop-hud-label {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--berry-soft);
  text-transform: lowercase;
  font-weight: 700;
}

.skydrop-hud-value {
  font-family: 'CHAOS16', var(--font-title);
  font-size: 2rem;
  color: var(--hot);
  line-height: 1;
}

.skydrop-canvas-wrap-full {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  border: 4px solid var(--hot);
  box-shadow: 0 16px 40px rgba(214, 255, 0, 0.3), inset 0 2px 6px rgba(255, 255, 255, 0.8);
  background: #0f130b;
  display: flex;
}

.skydrop-canvas-wrap-full canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.skydrop-modal-card {
  max-width: 520px;
  width: 90%;
}

/* ─── doors & wheel section floating decor (hearts & sparkles) ─── */

.doors,
.wheel-section {
  position: relative;
}

/* doors section decor */
.doors-heart--1 { top: 15%; left: 4%; scale: 0.9; animation-delay: 0s; }
.doors-heart--2 { top: 65%; left: 8%; scale: 1.1; animation-delay: -2.5s; }
.doors-heart--3 { top: 20%; right: 5%; scale: 0.85; animation-delay: -4.2s; }
.doors-heart--4 { top: 70%; right: 7%; scale: 1.0; animation-delay: -1.8s; }

.doors-sparkle--1 { top: 10%; left: 6%; scale: 1.2; animation-delay: -0.5s; }
.doors-sparkle--2 { top: 45%; left: 2%; scale: 1.0; animation-delay: -3.1s; }
.doors-sparkle--3 { top: 85%; left: 10%; scale: 1.3; animation-delay: -1.7s; }
.doors-sparkle--4 { top: 12%; right: 8%; scale: 1.1; animation-delay: -4.8s; }
.doors-sparkle--5 { top: 50%; right: 3%; scale: 0.9; animation-delay: -2.2s; }
.doors-sparkle--6 { top: 82%; right: 9%; scale: 1.4; animation-delay: -3.9s; }

/* wheel section decor */
.wheel-heart--1 { top: 12%; left: 5%; scale: 0.95; animation-delay: -0.8s; }
.wheel-heart--2 { top: 38%; left: 9%; scale: 1.2; animation-delay: -3.4s; }
.wheel-heart--3 { top: 75%; left: 6%; scale: 0.8; animation-delay: -5.1s; }
.wheel-heart--4 { top: 15%; right: 6%; scale: 1.1; animation-delay: -2.1s; }
.wheel-heart--5 { top: 42%; right: 8%; scale: 0.85; animation-delay: -4.5s; }
.wheel-heart--6 { top: 78%; right: 5%; scale: 1.15; animation-delay: -1.3s; }

.wheel-sparkle--1 { top: 8%; left: 8%; scale: 1.3; animation-delay: -1.2s; }
.wheel-sparkle--2 { top: 28%; left: 3%; scale: 1.0; animation-delay: -4.0s; }
.wheel-sparkle--3 { top: 58%; left: 7%; scale: 1.4; animation-delay: -2.7s; }
.wheel-sparkle--4 { top: 88%; left: 4%; scale: 1.1; animation-delay: -0.4s; }
.wheel-sparkle--5 { top: 10%; right: 4%; scale: 1.2; animation-delay: -3.8s; }
.wheel-sparkle--6 { top: 32%; right: 10%; scale: 0.9; animation-delay: -1.9s; }
.wheel-sparkle--7 { top: 62%; right: 4%; scale: 1.35; animation-delay: -5.3s; }
.wheel-sparkle--8 { top: 86%; right: 8%; scale: 1.0; animation-delay: -2.6s; }
/* ─── FOOLIES THEME OVERRIDES ─── */
body {
  color: #f4f6f0 !important;
  background-color: #070905 !important;
}

::selection {
  background: #d6ff00 !important;
  color: #000000 !important;
}

.hero__title {
  color: #d6ff00 !important;
  -webkit-text-stroke: 1.25px #d6ff00 !important;
  text-shadow: 0 0 12px rgba(214, 255, 0, 0.35) !important;
}

.nav__logo {
  color: #d6ff00 !important;
  -webkit-text-stroke: 0.75px #d6ff00 !important;
  text-shadow: 0 0 8px rgba(214, 255, 0, 0.3) !important;
}



.nav__links a {
  color: #c8d6df !important;
  font-family: '04B_03', '04B03', monospace !important;
  font-size: 1.65rem !important;
  font-weight: 400 !important;
  -webkit-text-stroke: 0 !important;
}

.nav__links a:hover {
  color: #d6ff00 !important;
}

.btn {
  font-family: '04B_03', '04B03', monospace !important;
  font-size: 1.85rem !important;
  font-weight: 400 !important;
  -webkit-text-stroke: 0 !important;
}

.hero__tagline {
  color: #e2e8f0 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8) !important;
  font-family: '04B_03', '04B03', monospace !important;
  font-weight: 400 !important;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem) !important;
  -webkit-text-stroke: 0 !important;
}

/* Clean floating stats pills container */
.hero__stats {
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
  list-style: none !important;
  margin-top: 40px !important;
  flex-wrap: wrap !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.hero__stats li b {
  color: #d6ff00 !important;
  font-family: '04B_03', '04B03', monospace !important;
  font-size: 1.85rem !important;
  font-weight: 400 !important;
  -webkit-text-stroke: 0 !important;
}

.hero__stats li span {
  color: #c8d6df !important;
  font-family: '04B_03', '04B03', monospace !important;
  font-size: 1.35rem !important;
  letter-spacing: 1px !important;
  font-weight: 400 !important;
  -webkit-text-stroke: 0 !important;
}

.marquee {
  background: #d6ff00 !important;
  color: #000000 !important;
  font-weight: 400 !important;
  border-top: 3px solid #9ab800 !important;
  border-bottom: 3px solid #9ab800 !important;
  font-family: '04B_03', '04B03', monospace !important;
  margin-top: -10px !important;
  position: relative !important;
  top: -6px !important;
  z-index: 10 !important;
}

.marquee span {
  color: #000000 !important;
  font-weight: 400 !important;
  font-family: '04B_03', '04B03', monospace !important;
  font-size: 1.55rem !important;
  -webkit-text-stroke: 0 !important;
}

.profile-container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.profile-header__title {
  font-family: var(--font-title) !important;
  font-weight: normal !important;
  font-size: clamp(2.8rem, 7.5vw, 5.8rem) !important;
  line-height: 1.05 !important;
  letter-spacing: 3px !important;
  color: #d6ff00 !important;
  -webkit-text-stroke: 1.25px #d6ff00 !important;
  text-shadow: 0 0 12px rgba(214, 255, 0, 0.35) !important;
  margin-bottom: 14px !important;
  animation: title-bob 5s ease-in-out infinite !important;
}

.profile-header__sub {
  color: #c8d6df !important;
  font-family: '04B_03', '04B03', monospace !important;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
  font-weight: 400 !important;
  -webkit-text-stroke: 0 !important;
}

.wallet-card {
  padding: 32px 36px !important;
  font-family: '04B_03', '04B03', monospace !important;
}

.footer {
  background: #050604 !important;
  border-top: 3px solid #161c10 !important;
}

.footer__logo {
  color: #d6ff00 !important;
  -webkit-text-stroke: 0.85px #d6ff00 !important;
  text-shadow: 0 0 8px rgba(214, 255, 0, 0.3) !important;
  letter-spacing: 2px !important;
  font-family: var(--font-title) !important;
}

.footer__love, .footer__tiny {
  color: #718096 !important;
  font-family: '04B_03', '04B03', monospace !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  -webkit-text-stroke: 0 !important;
}

.pill {
  background: #11160d !important;
  color: #d6ff00 !important;
  border: 2px solid #d6ff00 !important;
  -webkit-text-stroke: 0 !important;
}

.pill:hover {
  background: #d6ff00 !important;
  color: #000000 !important;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #d6ff00 !important;
  padding: 6px;
  transition: transform 0.2s ease, filter 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.social-icon-link:hover {
  transform: translateY(-3px) scale(1.15);
  background: transparent !important;
  color: #ffffff !important;
  filter: drop-shadow(0 0 14px rgba(214, 255, 0, 0.9));
}

.social-icon {
  width: 48px;
  height: 48px;
  display: block;
}

.lime-text {
  color: #d6ff00 !important;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(214, 255, 0, 0.4);
}
