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

body {
  background: #c8d6e5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.app {
  width: 393px;
  height: 852px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* ── Splash ── */
#splash {
  background: #0D0321;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.splash-text {
  opacity: 0;
}

.splash-text h1 {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1px;
}

.splash-text h1 span {
  background: linear-gradient(to right, #BF79FD 0%, #DCB9FB 50%, #FF8FEA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Dots (compartido, posición fija en todas las páginas) ── */
.dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 2;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #534AB7;
}

.dot.active {
  width: 8px;
  height: 8px;
  background: #BF79FD;
}

