:root {
  --brand-pink: #d9147e;
  --brand-pink-glow: rgba(217, 20, 126, 0.45);
  --brand-pink-light: rgba(217, 20, 126, 0.1);
  --dark-bg: #09090b;
  --dark-card: rgba(20, 20, 25, 0.7);
  --border-glow: rgba(217, 20, 126, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-pink);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background-color: var(--dark-bg);
  color: #f4f4f5;
  overflow-x: hidden;
}

/* Glassmorphism */
.glass-panel {
  background: var(--dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-panel-interactive {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel-interactive:hover {
  border-color: var(--border-glow);
  box-shadow: 0 10px 30px -10px var(--brand-pink-glow);
  transform: translateY(-5px);
}

/* Text glow */
.glow-text {
  text-shadow: 0 0 20px var(--brand-pink-glow);
}

/* Neon Button */
.btn-neon {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-neon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.btn-neon:hover::after {
  transform: translateX(100%);
}

.btn-neon:hover {
  box-shadow: 0 0 25px var(--brand-pink-glow);
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

/* Image zoom grid */
.image-zoom-container {
  overflow: hidden;
}

.image-zoom-img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom-container:hover .image-zoom-img {
  transform: scale(1.1);
}

/* Accent border animation */
@keyframes borderPulse {
  0%, 100% { border-color: rgba(217, 20, 126, 0.2); }
  50% { border-color: rgba(217, 20, 126, 0.6); }
}

.border-pulse {
  animation: borderPulse 3s infinite;
}
