/* ========== 🧱 Global Basics ========== */
body {
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  font-family: 'Courier New', Courier, monospace;
  color: #e4fff5;
}


/* ========== 🖥️ Dashboard Layout ========== */
.dashboard {
  text-align: center;
  padding: 40px 20px;
}


/* ========== 🎶 Titel & Untertitel ========== */
.title {
  font-size: 3em;
  color: #2fd9b9;
  margin-bottom: 0.2em;
  text-shadow: 0 0 10px #2fd9b9;
}

.subtitle {
  font-size: 1.2em;
  font-style: italic;
  color: #8de6c3;
  margin-bottom: 2em;
}


/* ========== 📦 Gruppenübersicht (Grid) ========== */
.group-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}


/* ========== 🎴 Einzelne Group Cards ========== */
.group-card {
  background-color: #1a1a1a;
  border: 2px solid #2fd9b9;
  box-shadow: 0 0 10px #2fd9b9;
  width: 180px;
  height: 200px;
  text-decoration: none;
  color: #c7f0d8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.group-card:hover {
  transform: scale(1.05);
}


/* ========== 🖼️ Group Thumbnail Backgrounds ========== */
.group-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: grayscale(60%) contrast(1.2);
}

/* Group Thumbnail */
.group-thumb.verivery {
  background-image: url('group/verivery.jpg');
}


/* ========== 🏷️ Textbereich in der Card ========== */
.group-card span {
  position: relative;
  z-index: 1;
  padding: 10px;
  background-color: rgba(26, 26, 26, 0.85);
  border-top: 1px solid #2fd9b9;
  width: 100%;
  font-size: 1.1em;
}

/* -----------------------------
   🔙 Zurück-Button (Retro Style)
------------------------------ */

.back-button {
  margin-bottom: 2em;
  text-align: left;
}

.back-button a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.9em;
  letter-spacing: 0.3px;
  color: #2fd9b9;
  background-color: #0e0e0e;
  border: 2px solid #2fd9b9;
  font-family: 'VT323', monospace;
  text-decoration: none;
  box-shadow:
    0 0 4px #2fd9b9,
    0 0 8px #2fd9b9,
    inset 0 0 4px #2fd9b9;
  position: relative;
  transition: all 0.3s ease;
}

.back-button a::before {
  content: ">";
  margin-right: 8px;
  color: #8de6c3;
}

.back-button a:hover {
  background-color: #2fd9b9;
  color: #0e0e0e;
  box-shadow:
    0 0 10px #2fd9b9,
    0 0 20px #2fd9b9,
    inset 0 0 10px #0e0e0e;
  text-shadow: 0 0 3px #0e0e0e;
}
