/* * VGT DIAMOND EXTENSION
 * Handles complex gradients and animations not easily covered by atomic classes.
 */

:root {
    --vgt-neon: #ff4d00;
}

/* Specific button override needed for the 'active' state logic in JS */
.vgt-wave-btn {
    @apply px-4 py-2 rounded-lg transition-all border border-transparent hover:border-white/20 text-gray-400;
}

/* Background Radial Gradient */
.bg-radial-gradient {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

/* Draggable None Utility */
.draggable-none {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Scrollbar Hiding */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}