/* Website background gradient */
body {
  background: linear-gradient(to bottom right, rgb(14, 165, 233), rgb(6, 182, 212), rgb(52, 211, 153));
  min-height: 100vh;
  width: 100%;
}

/* Gradient overlay for soft glass look */
.website-background {
  background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%);
  min-height: 100vh;
  width: 100%;
}

/* Hero animated background styles */
.hero-animated-bg {
  z-index: 0;
  min-height: 100%;
  height: auto;
}

/* Flowing gradient waves - Multi-layer for depth */
.hero-gradient-waves {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(34, 211, 238, 0.08) 25%,
    rgba(52, 211, 153, 0.1) 50%,
    rgba(34, 211, 238, 0.08) 75%,
    rgba(14, 165, 233, 0.1) 100%
  );
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;
  opacity: 0.6;
  will-change: background-position, transform;
}

.hero-gradient-layer-1 {
  animation: gradientFlow 20s ease infinite;
  opacity: 0.6;
}

.hero-gradient-layer-2 {
  background: linear-gradient(
    45deg,
    rgba(34, 211, 238, 0.12) 0%,
    rgba(52, 211, 153, 0.1) 25%,
    rgba(6, 182, 212, 0.12) 50%,
    rgba(34, 211, 238, 0.1) 75%,
    rgba(52, 211, 153, 0.12) 100%
  );
  background-size: 500% 500%;
  animation: gradientFlowReverse 25s ease infinite;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero-gradient-layer-3 {
  background: radial-gradient(
    ellipse at center,
    rgba(52, 211, 153, 0.15) 0%,
    rgba(34, 211, 238, 0.1) 30%,
    rgba(6, 182, 212, 0.08) 60%,
    transparent 100%
  );
  background-size: 300% 300%;
  animation: gradientFlowRadial 30s ease infinite;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientFlowReverse {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes gradientFlowRadial {
  0% {
    background-position: 0% 0%;
    transform: scale(1) rotate(0deg);
  }
  33% {
    background-position: 100% 50%;
    transform: scale(1.1) rotate(120deg);
  }
  66% {
    background-position: 50% 100%;
    transform: scale(0.9) rotate(240deg);
  }
  100% {
    background-position: 0% 0%;
    transform: scale(1) rotate(360deg);
  }
}

/* Animated mesh grid pattern */
.hero-mesh-grid {
  background-image: 
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: meshMove 20s linear infinite;
  opacity: 0.6;
  mix-blend-mode: overlay;
  will-change: background-position, transform;
}

@keyframes meshMove {
  0% {
    background-position: 0 0, 0 0;
    transform: translate(0, 0);
  }
  100% {
    background-position: 50px 50px, 50px 50px;
    transform: translate(10px, 10px);
  }
}

/* Floating particles container */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: visible;
}

/* Individual floating particles */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
  backdrop-filter: blur(1px);
  pointer-events: none;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 3px rgba(6, 182, 212, 0.3));
}

.hero-particle-1 {
  width: 8px;
  height: 8px;
  left: 10%;
  top: 20%;
  animation: floatParticle 15s ease-in-out infinite;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.6), transparent);
}

.hero-particle-2 {
  width: 12px;
  height: 12px;
  left: 25%;
  top: 60%;
  animation: floatParticle 18s ease-in-out infinite;
  animation-delay: 1s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent);
}

.hero-particle-3 {
  width: 6px;
  height: 6px;
  left: 45%;
  top: 15%;
  animation: floatParticle 20s ease-in-out infinite;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.6), transparent);
}

.hero-particle-4 {
  width: 10px;
  height: 10px;
  left: 60%;
  top: 45%;
  animation: floatParticle 16s ease-in-out infinite;
  animation-delay: 0.5s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.5), transparent);
}

.hero-particle-5 {
  width: 14px;
  height: 14px;
  left: 75%;
  top: 25%;
  animation: floatParticle 22s ease-in-out infinite;
  animation-delay: 1.5s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent);
}

.hero-particle-6 {
  width: 7px;
  height: 7px;
  left: 15%;
  top: 75%;
  animation: floatParticle 17s ease-in-out infinite;
  animation-delay: 2.5s;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.5), transparent);
}

.hero-particle-7 {
  width: 11px;
  height: 11px;
  left: 35%;
  top: 35%;
  animation: floatParticle 19s ease-in-out infinite;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent);
}

.hero-particle-8 {
  width: 9px;
  height: 9px;
  left: 55%;
  top: 70%;
  animation: floatParticle 21s ease-in-out infinite;
  animation-delay: 1s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent);
}

.hero-particle-9 {
  width: 13px;
  height: 13px;
  left: 80%;
  top: 55%;
  animation: floatParticle 18s ease-in-out infinite;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.4), transparent);
}

.hero-particle-10 {
  width: 5px;
  height: 5px;
  left: 5%;
  top: 50%;
  animation: floatParticle 16s ease-in-out infinite;
  animation-delay: 0.8s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.6), transparent);
}

.hero-particle-11 {
  width: 10px;
  height: 10px;
  left: 90%;
  top: 15%;
  animation: floatParticle 20s ease-in-out infinite;
  animation-delay: 1.8s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent);
}

