/* Custom styles for Neco Gold website */
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(36 219 251) !important;
}
/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

/* Responsive container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background:  rgb(36 219 251);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background:  rgb(36 219 251);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Button hover effects */
button {
  transition: all 0.3s ease;
}

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

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

/* Mobile menu styles */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
}