.xtv-gallery-layout {
  background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 50%, #dbeafe 100%);
}

.xtv-category-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.xtv-category-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 25px 60px rgba(20, 184, 166, 0.25);
}

.xtv-category-icon {
  transition: transform 0.3s ease;
}

.xtv-category-card:hover .xtv-category-icon {
  transform: scale(1.2) rotate(-8deg);
}

.xtv-gallery-card {
  border-radius: 24px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
}

.xtv-gallery-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(6, 182, 212, 0.3);
}

@keyframes gallerySparkle {
  0% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(180deg); }
  100% { opacity: 0.4; transform: scale(1) rotate(360deg); }
}

.xtv-gallery-badge::before {
  content: '✨';
  animation: gallerySparkle 2.5s infinite;
}