/* Custom Styles for P1 Vibes */

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0B162C; /* Primary Color */
}

::-webkit-scrollbar-thumb {
    background: #1A2F4C; /* Secondary Color */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6B35; /* Accent Color */
}

/* Animations that are complex for utility classes */
.animation-delay-2000 {
    animation-delay: 2s;
}
.animation-delay-4000 {
    animation-delay: 4s;
}

/* Smooth reveal effect utility (if needed via JS observer) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Glassmorphism utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
