/* MODERN LUXURY PREMIUM UI EFFECTS */

/* 1. Enhanced Glassmorphism */
.premium-glass {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* 2. Ambient Lighting (Hover) */
.hover-lighting {
  position: relative;
  overflow: hidden;
}

.hover-lighting::before {
  content: '';
  position: absolute;
  top: var(--y, 0);
  left: var(--x, 0);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 46, 147, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hover-lighting:hover::before {
  opacity: 1;
}

/* 3. Futuristic Reflections */
.premium-reflect {
  position: relative;
}

.premium-reflect::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.premium-reflect:hover::after {
  animation: shineReflect 0.8s ease-out forwards;
}

@keyframes shineReflect {
  to { left: 200%; }
}

/* 4. Soft Depth Shadows */
.depth-3d {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

/* 5. Glowing Focus States */
.premium-input:focus {
  outline: none;
  border-color: rgba(255, 46, 147, 0.5);
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.15);
}

/* 6. Cinematic Divider */
.cinematic-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 46, 147, 0.3), transparent);
  margin: 4rem 0;
}
