/* Skeleton loading placeholders */
.skeleton {
  background: #e9ecef;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Skeleton card (search results) */
.skeleton-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.skeleton-card .skeleton-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
}

.skeleton-card .skeleton-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.skeleton-title {
  height: 1.25rem;
  width: 60%;
}

.skeleton-text {
  height: 0.875rem;
  width: 80%;
}

.skeleton-text-short {
  height: 0.875rem;
  width: 40%;
}

.skeleton-slots {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.skeleton-slot {
  height: 2rem;
  width: 5rem;
  border-radius: 6px;
}

/* Club detail skeleton */
.skeleton-club-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.skeleton-club-img {
  width: 400px;
  height: 300px;
  border-radius: 12px;
  flex-shrink: 0;
}

.skeleton-club-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Featured clubs skeleton (index) */
.skeleton-featured {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.skeleton-featured-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.skeleton-featured-card .skeleton-img {
  width: 100%;
  aspect-ratio: 16/9;
}

.skeleton-featured-card .skeleton-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Party guest skeleton */
.skeleton-party {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-party-hero {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .skeleton-card {
    grid-template-columns: 1fr;
  }
  .skeleton-club-header {
    flex-direction: column;
  }
  .skeleton-club-img {
    width: 100%;
    height: 200px;
  }
}
