/* Tirradyn desktop cursors */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: url('/assets/cursors/small-shield.png') 8 8, auto;
    }

    a,
    button,
    .btn,
    input[type="submit"],
    input[type="button"],
    [role="button"] {
        cursor: url('/assets/cursors/small-sword.png') 2 2, pointer;
    }
}

/* Tirradyn scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #7e3a8a #09050d;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #09050d;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #9b5aa0, #54245f);
    border: 2px solid #d4af37;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d4af37, #8b4b96);
}

::-webkit-scrollbar-corner {
    background: #09050d;
}
