/* Custom styles for Bitay */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0F1A;
}

::-webkit-scrollbar-thumb {
    background: #00D4AA;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00B894;
}

/* Selection */
::selection {
    background: #00D4AA;
    color: #0A0F1A;
}

/* Focus styles */
*:focus {
    outline: 2px solid #00D4AA;
    outline-offset: 2px;
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.2s ease;
}

/* Prevent text selection on logo */
img[alt="Bitay"] {
    user-select: none;
    -webkit-user-select: none;
}
