#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: -50px;
    right: 7%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    z-index: 996;
    pointer-events: none;
    display: none;
}

#weaponRadialIconsContainer {
    position: relative;
    width: 300px; /* ou ajuste selon besoin */
    height: 300px;
    margin: auto;
}


.weapon-icon.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.4);
    filter: none;
}

.weapon-icon-container {
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
}

.weapon-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.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;
}

.equipment-slot.active-weapon::after {
    content: "⚡";
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 18px;
    color: gold;
    animation: pulseIcon 1.5s infinite;
}