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

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

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

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

.casino-card {
  animation: fadeInUp 0.8s ease-out;
}

.review-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.review-card:nth-child(even) {
  animation-delay: 0.1s;
}

.review-card:nth-child(odd) {
  animation-delay: 0.2s;
}

.pros-column {
  animation: fadeInLeft 0.8s ease-out;
}

.cons-column {
  animation: fadeInRight 0.8s ease-out;
}

.bonus-banner {
  animation: fadeInUp 0.6s ease-out;
}

.author-card {
  animation: fadeInUp 0.8s ease-out;
}

.mobile-menu {
  animation: slideDown 0.3s ease-out;
}

.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn:active {
  transform: translateY(0);
}

.star {
  transition: all 0.2s ease;
}

.star:hover {
  transform: scale(1.2);
}

.review-expand,
.rating-details-btn,
.reply-btn {
  transition: all 0.3s ease;
}

.review-expand:hover,
.rating-details-btn:hover,
.reply-btn:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #00fbc8;
}

.vote-btn {
  transition: all 0.3s ease;
}

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

.floating-widget {
  transition: all 0.3s ease;
}

.floating-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-menu a,
.footer-section a {
  position: relative;
  overflow: hidden;
}

.nav-menu a:before,
.footer-section a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: #00fbc8;
  transition: left 0.3s ease;
}

.nav-menu a:hover:before,
.footer-section a:hover:before {
  left: 0;
}

.rating-fill {
  animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: 87%;
  }
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 251, 200, 0.1);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
