body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  font-family: 'Press Start 2P', cursive;
  position: relative;
}

.sky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #97deff 0%, #92d5ff 40%, #00c3ff 100%);
  z-index: 0;
}

#bnbRain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.bnb {
  position: absolute;
  top: -60px;
  image-rendering: pixelated;
  animation: fall linear forwards;
  opacity: 0.8;
}

@keyframes fall {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(110vh) rotate(360deg); }
}

.clouds {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.cloud-wrap {
  position: absolute;
  left: -35vw;
  will-change: transform;
  animation: cloud-drift var(--speed, 60s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.cloud {
  image-rendering: pixelated;
  opacity: var(--alpha, 0.9);
  width: var(--w, 320px);
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.05));
  will-change: transform;
  animation: cloud-float var(--float, 9s) ease-in-out infinite alternate;
  transform-origin: 50% 60%;
}

.cw1 { top: 90px;  --w: 350px; --alpha: .9;  --speed: 45s; --float: 8s;  --delay: 0s;  z-index: 3; }
.cw2 { top: 180px; --w: 420px; --alpha: .85; --speed: 55s; --float: 10s; --delay: 0s;  z-index: 2; }
.cw3 { top: 290px; --w: 280px; --alpha: .92; --speed: 38s; --float: 7s;  --delay: 12s; z-index: 4; }
.cw4 { top: 140px; --w: 320px; --alpha: .7;  --speed: 50s; --float: 12s; --delay: 20s; z-index: 1; }
.cw5 { top: 250px; --w: 440px; --alpha: .8;  --speed: 36s; --float: 11s; --delay: 28s; z-index: 2; }
.cw6 { top: 70px;  --w: 260px; --alpha: .87; --speed: 43s; --float: 9s;  --delay: 36s; z-index: 3; }

@keyframes cloud-drift {
  from { transform: translateX(0); }
  to { transform: translateX(160vw); }
}

@keyframes cloud-float {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(24px) scale(1.02); }
}

.ground-scene {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 5;
}

.ground {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  display: block;
  z-index: 4;
}

.mrlee {
  position: absolute;
  bottom: 25%;
  width: 380px;
  image-rendering: pixelated;
  transform: translateX(-50%);
  left: 50%;
  z-index: 6;
}

.address-wrapper {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 7;
}

.address-label {
  font-size: 20px;
  color: white;
  text-shadow: 2px 2px 0 black;
  font-family: 'Press Start 2P', cursive;
  margin-bottom: 10px;
  white-space: nowrap;
}

.address-box {
  background: #b5ff84;
  color: black;
  border: 0;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
}

.address-box:hover {
  background: #d2ffa8;
}

.top-links {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.icon {
  width: 38px;
  height: 38px;
  image-rendering: pixelated;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.icon:hover {
  transform: scale(1.1);
}

.emoji-link {
  font-size: 30px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  user-select: none;
}

.emoji-link:hover {
  transform: scale(1.2);
}

.top-links a {
  text-decoration: none;
}

.title-text {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -400px);
  font-size: 80px;
  color: white;
  text-shadow: 4px 4px 0px black;
  font-family: 'Press Start 2P', cursive;
  margin: 0;
  white-space: nowrap;
}