/* Modernized UI Fixes & Utilities */
.fw-black {
    font-weight: 900 !important;
}

.ls-1 {
    letter-spacing: 1px !important;
}

.ls-2 {
    letter-spacing: 2px !important;
}

.ls-3 {
    letter-spacing: 3px !important;
}

.extra-small {
    font-size: 0.7rem !important;
}

.text-white-20 {
    color: rgba(255, 255, 255, 0.2) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.border-white-5 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.z-100 {
    z-index: 10000 !important;
}

.pointer-events-none {
    pointer-events: none !important;
}

/* Custom Animations */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.glow-animation {
    animation: pulse-glow 2s infinite;
}

/* Scrollbar Fixes */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px !important;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #0b1120 !important;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #d97706 !important;
    border-radius: 4px !important;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #f59e0b !important;
}

/* Mobile Floating Navigation Global Fixes */
@media (max-width: 991px) {
    body {
        padding-bottom: 100px !important;
    }

    .bottom-menu {
        display: none !important;
    }

    /* Ensure content doesn't get hidden behind the floating bar */
    .wrapper {
        margin-bottom: 20px !important;
    }
}

/* Character Glow Effects */
.purple-neon-glow {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5), 0 0 20px rgba(168, 85, 247, 0.3);
}

.cyan-neon-glow {
    text-shadow: 0 0 10px rgba(26, 213, 238, 0.5), 0 0 20px rgba(26, 213, 238, 0.3);
}

/* Custom Switches */
.custom-switch-gold .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    width: 3.5em;
    height: 1.75em;
}

.custom-switch-gold .form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.custom-switch-gold .form-check-input:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.3);
}