.hero-particle-12 {
  width: 8px;
  height: 8px;
  left: 70%;
  top: 80%;
  animation: floatParticle 17s ease-in-out infinite;
  animation-delay: 2.8s;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.5), transparent);
}

.hero-particle-13 {
  width: 9px;
  height: 9px;
  left: 20%;
  top: 40%;
  animation: floatParticle 19s ease-in-out infinite;
  animation-delay: 3.5s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.6), transparent);
}

.hero-particle-14 {
  width: 7px;
  height: 7px;
  left: 50%;
  top: 50%;
  animation: floatParticle 18s ease-in-out infinite;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent);
}

.hero-particle-15 {
  width: 11px;
  height: 11px;
  left: 30%;
  top: 30%;
  animation: floatParticle 16s ease-in-out infinite;
  animation-delay: 4.5s;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.5), transparent);
}

.hero-particle-16 {
  width: 6px;
  height: 6px;
  left: 65%;
  top: 35%;
  animation: floatParticle 20s ease-in-out infinite;
  animation-delay: 5s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.6), transparent);
}

.hero-particle-17 {
  width: 10px;
  height: 10px;
  left: 40%;
  top: 65%;
  animation: floatParticle 17s ease-in-out infinite;
  animation-delay: 5.5s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent);
}

.hero-particle-18 {
  width: 8px;
  height: 8px;
  left: 85%;
  top: 40%;
  animation: floatParticle 19s ease-in-out infinite;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.5), transparent);
}

.hero-particle-19 {
  width: 12px;
  height: 12px;
  left: 12%;
  top: 28%;
  animation: floatParticle 18s ease-in-out infinite;
  animation-delay: 6.5s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent);
}

.hero-particle-20 {
  width: 9px;
  height: 9px;
  left: 58%;
  top: 25%;
  animation: floatParticle 21s ease-in-out infinite;
  animation-delay: 7s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent);
}

.hero-particle-21 {
  width: 7px;
  height: 7px;
  left: 22%;
  top: 12%;
  animation: floatParticle 19s ease-in-out infinite;
  animation-delay: 7.5s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.5), transparent);
}

.hero-particle-22 {
  width: 11px;
  height: 11px;
  left: 38%;
  top: 72%;
  animation: floatParticle 17s ease-in-out infinite;
  animation-delay: 8s;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.5), transparent);
}

.hero-particle-23 {
  width: 8px;
  height: 8px;
  left: 62%;
  top: 8%;
  animation: floatParticle 20s ease-in-out infinite;
  animation-delay: 8.5s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.6), transparent);
}

.hero-particle-24 {
  width: 10px;
  height: 10px;
  left: 78%;
  top: 68%;
  animation: floatParticle 18s ease-in-out infinite;
  animation-delay: 9s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.5), transparent);
}

.hero-particle-25 {
  width: 6px;
  height: 6px;
  left: 8%;
  top: 35%;
  animation: floatParticle 16s ease-in-out infinite;
  animation-delay: 9.5s;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.6), transparent);
}

.hero-particle-26 {
  width: 12px;
  height: 12px;
  left: 48%;
  top: 5%;
  animation: floatParticle 22s ease-in-out infinite;
  animation-delay: 10s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent);
}

.hero-particle-27 {
  width: 9px;
  height: 9px;
  left: 72%;
  top: 45%;
  animation: floatParticle 19s ease-in-out infinite;
  animation-delay: 10.5s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.5), transparent);
}

.hero-particle-28 {
  width: 7px;
  height: 7px;
  left: 18%;
  top: 58%;
  animation: floatParticle 17s ease-in-out infinite;
  animation-delay: 11s;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.5), transparent);
}

.hero-particle-29 {
  width: 10px;
  height: 10px;
  left: 88%;
  top: 32%;
  animation: floatParticle 21s ease-in-out infinite;
  animation-delay: 11.5s;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.5), transparent);
}

.hero-particle-30 {
  width: 8px;
  height: 8px;
  left: 42%;
  top: 88%;
  animation: floatParticle 18s ease-in-out infinite;
  animation-delay: 12s;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.6), transparent);
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  20% {
    transform: translate(50px, -60px) scale(1.3);
    opacity: 0.8;
  }
  40% {
    transform: translate(-40px, -100px) scale(0.8);
    opacity: 0.6;
  }
  60% {
    transform: translate(60px, -70px) scale(1.2);
    opacity: 0.75;
  }
  80% {
    transform: translate(-30px, -50px) scale(1.1);
    opacity: 0.65;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
}

/* Enhanced particle animation with rotation */
@keyframes floatParticleEnhanced {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translate(60px, -80px) scale(1.4) rotate(90deg);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50px, -120px) scale(0.7) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translate(70px, -90px) scale(1.3) rotate(270deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    opacity: 0.4;
  }
}

/* Pulsing orbs representing active chat rooms */
.hero-pulse-orb {
  animation: pulseOrb 8s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-pulse-orb-1 {
  animation-delay: 0s;
}

.hero-pulse-orb-2 {
  animation-delay: 2s;
}

.hero-pulse-orb-3 {
  animation-delay: 4s;
}

.hero-pulse-orb-4 {
  animation-delay: 1s;
}

.hero-pulse-orb-5 {
  animation-delay: 3s;
}

.hero-pulse-orb-6 {
  animation-delay: 1.5s;
}

@keyframes pulseOrb {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.3;
  }
  25% {
    transform: scale(1.15) translate(20px, -15px);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3) translate(-15px, 20px);
    opacity: 0.35;
  }
  75% {
    transform: scale(1.1) translate(10px, -10px);
    opacity: 0.38;
  }
}

