/* Main styles for Flash USDT website */
/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #128c46;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0e6c34;
}
/* Smooth transitions */
a, button {
  transition: all 0.3s ease;
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeIn {
  animation: fadeIn 0.5s ease-out forwards;
}
/* Hero section wave */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}
.wave-bottom .shape-fill {
  fill: #FFFFFF;
}
/* Custom focus styles */
:focus {
  outline: 2px solid rgba(18, 140, 70, 0.5);
  outline-offset: 2px;
}
/* Mobile optimizations */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}