.start-screen {
  padding: 20px;
  height: calc(100vh - 40px);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.metro-grid {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  align-content: flex-start;
}

.tile {
  width: 150px;
  height: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
  animation: tileAppear 0.3s ease-out;
}

.tile.large {
  width: 310px;
}

.tile img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.tile span {
  font-size: 14px;
  text-align: center;
}

.tile:hover {
  transform: scale(1.05);
}

@keyframes tileAppear {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}