/* Custom styles to supplement Tailwind */

/* Hide scrollbar for cleaner look */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E6C6C6;
}

body {
    background-color: #1A1A1A;
    /* Ensure matches brand-dark */
}

/* Canvas responsiveness */
#hero-canvas {
    max-width: 100%;
    max-height: 100vh;
}

/* Text Reveal Animation Utility */
.char-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.char-reveal.active {
    opacity: 1;
    transform: translateY(0);
}