/* GottaGF Slide – sandbox horizontal deck */

.ggf-slide-shell {
  width: 100%;
  max-width: 480px;
  height: 80vh;
  max-height: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  background: #050509;
}

.ggf-slide-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.ggf-slide-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  opacity: 0;
  pointer-events: none;
}

.ggf-slide-card.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ggf-slide-card video,
.ggf-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HUD */

.ggf-slide-meta {
  position: absolute;
  top: 12px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  z-index: 5;
}

.ggf-slide-indicators {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 5;
}

.ggf-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  opacity: 0.5;
}

.ggf-slide-dot.is-active {
  background: #ff2d8d;
  border-color: #ff2d8d;
  opacity: 1;
}

.ggf-slide-label {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
}

/* Wrapper for demo so it looks nice on dark body but doesn't fight your theme */
.ggf-slide-demo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

@media (max-width: 600px) {
  .ggf-slide-shell {
    height: 70vh;
  }
}
