/* Überschrift */
.gs-lb-title {
  text-align: center;
  margin: 0 0 1em;
  font-size: 1.4em;
  font-weight: bold;
  color: #fff;
}

/* Skeleton Loader */
.gs-lb-skeleton .skeleton-item {
  height: 40px;
  margin-bottom: 10px;
  background: linear-gradient(90deg,#333 25%,#444 50%,#333 75%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Leaderboard */
.gs-leaderboard-list {
  list-style: none;
  padding: 0;
}
.gs-lb-item {
  background: #1a1a1a;
  color: white;
  padding: 0.8em 1em;
  margin-bottom: 0.5em;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gs-badge {
  background: #444;
  padding: 2px 8px;
  margin-left: 8px;
  border-radius: 6px;
  font-size: 0.75em;
  color: #fff;
  text-transform: uppercase;
}

/* Legende (mobilfreundlich) */
.gs-legende {
  margin-top: 1em;
  font-size: 0.85em;
  color: #bbb;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gs-legende span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Menü */
.gs-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1em;
  margin: 2em 0;
}
.gs-menu-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  background: #2e5d76;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.gs-menu-card:hover {
  background: #3d7a9c;
}

/* Hinweis unter Menü */
.gs-menu-hint {
  margin: 1em 0 2em;
  text-align: center;
  color: #ccc;
  font-size: 0.95em;
}
.gs-hint-link {
  display: inline-block;
  margin-top: 0.5em;
  padding: 0.4em 0.8em;
  background: #444;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.gs-hint-link:hover {
  background: #666;
}

