* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: #2C2C2A;
  margin: 0; padding: 0; min-height: 100vh;
}
.page {
  width: 100%;
  background: #2C2C2A;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
}
.top {
  padding: 56px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.logo-icon {
  width: 88px;
  height: auto;
  margin-bottom: 24px;
  display: block;
}
.headline {
  font-family: 'Fredoka', sans-serif;
  font-size: 58px; font-weight: 600;
  color: #FFF4DC; line-height: 1.0; margin-bottom: 16px;
}
.headline .yel { color: #FFD93D; }
.tagline {
  font-family: 'Inter', sans-serif;
  font-size: 17px; color: rgba(255,244,220,0.78);
  letter-spacing: 0.03em; margin-bottom: 0;
}








.spotlight-zone {
  position: relative;
  padding: 32px 0 40px;
  background: radial-gradient(ellipse 50% 70% at 50% 45%, rgba(232,101,26,0.10) 0%, rgba(255,217,61,0.04) 40%, transparent 70%);
  overflow: hidden;
}
.spotlight-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,217,61,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.carousel-window {
  position: relative;
  height: 460px;
  overflow: visible;
  perspective: 1400px;
}
.track {
  display: flex;
  height: 100%;
  align-items: center;
  transition: transform 0.75s cubic-bezier(0.32, 0.72, 0.32, 1);
  will-change: transform;
  position: relative;
}
.slide {
  flex-shrink: 0;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.32, 0.72, 0.32, 1);
  opacity: 0.42;
  transform: scale(0.82);
  filter: saturate(0.7) brightness(0.9);
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) brightness(1);
  z-index: 3;
}
.slide.neighbor {
  opacity: 0.7;
  transform: scale(0.9);
  filter: saturate(0.88) brightness(0.95);
  z-index: 2;
}
.bowl-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bowl-frame::after {
  content: '';
  position: absolute;
  bottom: 6%;
  left: 12%;
  right: 12%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, transparent 70%);
  z-index: -1;
  filter: blur(2px);
  opacity: 0;
  transition: opacity 0.5s;
}
.slide.active .bowl-frame::after { opacity: 1; }
.bowl-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.slide-label {
  font-family: 'Inter', sans-serif;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,244,220,0.4);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.4s, transform 0.5s;
}
.slide.active .slide-label {
  color: #FFD93D;
  transform: translateY(-2px);
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  position: relative;
  z-index: 5;
}
.indicator {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,244,220,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.indicator.active {
  background: #E8651A;
  width: 24px;
  border-radius: 3px;
}
.indicator:hover { background: rgba(255,244,220,0.4); }
