* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Courier New', monospace;
  color: white;
  overflow: hidden;
}

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  z-index: 10;
  pointer-events: none;
}

.grid {
  display: grid;
  height: 100vh;
  width: 100vw;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  grid-template-rows: repeat(auto-fit, minmax(50%, 1fr));
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

/* Hover effect */
.card:hover {
  background-color: white !important;
  color: black;
  transform: scale(1.01);
  z-index: 5;
}

/* Game-specific background colors */
.Shop {
  background-color: #eb7200;
}

.Info {
  background-color: #292b2d;
}

.TGC   {
  background-color: #0004ff;
}

.Discord   {
 background-color: #7289da;
}
