::-webkit-scrollbar {
    width: 0;
}

.h-screen {
    height: initial;
}

@media (min-width: 1280px) {
    .h-screen {
        height: 90vh;
    }
}

.shadow-top {
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4);
}

html {
    scroll-behavior: smooth;
}

@keyframes gradient-shift {
    0%, 100% {
        opacity: 0.75;
    }
    50% {
        opacity: 1;
    }
}

.group:hover .group-hover\:opacity-100 {
    animation: gradient-shift 2s ease-in-out infinite;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

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

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