/* Custom Styles for Z1A Production */

.no-scrollbar, .scrollbar-hide::-webkit-scrollbar { display: none; }
.no-scrollbar, .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton Loading Effect */
.skeleton {
    background: linear-gradient(90deg, #18181b 25%, #27272a 50%, #18181b 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Form Styles */
input:focus, textarea:focus {
    outline: none;
    border-color: #FACC15 !important;
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}
