@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-out forwards;
}

@keyframes neonGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(173, 255, 47, 0.3), inset 0 0 10px rgba(173, 255, 47, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(173, 255, 47, 0.6), inset 0 0 15px rgba(173, 255, 47, 0.4);
    }
}

.neon-border-glow {
    animation: none;
    box-shadow: 0 0 0 1px rgba(173, 255, 47, 0.7), 0 0 16px rgba(173, 255, 47, 0.25);
}

.text-neon-glow {
    text-shadow: 0 1px 0 rgba(15, 44, 12, 0.55), 0 0 8px rgba(173, 255, 47, 0.22);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    background-color: #050811;
    color: white;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.hero-title {
    color: #adff2f;
    letter-spacing: 0;
    text-shadow: 0 2px 0 #245b18, 0 0 10px rgba(173, 255, 47, 0.28);
}

.brand-tile {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
}

.brand-tile-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
}


.slanted-badge {
    transform: none;
}
.slanted-badge > * {
    transform: none;
}
