.sheet-2.urban-wall {
  padding: 60px 80px;
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  color: white;
  text-align: center;
}

.slot-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin-bottom: 30px;
  line-height: 1.2;
}

.slot-fixed {
  display: inline-block;
  white-space: nowrap;
}

.slot-word {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff, #eeeeee);
  color: #111;
  padding: 10px 24px;
  border-radius: 14px;

  min-width: 330px;
  max-width: 100%;

  text-align: center;
  font-weight: 900;
  position: relative;
  animation: slotPop .35s ease;

  box-shadow:
    inset 0 3px 0 rgba(255,255,255,.8),
    inset 0 -4px 0 rgba(0,0,0,.08),
    0 16px 40px rgba(255,255,255,.18);
}

.slot-word.changing {
  animation: slotSpin .25s ease;
}

@keyframes slotSpin {
  0% {
    transform: translateY(-18px);
    opacity: 0;
    filter: blur(4px);
  }

  50% {
    transform: translateY(6px);
    opacity: .6;
    filter: blur(2px);
  }

  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes slotPop {
  from {
    transform: scale(.95);
  }

  to {
    transform: scale(1);
  }
}

.slot-subtitle {
  font-size: 1.3rem;
  opacity: .85;
  margin-bottom: 50px;
}

.tag-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 18px 44px;
  border-radius: 999px;
  background: #e84f1b;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(232,79,27,.45);
  transition: transform .25s ease;
}

.tag-cta:hover {
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 768px) {
  .sheet-2.urban-wall {
    padding: 50px 24px;
  }

  .slot-title {
    flex-direction: column;
    gap: 16px;
  }

  .slot-fixed {
    white-space: normal;
  }

  .slot-word {
    min-width: 100%;
    font-size: 2rem;
  }
}










.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(232, 79, 27, 0.14);
  z-index: 9999;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: #e84f1b;
  transition: width 0.08s linear;
}
.page-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(232, 79, 27, 0.30);
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
  transition: transform 0.2s ease, background 0.2s ease, height 0.2s ease;
}

.page-dot:hover,
.page-dot.active {
  background: #e84f1b;
  transform: scale(1.2);
}

.page-dot.active {
  height: 24px;
}

@media (max-width: 700px) {
  .page-dots {
    right: 12px;
    gap: 9px;
  }

  .page-dot {
    width: 8px;
    height: 8px;
  }

  .page-dot.active {
    height: 20px;
  }
}