/* Genosm Static Pages - Additional Styles */

/* Custom animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Selection styling */
::selection {
    background-color: rgba(255, 153, 51, 0.3);
}

/* Prose styling for legal pages */
.prose {
    max-width: 65ch;
}

.prose h2 {
    scroll-margin-top: 2rem;
}

.prose a {
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

/* Grainy texture overlay */
.grainy-bg {
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
}

/* Custom gradient text */
.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button hover effects */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Card hover effects */
.card-hover:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}