/* General body styles */
body {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('img/epic.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    overflow: visible;
}

/* Inventory grid styling */
.inventory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.inventory_item {
    position: relative;
    width: calc(33.333% - 20px);
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 0;
    border-radius: 10%;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.463);
}

.inventory_item img {
    width: 50%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 70%, transparent 100%);
}

.inventory_item:hover {
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* Responsive design for inventory items */
@media (max-width: 768px) {
    .inventory_item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .inventory_item {
        width: calc(100% - 20px);
    }
}

/* Store location styling */
.storeLocation {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 10%;
}

.container {
    min-width: 80%;
}