html, body {
  overflow-x: hidden;
  max-width: 100%;
}
.gradient-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.smooth-scroll {
    scroll-behavior: smooth;
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#waPulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
}

@keyframes waPulseAnim {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

#starRating span {
  transition: color 0.2s;
}

#starRating span.active {
  color: gold;
}