@keyframes pulseOrbEnhanced {
  0%, 100% {
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 0.25;
  }
  20% {
    transform: scale(1.2) translate(30px, -20px) rotate(72deg);
    opacity: 0.35;
  }
  40% {
    transform: scale(1.4) translate(-25px, 30px) rotate(144deg);
    opacity: 0.3;
  }
  60% {
    transform: scale(1.1) translate(15px, -25px) rotate(216deg);
    opacity: 0.33;
  }
  80% {
    transform: scale(1.25) translate(-20px, 15px) rotate(288deg);
    opacity: 0.32;
  }
}

/* Connection lines animation */
.hero-connection-lines {
  opacity: 0.5;
  z-index: 1;
  will-change: transform, opacity;
}

.hero-connection-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 15s ease-in-out infinite;
  will-change: stroke-dashoffset, opacity;
  filter: drop-shadow(0 0 2px rgba(34, 211, 238, 0.3));
}

.hero-connection-path:nth-child(2) {
  animation-delay: 3s;
}

.hero-connection-path:nth-child(3) {
  animation-delay: 6s;
}

.hero-connection-path:nth-child(4) {
  animation-delay: 1.5s;
}

.hero-connection-path:nth-child(5) {
  animation-delay: 4.5s;
}

.hero-connection-path:nth-child(6) {
  animation-delay: 0.5s;
}

.hero-connection-path:nth-child(7) {
  animation-delay: 7.5s;
}

@keyframes drawPath {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  20% {
    opacity: 0.4;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 0.5;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    stroke-dashoffset: -1000;
    opacity: 0;
  }
}

/* Floating geometric shapes */
.hero-geometric-shape {
  position: absolute;
  border: 2px solid;
  border-color: rgba(34, 211, 238, 0.2);
  backdrop-filter: blur(1px);
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.hero-geometric-1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 5%;
  border-radius: 20% 80% 20% 80%;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(52, 211, 153, 0.1));
  animation: geometricFloat1 25s ease-in-out infinite;
  animation-delay: 0s;
}

.hero-geometric-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent);
  animation: geometricFloat2 30s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-geometric-3 {
  width: 50px;
  height: 50px;
  top: 35%;
  left: 12%;
  transform: rotate(45deg);
  background: linear-gradient(45deg, rgba(52, 211, 153, 0.12), rgba(34, 211, 238, 0.12));
  animation: geometricFloat3 22s ease-in-out infinite;
  animation-delay: 4s;
}

.hero-geometric-4 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  right: 15%;
  border-radius: 30% 70% 70% 30%;
  background: linear-gradient(225deg, rgba(34, 211, 238, 0.1), rgba(6, 182, 212, 0.1));
  animation: geometricFloat4 28s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-geometric-5 {
  width: 45px;
  height: 45px;
  top: 75%;
  left: 25%;
  transform: rotate(30deg);
  border-radius: 20%;
  background: linear-gradient(60deg, rgba(52, 211, 153, 0.15), rgba(34, 211, 238, 0.15));
  animation: geometricFloat5 26s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes geometricFloat1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(40px, -50px) rotate(90deg) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translate(-30px, -80px) rotate(180deg) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translate(50px, -40px) rotate(270deg) scale(1.1);
    opacity: 0.7;
  }
}

@keyframes geometricFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: translate(-60px, 40px) scale(1.3);
    opacity: 0.7;
  }
  66% {
    transform: translate(40px, -60px) scale(0.8);
    opacity: 0.4;
  }
}

@keyframes geometricFloat3 {
  0%, 100% {
    transform: translate(0, 0) rotate(45deg) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(50px, 50px) rotate(225deg) scale(1.3);
    opacity: 0.8;
  }
}

@keyframes geometricFloat4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translate(-50px, 30px) rotate(90deg) scale(1.2);
    opacity: 0.7;
  }
  50% {
    transform: translate(30px, -50px) rotate(180deg) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translate(-30px, 40px) rotate(270deg) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes geometricFloat5 {
  0%, 100% {
    transform: translate(0, 0) rotate(30deg) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(60px, -40px) rotate(210deg) scale(1.4);
    opacity: 0.9;
  }
}

/* Animated light rays */
.hero-light-ray {
  position: absolute;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(34, 211, 238, 0.2),
    transparent
  );
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.hero-light-ray-1 {
  width: 2px;
  height: 40%;
  top: 0;
  left: 20%;
  transform: rotate(15deg);
  transform-origin: top center;
  animation: lightRaySweep1 12s ease-in-out infinite;
  opacity: 0.4;
}

.hero-light-ray-2 {
  width: 2px;
  height: 35%;
  top: 10%;
  right: 25%;
  transform: rotate(-20deg);
  transform-origin: top center;
  animation: lightRaySweep2 15s ease-in-out infinite;
  animation-delay: 3s;
  opacity: 0.35;
}

.hero-light-ray-3 {
  width: 2px;
  height: 45%;
  bottom: 0;
  left: 50%;
  transform: rotate(10deg);
  transform-origin: bottom center;
  animation: lightRaySweep3 18s ease-in-out infinite;
  animation-delay: 6s;
  opacity: 0.3;
}

@keyframes lightRaySweep1 {
  0%, 100% {
    transform: rotate(15deg) translateX(0);
    opacity: 0.2;
  }
  50% {
    transform: rotate(25deg) translateX(100px);
    opacity: 0.5;
  }
}

@keyframes lightRaySweep2 {
  0%, 100% {
    transform: rotate(-20deg) translateX(0);
    opacity: 0.2;
  }
  50% {
    transform: rotate(-10deg) translateX(-80px);
    opacity: 0.45;
  }
}

@keyframes lightRaySweep3 {
  0%, 100% {
    transform: rotate(10deg) translateX(0);
    opacity: 0.15;
  }
  50% {
    transform: rotate(20deg) translateX(120px);
    opacity: 0.4;
  }
}

/* Interactive mouse follower glow */
.hero-mouse-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(34, 211, 238, 0.15) 0%,
    rgba(52, 211, 153, 0.1) 40%,
    transparent 70%
  );
  pointer-events: none;
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.1s ease-out;
  mix-blend-mode: screen;
  filter: blur(40px);
}

