:root {
  --primary: #FF3366;
  --secondary: #2C3E50;
  --accent: #00C9A7;
  --dark: #17252A;
  --light: #FAFAFA;
}

.custom-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.animated-gradient {
  background: linear-gradient(-45deg, var(--primary), var(--accent));
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

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

.hover-scale {
  transition: transform 0.3s;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.primary-button {
  background-color: var(--primary);
  color: white;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.feature-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.accent-border {
  border-left: 4px solid var(--accent);
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} 