.skeleton-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

/* Skeleton */
.skeleton-img {
  width: 260px;
  filter: brightness(1.4);
  transition: 0.4s;
    position: relative;   /* ✅ ensures stacking context */
  
}


.skeleton-control {
  position: absolute;
  bottom: -10px;
  right: -13%;
  transform: translateX(-50%);

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  color: white;

  border-radius: 50%;
  background: rgba(20, 40, 80, 0.6);
  backdrop-filter: blur(6px);

  z-index: 10001;
  cursor: pointer;

  transition: all 0.25s ease;
}

/* glow ring */
.skeleton-control::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;

  background: linear-gradient(45deg, #00c3ff, #005eff);
  z-index: -1;

  filter: blur(8px);
  opacity: 0.6;
}

/* hover */
.skeleton-control:hover {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 15px rgba(120, 180, 255, 0.8);
}

/* click */
.skeleton-control:active {
  transform: translateX(-50%) scale(0.9);
}

/* icon smooth */
.skeleton-control span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}



.skeleton-img:hover {
  filter: brightness(1.6);
}

/* Title */
.skeleton-title {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.skeleton-title h2 {
  font-size: 30px;
  white-space: nowrap;

}

/* Subtitle */
.skeleton-subtitle {
  position: absolute;
  bottom: 455px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.skeleton-container:hover .skeleton-subtitle {
  opacity: 1;
}