/* Enhanced motion system for smooth UX */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes gentleBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
  }
}

/* Staggered animation delays */
.animate-fadeInUp { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-fadeInRight { animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-scaleIn { animation: scaleIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-slideUp { animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-gentleBounce { animation: gentleBounce 2s ease-in-out infinite; }
.animate-pulseGlow { animation: pulseGlow 3s ease-in-out infinite; }

/* Animation delays for staggered effects */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }

/* Scroll-triggered animation styles */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0) !important;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced mobile menu animations */
.mobile-menu {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced loading states */
.loading-skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.08) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.skeleton-title {
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  width: 60%;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes fadeInLoading {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page loading overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(14, 165, 233), rgb(34, 211, 238), rgb(52, 211, 153));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: loadingPulse 2s ease-in-out infinite;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes loadingPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Smooth content reveal */
.content-reveal {
  opacity: 0;
  animation: fadeInLoading 0.8s ease-out 0.5s forwards;
}

/* Progressive loading */
.load-stagger {
  opacity: 0;
  animation: fadeInLoading 0.6s ease-out forwards;
}

.load-stagger:nth-child(1) { animation-delay: 0.1s; }
.load-stagger:nth-child(2) { animation-delay: 0.2s; }
.load-stagger:nth-child(3) { animation-delay: 0.3s; }
.load-stagger:nth-child(4) { animation-delay: 0.4s; }
.load-stagger:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced section transitions */
section {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

section:not(.section-visible) {
  opacity: 0.8;
  transform: translateY(20px);
}

/* Page transition effects */
body {
  transition: opacity 0.3s ease-in-out;
}

/* Smooth focus transitions */
*:focus {
  transition: all 0.2s ease-in-out;
  outline: 2px solid rgba(6, 182, 212, 0.5);
  outline-offset: 2px;
}

/* Enhanced carousel animations */
[data-carousel-track] {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Carousel container improvements */
#screens-carousel {
  position: relative;
}

#screens-carousel .overflow-hidden {
  position: relative;
}

/* Carousel image enhancements */
#screens-carousel img {
  transition: transform 0.3s ease, opacity 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

#screens-carousel img:hover {
  transform: scale(1.02);
}

/* Carousel button improvements */
#screens-carousel button[data-carousel-prev],
#screens-carousel button[data-carousel-next] {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#screens-carousel button[data-carousel-prev]:disabled,
#screens-carousel button[data-carousel-next]:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* Prevent hover effects on disabled buttons while maintaining position */
#screens-carousel button[data-carousel-prev]:disabled:hover,
#screens-carousel button[data-carousel-next]:disabled:hover {
  transform: translateY(-50%) !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  scale: 1 !important;
}

/* Ensure buttons maintain their position regardless of state */
#screens-carousel button[data-carousel-prev],
#screens-carousel button[data-carousel-next] {
  transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

/* Maintain position on hover for enabled buttons */
#screens-carousel button[data-carousel-prev]:hover:not(:disabled),
#screens-carousel button[data-carousel-next]:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.1) !important;
}

/* Keep disabled buttons in exact same position */
#screens-carousel button[data-carousel-prev]:disabled,
#screens-carousel button[data-carousel-next]:disabled {
  transform: translateY(-50%) !important;
}

/* Responsive carousel heights */
@media (max-width: 639px) {
  #screens-carousel .overflow-hidden {
    height: 500px !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  #screens-carousel .overflow-hidden {
    height: 600px !important;
  }
}

@media (min-width: 1024px) {
  #screens-carousel .overflow-hidden {
    height: 650px !important;
  }
}

/* Enhanced navigation interactions */
nav a {
  position: relative;
  overflow: hidden;
  color: white;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  transition: left 0.6s ease;
}

nav a:hover::before {
  left: 100%;
}

/* Subtle icon animations */
.icon-bounce {
  animation: gentleBounce 3s ease-in-out infinite;
}

.icon-pulse {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Enhanced mobile menu backdrop */
.mobile-menu-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Smooth text reveals */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  animation: textSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes textSlideUp {
  to {
    transform: translateY(0);
  }
}

/* Enhanced testimonial cards */
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-5px) rotate(1deg);
}

