:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 17%;
  --primary: 251 100% 41%;
  --primary-foreground: 0 0% 100%;
  --muted: 228 33% 97%;
  --muted-foreground: 227 20% 53%;
  --secondary: 189 100% 50%;
  --radius: 0.5rem;
}

/* Animation classes */
.animate-bounce-1 {
  animation: bounce-1 6s infinite;
}

@keyframes bounce-1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.animate-bounce-2 {
  animation: bounce-2 6s infinite;
}

@keyframes bounce-2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px) translateX(10px);
  }
}

.bg-product-line {
  background-image: radial-gradient(72.37% 308.04% at 50.15% 137.5%, #00d8ff 0, rgba(0, 130, 153, 0) 100%);
}

.bg-join-button {
  background-image: linear-gradient(120deg, #00b8f9 -4.5%, #006aec 107.53%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .title-1 {
    font-size: 42px;
  }
  
  .title-2 {
    font-size: 36px;
  }
  
  .paragraph-base {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero section enhancements */
.hero {
  background-image: linear-gradient(120.01deg, #00B8F9 -4.5%, #006AEC 107.53%);
  color: white;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Card hover effects */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Button styles */
.btn-primary {
  background-image: linear-gradient(120deg, #00b8f9 -4.5%, #006aec 107.53%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 106, 236, 0.3);
}

/* Image grid animations */
.image-grid img {
  transition: transform 0.5s ease;
}

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

/* Network section styles */
.network-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.network-logos img {
  height: 64px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.network-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Footer enhancements */
footer {
  background-image: linear-gradient(120.01deg, #006AEC -4.5%, #003B82 107.53%);
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary);
}