/* =====================
   ONLINE / BOARDSTATS FINAL
===================== */

.gd-boardstats {
  max-width: 1200px;
  margin: 18px auto 0;
  color: var(--gd-text);
}

/* oberer Statistik-Kasten */
.gd-boardstats-box {
  min-height: 115px;
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 1.25fr;
  gap: 24px;
  padding: 18px 28px;
  background: rgb(5 13 26 / 92%);
  border: 1px solid rgba(194, 138, 98, 0.52);
  border-radius: 8px 8px 0 0;
  box-shadow:
    inset 0 0 0 1px rgba(194, 138, 98, 0.12),
    0 14px 35px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.gd-boardstats h3 {
  margin: 0 0 10px;
  color: var(--gd-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
}

.gd-online-text {
  margin: 0 0 12px;
  color: var(--gd-muted);
  font-size: 12px;
  line-height: 1.35;
}

.gd-online-avatars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gd-online-avatar img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(194, 138, 98, 0.65);
  box-shadow: 0 0 0 3px rgb(5 13 26 / 90%);
}

/* mittlere Legende */
.gd-online-list {
  padding-left: 24px;
  border-left: 1px dotted rgba(194, 138, 98, 0.45);
}

.gd-online-list h4 {
  margin: 0 0 9px;
  color: var(--gd-muted);
  font-size: 12px;
  font-weight: normal;
}

.gd-group-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gd-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgb(5 13 26 / 55%);
  border: 1px solid rgba(194, 138, 98, 0.3);
  border-radius: 999px;
  color: var(--gd-text);
  font-size: 12px;
  line-height: 1.2;
  cursor: help;
}

.gd-group i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.gd-city i { background: #c28a62; }
.gd-law i { background: #4f6d8c; }
.gd-business i { background: #b08d57; }
.gd-citizen i { background: #9e8d86; }
.gd-tourist i { background: #8fa6b8; }
.gd-underground i { background: #6f3c3c; }

/* rechter Statistikbereich */
.gd-forum-stats-box {
  padding-left: 24px;
  border-left: 1px dotted rgba(194, 138, 98, 0.45);
  position: relative;

  background:
    linear-gradient(
      to right,
      rgb(5 13 26 / 98%) 0%,
      rgb(5 13 26 / 94%) 48%,
      rgb(5 13 26 / 65%) 72%,
      rgb(5 13 26 / 15%) 100%
    ),
    url(../../../images/style/goldendaysnight/footerblume.png) right center / auto 115px no-repeat;
}

.gd-stat-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  max-width: 305px;
  margin-bottom: 6px;
  font-size: 12px;
}

.gd-stat-line span {
  color: var(--gd-muted);
}

.gd-stat-line strong,
.gd-forum-stats-box a {
  color: var(--gd-rose);
  text-decoration: none;
  font-weight: bold;
}

/* Geburtstage unter Statistik */
.gd-forum-stats-box h4 {
  margin: 12px 0 0;
  color: var(--gd-text);
  font-size: 15px;
}

/* unteres Panorama */
.gd-boardstats-banner {
  height: 135px;
  margin-top: 0;
  border-left: 1px solid rgba(194, 138, 98, 0.52);
  border-right: 1px solid rgba(194, 138, 98, 0.52);
  border-bottom: 1px solid rgba(194, 138, 98, 0.52);
  border-radius: 0 0 8px 8px;

  background:
    linear-gradient(
      to bottom,
      rgb(5 13 26 / 5%) 0%,
      rgb(5 13 26 / 18%) 55%,
      rgb(5 13 26 / 45%) 100%
    ),
    url(../../../images/style/goldendaysnight/footer.png) center center / cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.gd-boardstats-quote {
  color: var(--gd-rose);
  font-family: "Great Vibes", cursive;
  font-size: 25px;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.gd-boardstats-quote span {
  display: block;
  margin-top: 2px;
  font-family: Georgia, serif;
  font-size: 22px;
}

@media (max-width: 900px) {
  .gd-boardstats {
    margin: 25px 20px 0;
  }

  .gd-boardstats-box {
    grid-template-columns: 1fr;
  }

  .gd-online-list,
  .gd-forum-stats-box {
    border-left: 0;
    padding-left: 0;
  }

  .gd-forum-stats-box {
    background:
      linear-gradient(rgb(5 13 26 / 92%), rgb(5 13 26 / 92%)),
      url(../../../images/style/goldendaysnight/footermini.png) center / cover no-repeat;
  }
}