/* Smooth gradient transitions */
.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhanced button system with smooth micro-interactions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  min-height: 44px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

@media (min-width: 640px) {
  .btn {
    padding: 0.625rem 1.25rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, rgb(14, 165, 233), rgb(34, 211, 238), rgb(52, 211, 153));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4), 0 2px 6px rgba(6, 182, 212, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgb(16, 185, 233), rgb(38, 235, 238), rgb(56, 235, 153));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5), 0 4px 12px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  color: white;
  border-color: transparent;
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* Enhanced card system with smooth interactions */
.card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
  transition: left 0.8s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-header {
  padding: 1rem 1rem 0.5rem 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .card-header {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  }
}

.card-title {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: white;
}

@media (min-width: 640px) {
  .card-title {
    font-size: 1.125rem;
  }
}

.card-content {
  padding: 0.5rem 1rem 1rem 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .card-content {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  }
}

/* Enhanced input interactions */
.input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.75rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  position: relative;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.input:focus {
  outline: none;
  border-color: rgba(6, 182, 212, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1), 0 4px 12px rgba(6, 182, 212, 0.15);
  transform: translateY(-1px);
}

.input:focus::placeholder {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(2px);
}

/* Enhanced icon animations */
[data-lucide] {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover [data-lucide],
.btn:hover [data-lucide] {
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 2px 4px rgba(6, 182, 212, 0.3));
}

.store-badge:hover [data-lucide] {
  transform: scale(1.1) rotate(2deg);
}

.icon-float {
  animation: float 3s ease-in-out infinite;
}

.icon-spin {
  animation: spin 2s linear infinite;
}

.icon-bounce-subtle {
  animation: bounceSubtle 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Interactive icon effects */
.icon-interactive:hover {
  transform: scale(1.2) rotate(10deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon-glow:hover {
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
}

/* Navigation icon enhancements */
nav [data-lucide] {
  transition: all 0.3s ease;
}

nav a:hover [data-lucide] {
  transform: scale(1.1) translateX(2px);
}

/* Navigation link enhancements */
nav a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(14, 165, 233), rgb(34, 211, 238));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover::after {
  width: 80%;
}

nav a:hover {
  transform: translateY(-2px);
}

/* Enhanced store badge interactions */
.store-badge {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 50px; /* Smaller on mobile */
  width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
  position: relative;
}

.store-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.store-badge:hover::before {
  transform: translateX(100%);
}

.store-badge:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.1);
}

.store-badge:active {
  transform: translateY(-1px) scale(1.02);
  transition-duration: 0.1s;
}
@media (min-width: 640px) {
  .store-badge {
    height: 60px;
    width: 180px;
  }
}
.store-badge img {
  height: 50px;
  width: auto;
  max-width: 150px;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 0 !important;
  margin: 0 !important;
  border: none;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .store-badge img {
    height: 60px;
    max-width: 180px;
  }
}
.store-badge img[src$=".svg"] {
  width: auto;
  height: 50px;
  max-width: 140px;
}
@media (min-width: 640px) {
  .store-badge img[src$=".svg"] {
    height: 60px;
    max-width: 160px;
  }
}

/* Store badge with SVG icons and text (for other pages) - iOS */
.store-badge.store-badge-ios {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition-property: all;
  transition-duration: 200ms;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-height: 50px;
  min-width: 150px;
  margin: 0;
  box-sizing: border-box;
  background-color: black;
  color: white;
  border: 1px solid rgb(55, 65, 81);
}
.store-badge.store-badge-ios:hover {
  transform: scale(1.05);
  background-color: rgb(17, 24, 39);
}
.store-badge.store-badge-ios:active {
  transform: scale(0.95);
}
.store-badge.store-badge-ios .store-badge-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  display: block;
  object-fit: contain;
}
@media (min-width: 640px) {
  .store-badge.store-badge-ios {
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    min-height: 56px;
    min-width: 180px;
  }
}

/* Store badge with SVG icons and text (for other pages) - Android */
.store-badge.store-badge-android {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition-property: all;
  transition-duration: 200ms;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-height: 50px;
  min-width: 150px;
  margin: 0;
  box-sizing: border-box;
  background-color: white;
  color: rgb(17, 24, 39);
  border: 1px solid rgb(229, 231, 235);
}
.store-badge.store-badge-android:hover {
  transform: scale(1.05);
  background-color: rgb(249, 250, 251);
}
.store-badge.store-badge-android:active {
  transform: scale(0.95);
}
.store-badge.store-badge-android .store-badge-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  margin-left: -1rem;
  display: block;
  object-fit: contain;
}
@media (min-width: 640px) {
  .store-badge.store-badge-android .store-badge-icon {
    margin-left: -1rem;
  }
}
@media (min-width: 640px) {
  .store-badge.store-badge-android {
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    min-height: 56px;
    min-width: 180px;
  }
}

/* Store badge text container */
.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.25;
  padding: 0;
  margin: 0;
}

/* Store badge label - responsive text */
.store-badge-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .store-badge-label {
    font-size: 10px;
  }
}

