/* styles.css */

/* Grund-Theme */
body {
  margin: 0;
  padding: 2rem;
  background: #0a0a0a;
  color: #ddd;
  font-family: sans-serif;
  text-align: center;
}

/* Header */
header h1 {
  margin-bottom: 0.5rem;
}
header h1 .site-link {
  color: #fff;
  font-size: 2.5rem;
  text-decoration: none;
  transition: transform 0.2s, text-shadow 0.2s;
}
header h1 .site-link:hover {
  cursor: pointer;
  transform: scale(1.05);
  text-shadow: 0 0 15px #9b30ff;
}

/* Top-Buttons */
.top-buttons {
  margin: 1rem 0 2rem;
}
.top-btn {
  display: inline-block;
  background: linear-gradient(135deg, #5e0a8a, #9b30ff);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #9b30ff;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255,255,255,0.8);
  box-shadow:
    0 4px 12px rgba(155,48,255,0.4),
    inset 0 0 2px rgba(255,255,255,0.2);
  transition: transform 0.15s ease-in-out, box-shadow 0.2s ease-in-out;
  margin: 0 0.5rem;
}
.top-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 16px rgba(155,48,255,0.6),
    inset 0 0 3px rgba(255,255,255,0.3);
}

/* Tabelle & Rest bleibt unverändert... */

/* Tabelle */
table {
  margin: 1.5rem auto;
  border-collapse: collapse;
  width: 90%;
  max-width: 900px;
  background: #1a1a1a;
  box-shadow: 0 0 15px rgba(155,48,255,0.5);
}
th, td {
  border: 1px solid #333;
  padding: 0.75rem;
}
th {
  background: #2a2a2a;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #ccc;
}

/* Gruppierungs-Header */
.group-header td {
  background: #2a2a2a;
  color: #fff;
  text-align: left;
  font-weight: bold;
  padding: 0.75rem;
  font-size: 1rem;
  border-top: 2px solid #9b30ff;
}

/* Game-Logo-Zelle */
.game-logo-cell {
  width: 60px;
  text-align: center;
  padding: 0.5rem;
}
.game-logo {
  max-width: 40px;
  max-height: 40px;
}

/* Status-Farben */
.online  { color: #0f0; font-weight: bold; text-shadow: 0 0 5px #0f0; }
.offline { color: #f00; font-weight: bold; text-shadow: 0 0 5px #f00; }

/* Connect-Button */
.connect-btn {
  display: inline-block;
  background: #3a0f5c;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 5px #9b30ff;
  box-shadow: 0 0 10px rgba(155,48,255,0.6);
  transition: transform 0.1s ease-in-out;
}
.connect-btn:hover {
  transform: scale(1.05);
}

/* Cache-Info mit Glow */
.cache-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #bbb;
  text-shadow: 0 0 8px #9b30ff;
}

/* Countdown */
#next-refresh {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #bbb;
  text-shadow: 0 0 8px #9b30ff;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #666;
}
footer a {
  color: #9b30ff;
  text-decoration: none;
  text-shadow: 0 0 5px #9b30ff;
}
footer a:hover {
  text-decoration: underline;
}

/* Rotes Herz mit Glow */
.heart {
  color: #e00;
  text-shadow: 0 0 8px #e00;
}
