#profileScreen {
  padding: 20px;
  color: white;
}

.profileTop {
  background-color: #222;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.xpBarContainer {
  width: 100%;
  height: 14px;
  background-color: #555;
  border-radius: 7px;
  overflow: hidden;
  margin: 8px 0;
}

.xpBarFill {
  height: 100%;
  background-color: #00ffcc;
  width: 0%;
}

.profileStats, .profileInventory {
  background-color: #222;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.profileStats ul {
  list-style: none;
  padding: 0;
}

.profileStats li {
  padding: 4px 0;
}

.inventoryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.inventoryItem {
  background-color: #333;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.profileMainGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.profileLeft {
  flex: 2;
  min-width: 300px;
}

.profileInventory {
  flex: 1;
  min-width: 250px;
}


@media (max-width: 500px) {
  #profileScreen {
    padding: 10px;
  }

  .profileTop,
  .profileStats,
  .profileInventory {
    padding: 10px;
    margin-bottom: 15px;
  }

  .profileMainGrid {
    flex-direction: column;
  }

  .inventoryGrid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }

  .inventoryItem {
    padding: 8px;
  }
}
