// PART 1

.inventory-sections {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 15px;
}

.weapon-inventory, 
.armor-inventory {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0,0,0,0.4);
    padding: 10px;
    border-radius: 5px;
}

.inventory-section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8em;
    margin-bottom: 10px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.weapon-slots, 
.armor-slots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.weapon-slot {
    border-color: rgba(255, 165, 0, 0.5); /* Orange-ish border for weapons */
}

.armor-slot {
    border-color: rgba(0, 128, 255, 0.5); /* Blue-ish border for armor */
}

.inventory-slot {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    background-color: rgba(0,0,0,0.5);
    box-shadow: 
        inset -2px -2px rgba(0,0,0,0.3), 
        inset 2px 2px rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.inventory-slot.filled {
    background-color: rgba(46, 204, 113, 0.2);
    border-color: var(--accent-color);
}

.inventory-slot img {
    max-width: 80%;
    max-height: 80%;
    image-rendering: pixelated;
}