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

body {
  background: #07070b;
  color: #fff;
  overflow: hidden;
  font-family: Inter, sans-serif;
  cursor: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'>\
<rect x='7' y='0' width='2' height='16' fill='white'/>\
<rect x='0' y='7' width='16' height='2' fill='white'/>\
</svg>") 8 8, crosshair;
}

/* BACKGROUND DEPTH */
.bg {
  position: fixed;
  inset: -20%;
  filter: blur(60px);
  opacity: 0.25;
  animation: drift 24s infinite alternate ease-in-out;
  z-index: -3;
}

.layer1 {
  background: radial-gradient(circle at 30% 40%, #8b5cf6, transparent 45%);
}

.layer2 {
  background: radial-gradient(circle at 70% 60%, #c084fc, transparent 50%);
  animation-duration: 32s;
}

.layer3 {
  background: radial-gradient(circle at 50% 80%, #5b21b6, transparent 55%);
  animation-duration: 40s;
}

@keyframes drift {
  from { transform: translate(0,0); }
  to { transform: translate(-80px,-60px); }
}

/* FOREGROUND DECOR */
.deco {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 4px solid #b57cff;
  z-index: 5;
}
.tl { top: 20px; left: 20px; }
.tr { top: 20px; right: 20px; }
.bl { bottom: 20px; left: 20px; }
.br { bottom: 20px; right: 20px; }

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s cubic-bezier(.2,.7,.2,1);
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.content {
  width: 85%;
}

/* HERO */
.hero h1 {
  font-family: "Press Start 2P", monospace;
  font-size: 96px;
  color: #b57cff;
  text-shadow: 6px 6px 0 #000;
}

.subtitle {
  margin-top: 20px;
  font-size: 22px;
  opacity: 0.9;
}

/* IP STACK */
.ip-stack {
  margin-top: 50px;
}

.ip-box {
  padding: 20px 40px;
  font-family: "Press Start 2P", monospace;
  font-size: 24px;
  background: #b57cff;
  color: #000;
  box-shadow: 6px 6px 0 #000;
  display: inline-block;
}

.pulse {
  animation: pulse 2.4s infinite steps(4);
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.ip-sub {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.pixel-box,
.version-box {
  padding: 18px 24px;
  border: 4px solid #b57cff;
  background: rgba(0,0,0,0.6);
  font-size: 14px;
}

/* TEXT */
.powered {
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

h2 {
  font-family: "Press Start 2P", monospace;
  font-size: 48px;
  color: #b57cff;
  margin-bottom: 40px;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

p {
  font-size: 20px;
  line-height: 1.7;
  color: #ddd;
}

/* STATS / FEATURES */
.stat {
  border: 4px solid #b57cff;
  padding: 20px;
  margin-bottom: 20px;
}
.stat span {
  display: block;
  font-size: 36px;
  color: #b57cff;
}

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

.feature {
  padding: 30px;
  border: 4px solid #b57cff;
  background: rgba(0,0,0,0.55);
}

.review {
  padding: 30px;
  margin-bottom: 30px;
  border-left: 6px solid #b57cff;
  background: rgba(0,0,0,0.5);
  font-size: 22px;
}

/* INDICATOR */
.indicator {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.indicator span {
  display: block;
  width: 12px;
  height: 12px;
  background: #444;
  margin: 14px 0;
}

.indicator span.active {
  background: #b57cff;
}

/* FOOTER */
.footer {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}
