.theme-carousel {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 680 / 800;
}

.theme-carousel .app-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #0002;
  border-radius: 18px;
  box-shadow: 0 30px 90px #0004;
  opacity: 0;
  transform: none;
  transition: opacity .65s ease;
  pointer-events: none;
}

.theme-carousel .app-shot.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.theme-switcher {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  box-shadow: 0 8px 25px #0002;
}

.theme-dot {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #777;
  cursor: pointer;
  font-size: 16px;
  transition: .2s;
}

.theme-dot:hover { background: #f0f0ee; }
.theme-dot.is-active { background: #111; color: #fff; }
.hero-visual .shortcut-card { z-index: 4; }

@media (max-width: 800px) { .hero-visual { min-height: 500px; } }
@media (max-width: 520px) {
  .hero-visual { min-height: 430px; }
  .hero-visual .shortcut-card { display: none; }
}
@media (prefers-reduced-motion: reduce) { .theme-carousel .app-shot { transition: none; } }
