/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0c0a09;
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}
/* Base styles */
body {
    /* Fallback for undefined color */
    background-color: #050404; 
    background: linear-gradient(135deg, #050404 0%, #0c0a09 50%, #1c1917 100%);
    background-attachment: fixed;
    min-height: 100vh;
}
/* Animation Utilities */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grids */
.grid > .reveal-on-scroll:nth-child(1) { transition-delay: 100ms; }
.grid > .reveal-on-scroll:nth-child(2) { transition-delay: 200ms; }
.grid > .reveal-on-scroll:nth-child(3) { transition-delay: 300ms; }
.grid > .reveal-on-scroll:nth-child(4) { transition-delay: 400ms; }
/* Glassmorphism helper */
.glass {
    background: rgba(28, 25, 23, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gradient overlay for sections */
.gradient-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(5, 4, 4, 0.8) 100%);
}

/* Amber glow effect */
.amber-glow {
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.15);
}