/* Store badge platform - responsive text */
.store-badge-platform {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .store-badge-platform {
    font-size: 15px;
  }
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.open {
  transform: translateX(0);
}
/* Glass effect for mobile menu content */
.mobile-menu > div {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  width: 100%;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .mobile-menu-overlay {
    display: none;
  }
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Icon-only store buttons for mobile/tablet header */
.store-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.store-icon-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.store-icon-btn:hover::before {
  opacity: 1;
}

.store-icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.store-icon-btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

@media (min-width: 640px) {
  .store-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

/* Store icon styling */
.store-icon-btn-icon {
  width: 24px;
  height: 24px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.store-icon-btn:hover .store-icon-btn-icon {
  transform: scale(1.1);
}

@media (min-width: 640px) {
  .store-icon-btn-icon {
    width: 26px;
    height: 26px;
  }
}

/* Download icon indicator */
.store-icon-btn-download {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.store-icon-btn-ios .store-icon-btn-download {
  color: rgba(255, 255, 255, 0.8);
}

.store-icon-btn-android .store-icon-btn-download {
  color: rgba(0, 0, 0, 0.7);
}

.store-icon-btn:hover .store-icon-btn-download {
  opacity: 1;
  transform: scale(1.15);
}

.store-icon-btn-ios:hover .store-icon-btn-download {
  color: rgba(255, 255, 255, 1);
}

.store-icon-btn-android:hover .store-icon-btn-download {
  color: rgba(0, 0, 0, 0.9);
}

@media (min-width: 640px) {
  .store-icon-btn-download {
    width: 12px;
    height: 12px;
    bottom: 4px;
    right: 4px;
  }
}

/* iOS specific styling */
.store-icon-btn-ios {
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.2);
}

.store-icon-btn-ios:hover {
  background-color: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.3);
}

.store-icon-btn-ios .store-icon-btn-icon {
  color: white;
}

/* Android specific styling */
.store-icon-btn-android {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
}

.store-icon-btn-android:hover {
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.15);
}

.store-icon-btn-android .store-icon-btn-icon {
  color: #000000;
}

/* Store badges alignment in mobile menu */
.mobile-menu nav > div {
  align-items: center;
}
.mobile-menu .store-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
/* Ensure consistent alignment for SVG icon badges in mobile menu */
.mobile-menu .store-badge-ios,
.mobile-menu .store-badge-android {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

/* Google Play badge in mobile menu - slightly smaller width */
.mobile-menu img[src*="google-play-badge"] {
  max-width: 135px !important;
  width: auto;
}
.mobile-menu a[href*="play.google.com"] {
  width: 135px !important;
}
/* App Store badge in mobile menu - match width for alignment */
.mobile-menu img[src*="app-store-badge"] {
  max-width: 130px !important;
  width: auto;
}
.mobile-menu a[href*="apps.apple.com"] {
  width: 130px !important;
}
@media (min-width: 640px) {
  .mobile-menu img[src*="google-play-badge"] {
    max-width: 155px !important;
  }
  .mobile-menu a[href*="play.google.com"] {
    width: 155px !important;
  }
  .mobile-menu img[src*="app-store-badge"] {
    max-width: 155px !important;
  }
  .mobile-menu a[href*="apps.apple.com"] {
    width: 155px !important;
  }
}

/* ============================================
   HERO IMAGE ENHANCEMENTS & PARALLAX EFFECTS
   ============================================ */

/* Hero image container with parallax */
.hero-image-container {
  perspective: 1000px;
}

.hero-image-wrapper {
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
}

.hero-image-parallax {
  transform: translateZ(0);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  object-fit: cover;
  display: block;
}

/* Video-specific styles for hero section */
.hero-image-parallax video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

/* Ensure video maintains aspect ratio and styling */
.hero-image-wrapper video {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-glow {
  animation: pulseGlow 3s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(10px) translateX(-10px);
  }
}

.animate-float-slow {
  animation: float-slow 6s ease-in-out infinite;
}

/* ============================================
   BACKGROUND ANIMATIONS FOR ALL SECTIONS
   ============================================ */

/* Floating shapes animation */
@keyframes float-shape {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(20px) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-60px) translateX(-20px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) translateX(10px) rotate(270deg);
    opacity: 0.5;
  }
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  backdrop-filter: blur(2px);
  pointer-events: none;
  animation: float-shape 20s ease-in-out infinite;
}

/* Animated gradient background */
.animated-gradient-bg {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(34, 211, 238, 0.08) 25%,
    rgba(52, 211, 153, 0.1) 50%,
    rgba(34, 211, 238, 0.08) 75%,
    rgba(14, 165, 233, 0.1) 100%
  );
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
}

/* Particle system */
.particle-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  animation: particle-float 15s ease-in-out infinite;
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-100px) translateX(50px) scale(1.2);
    opacity: 0.6;
  }
}

/* ============================================
   IMAGE ANIMATION UTILITIES
   ============================================ */

/* Image reveal on scroll */
.image-reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Image parallax effect */
.image-parallax {
  transform: translateZ(0);
  will-change: transform;
}

/* Image hover effects */
.image-hover-lift {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-hover-lift:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Image placeholder with gradient */
.image-placeholder {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.2) 0%,
    rgba(34, 211, 238, 0.15) 50%,
    rgba(52, 211, 153, 0.2) 100%
  );
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

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

/* ============================================
   SECTION BACKGROUND ANIMATIONS
   ============================================ */

/* Section with animated background */
.section-animated-bg {
  position: relative;
  overflow: hidden;
}

