#railgunChargeBarContainer {
    position: fixed;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background-color: rgba(255,255,255,0.1);
    border: 2px solid cyan;
    border-radius: 10px;
    overflow: hidden;
    z-index: 998;
}

#railgunChargeBar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, cyan, white);
    transition: width 0.05s linear;
}

#weaponWheel {
    position: fixed;
    bottom: 60vh;
    right: 30px;
    transform: scale(1.5);
    z-index: 996;
    pointer-events: none;
    display: none;
}

#weaponRadialIconsContainer {
    position: relative;
    width: 200px;
    margin: auto;
}

.weapon-icon.active {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: none;
}

.weapon-icon-container {
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
}

.weapon-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity:0.5
}

.weapon-slot-number {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 16px;
    height: 16px;
    font-size: 10px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    pointer-events: none;
}