/* -------------------------------------------------------------
   Apraful Custom Premium Stylesheet
   Providing elegant selections, scrollbars, and focus rings.
------------------------------------------------------------- */

/* Custom Selection Highlight */
::selection {
    background-color: rgba(148, 91, 241, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background-color: rgba(148, 91, 241, 0.3);
    color: #ffffff;
}

/* Elegant, Sleek Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0316; /* Matches bg-brand-dark */
}

::-webkit-scrollbar-thumb {
    background: rgba(92, 27, 186, 0.4); /* brand-primary with transparency */
    border-radius: 9999px;
    border: 2px solid #0a0316;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 91, 241, 0.8); /* brand-accent */
}

/* Accessiblity Focus Ring Style */
*:focus-visible {
    outline: 2px solid #945bf1;
    outline-offset: 4px;
}

/* Glassmorphism Soft Hover Transition */
.backdrop-blur-xl {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