.section-animated-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 70%
  );
  animation: pulseOrb 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.section-animated-bg > * {
  position: relative;
  z-index: 1;
}

/* Floating decorative elements */
.decorative-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  backdrop-filter: blur(10px);
  pointer-events: none;
  animation: float-orb 12s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
    opacity: 0.4;
  }
}

/* ============================================
   ENHANCED TYPOGRAPHY
   ============================================ */

/* Larger, bolder headlines */
h1, h2, h3 {
  letter-spacing: -0.02em;
}

/* Text reveal animation */
.text-reveal-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.text-reveal-stagger.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ENHANCED CARD WITH IMAGES
   ============================================ */

.card-with-image {
  position: relative;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-image {
  transform: scale(1.1);
}

.card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.3) 0%,
    rgba(52, 211, 153, 0.3) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  animation: shimmer 2s infinite;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   SMOOTH SCROLL BEHAVIOR
   ============================================ */

/* Smooth scrolling for the entire website */
html {
  scroll-behavior: smooth;
}

/* Enhanced smooth scrolling with better performance */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  
  /* Smooth scrolling for all scrollable containers */
  * {
    scroll-behavior: smooth;
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  html,
  * {
    scroll-behavior: auto;
  }
}

/* Smooth scrolling for programmatic scrolling */
.scroll-smooth {
  scroll-behavior: smooth;
}

/* ============================================
   RESPONSIVE IMAGE UTILITIES
   ============================================ */

@media (max-width: 640px) {
  .hero-image-parallax {
    max-width: 100%;
    height: auto;
  }
  
  .image-placeholder {
    min-height: 200px;
  }
}

/* ============================================
   FAQ ANIMATED ILLUSTRATION
   ============================================ */

.faq-animation-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

/* Main Question Mark Animation */
.faq-main-question {
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.3));
}

.faq-pulse-circle {
  animation: faqPulse 3s ease-in-out infinite;
  transform-origin: center;
}

.faq-question-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: faqDrawPath 2s ease-in-out infinite;
}

.faq-question-dot {
  animation: faqPulseDot 1.5s ease-in-out infinite;
}

@keyframes faqPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
}

@keyframes faqDrawPath {
  0% {
    stroke-dashoffset: 100;
    opacity: 0.5;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -100;
    opacity: 0.5;
  }
}

@keyframes faqPulseDot {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Floating Question Marks */
.faq-float-q {
  position: absolute;
  opacity: 0.4;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.3));
}

.faq-float-q-1 {
  top: 10%;
  left: 15%;
  animation: faqFloat1 8s ease-in-out infinite;
}

.faq-float-q-2 {
  top: 20%;
  right: 20%;
  animation: faqFloat2 10s ease-in-out infinite;
  animation-delay: 1s;
}

.faq-float-q-3 {
  bottom: 25%;
  left: 25%;
  animation: faqFloat3 9s ease-in-out infinite;
  animation-delay: 2s;
}

.faq-float-q-4 {
  bottom: 15%;
  right: 15%;
  animation: faqFloat4 11s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes faqFloat1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(20px, -30px) rotate(90deg) scale(1.2);
    opacity: 0.7;
  }
  50% {
    transform: translate(-15px, -50px) rotate(180deg) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translate(25px, -35px) rotate(270deg) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes faqFloat2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: translate(-25px, 20px) rotate(-90deg) scale(1.3);
    opacity: 0.8;
  }
  66% {
    transform: translate(20px, -25px) rotate(-180deg) scale(0.8);
    opacity: 0.4;
  }
}

@keyframes faqFloat3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(30px, -40px) rotate(180deg) scale(1.4);
    opacity: 0.7;
  }
}

@keyframes faqFloat4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translate(-20px, 30px) rotate(-90deg) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translate(15px, -20px) rotate(-180deg) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translate(-25px, 25px) rotate(-270deg) scale(1.1);
    opacity: 0.6;
  }
}

/* Speech Bubbles */
.faq-speech-bubble {
  position: absolute;
  z-index: 5;
}

.faq-bubble-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(34, 211, 238, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: faqBubblePulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.3));
}

.faq-speech-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.faq-speech-2 {
  top: 25%;
  right: 12%;
  animation-delay: 1s;
}

.faq-speech-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 1.5s;
}

@keyframes faqBubblePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
    border-color: rgba(34, 211, 238, 0.3);
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    border-color: rgba(34, 211, 238, 0.6);
  }
}

/* Lightbulbs */
.faq-lightbulb {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.4));
  opacity: 0.5;
}

.faq-lightbulb-1 {
  top: 30%;
  right: 15%;
  animation: faqLightbulbGlow 2.5s ease-in-out infinite;
}

.faq-lightbulb-2 {
  bottom: 30%;
  right: 25%;
  animation: faqLightbulbGlow 3s ease-in-out infinite;
  animation-delay: 1.2s;
}

.faq-lightbulb-glow {
  animation: faqLightbulbPulse 2s ease-in-out infinite;
}

@keyframes faqLightbulbGlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
  }
  50% {
    transform: translate(10px, -10px) scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 1));
  }
}

@keyframes faqLightbulbPulse {
  0%, 100% {
    opacity: 0.8;
    stroke-width: 1.5;
  }
  50% {
    opacity: 1;
    stroke-width: 2;
  }
}

