/* Custom Glowing & Transition Styles */
.brand-glow {
    box-shadow: 0 0 25px rgba(143, 199, 63, 0.25);
}
.brand-glow-lg {
    box-shadow: 0 0 40px rgba(143, 199, 63, 0.35);
}
.brand-border-glow:hover {
    border-color: #8fc73f;
    box-shadow: 0 0 15px rgba(143, 199, 63, 0.3);
}
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, #8fc73f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glass-panel {
    background: rgba(18, 19, 23, 0.85);
    backdrop-filter: blur(12px);
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0c;
}
::-webkit-scrollbar-thumb {
    background: #23262d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8fc73f;
}