body {
    background-color: #f5e7d3;

}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    min-height: 100vh;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.inventory-grid {
    display: grid;
    grid-template-columns: repeat(10, 50px);
    gap: 5px;
    padding: 15px;
    background-color: #2c2c2c;
    border: 2px solid #444;
    border-radius: 8px;
    max-width: fit-content;
}

.inventory-item {
    width: 50px;
    height: 50px;
    position: relative;
    border: 2px solid #555;
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inventory-item:hover {
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.inventory-item.filled {
    border-color: #666;
    background: linear-gradient(135deg, #4a4a4a 0%, #3c3c3c 100%);
}

.inventory-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.item-count {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    font-size: 10px;
    font-weight: bold;
    padding: 1px 4px;
    border-radius: 3px;
    line-height: 1;
    border: 1px solid #ffd700;
}

.item-quality-common { border-color: #9d9d9d; }
.item-quality-uncommon { border-color: #1eff00; }
.item-quality-rare { border-color: #0070dd; }
.item-quality-epic { border-color: #a335ee; }
.item-quality-legendary { border-color: #ff8000; }