/* Magnifying Glass */
.faq-magnifying-glass {
  position: absolute;
  top: 50%;
  left: 8%;
  z-index: 1;
  animation: faqMagnifyMove 6s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
  opacity: 0.5;
}

@keyframes faqMagnifyMove {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translate(40px, -30px) rotate(15deg) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translate(20px, -50px) rotate(-10deg) scale(0.95);
    opacity: 0.8;
  }
  75% {
    transform: translate(50px, -20px) rotate(20deg) scale(1.05);
    opacity: 0.9;
  }
}

/* Connection Lines */
.faq-connection-lines {
  opacity: 0.2;
  z-index: 0;
}

.faq-connection-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: faqDrawConnection 4s ease-in-out infinite;
}

.faq-connection-path:nth-child(2) {
  animation-delay: 2s;
}

@keyframes faqDrawConnection {
  0% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 0.5;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}

/* Hover Effects */
.faq-animation-container:hover .faq-main-question {
  filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.8));
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.faq-animation-container:hover .faq-float-q {
  opacity: 0.9;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.6));
  transition: all 0.3s ease;
}

.faq-animation-container:hover .faq-bubble-content {
  border-color: rgba(34, 211, 238, 0.6);
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.faq-animation-container:hover .faq-lightbulb {
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.9));
  transform: scale(1.15);
  transition: all 0.3s ease;
}

/* Responsive adjustments for FAQ animation */
@media (max-width: 640px) {
  .faq-animation-container {
    height: 200px !important;
  }
  
  .faq-main-question svg {
    width: 80px !important;
    height: 80px !important;
  }
  
  .faq-float-q svg {
    width: 32px !important;
    height: 32px !important;
  }
  
  .faq-bubble-content {
    width: 40px !important;
    height: 40px !important;
  }
  
  .faq-bubble-content svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  .faq-lightbulb svg {
    width: 24px !important;
    height: 24px !important;
  }
  
  .faq-magnifying-glass svg {
    width: 32px !important;
    height: 32px !important;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .faq-animation-container {
    height: 280px !important;
  }
}

/* Features Section Enhanced Animations */
.features-section {
  position: relative;
}

/* Features Mesh Grid */
.features-mesh-grid {
  background-image: 
    linear-gradient(rgba(34, 211, 238, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: meshGrid 20s linear infinite;
  will-change: transform;
}

@keyframes meshGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Features Floating Shapes */
.features-floating-shapes {
  z-index: 1;
}

.float-shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(52, 211, 153, 0.15));
  backdrop-filter: blur(10px);
  will-change: transform;
}

.float-shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 5%;
  animation: floatShape 25s ease-in-out infinite;
  filter: blur(20px);
}

.float-shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 8%;
  animation: floatShape 30s ease-in-out infinite reverse;
  filter: blur(25px);
  animation-delay: 2s;
}

.float-shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation: floatShape 20s ease-in-out infinite;
  filter: blur(15px);
  animation-delay: 4s;
}

.float-shape-4 {
  width: 130px;
  height: 130px;
  top: 40%;
  right: 15%;
  animation: floatShape 28s ease-in-out infinite reverse;
  filter: blur(22px);
  animation-delay: 1s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg) scale(1.05);
    border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
  }
}

/* Features Light Rays */
.features-light-rays {
  z-index: 1;
}

.light-ray {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(34, 211, 238, 0.2),
    transparent
  );
  transform-origin: top;
  will-change: transform, opacity;
}

.light-ray-1 {
  left: 20%;
  animation: lightRay 8s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.light-ray-2 {
  left: 50%;
  animation: lightRay 10s ease-in-out infinite;
  animation-delay: 2s;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

.light-ray-3 {
  left: 80%;
  animation: lightRay 12s ease-in-out infinite;
  animation-delay: 4s;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}

@keyframes lightRay {
  0%, 100% {
    transform: rotate(-5deg) scaleY(0.8);
    opacity: 0.3;
  }
  50% {
    transform: rotate(5deg) scaleY(1);
    opacity: 0.6;
  }
}

/* Features Mouse Glow */
.features-mouse-glow {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(34, 211, 238, 0.15) 0%,
    rgba(52, 211, 153, 0.1) 30%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-200px, -200px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}

.features-section:hover .features-mouse-glow {
  opacity: 1;
}

/* Features Connection Lines */
.features-connection-lines {
  z-index: 1;
}

.features-connection-lines .connection-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 12s linear infinite;
  opacity: 0.3;
}

.features-connection-lines .connection-path:nth-child(2) {
  animation-delay: 2s;
}

.features-connection-lines .connection-path:nth-child(3) {
  animation-delay: 4s;
}

.features-connection-lines .connection-path:nth-child(4) {
  animation-delay: 6s;
}

/* Interactive card hover effects for features */
.features-section .card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
}

.features-section .card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(34, 211, 238, 0.2);
}

.features-section .card:hover::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.4), rgba(52, 211, 153, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
  animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive adjustments for features animations */
@media (max-width: 768px) {
  .features-mesh-grid {
    background-size: 30px 30px;
  }
  
  .float-shape {
    width: 60px !important;
    height: 60px !important;
    filter: blur(15px) !important;
  }
  
  .light-ray {
    width: 1px;
  }
  
  .features-connection-lines {
    opacity: 0.1;
  }
}
