.tborder {
  width: 100%;
  background: var(--body);
  border: 1px solid var(--bordercolor);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  margin: 40px auto 20px;
  border-collapse: collapse;

}

/* Der ganze "Realm"-Bereich im Footer */

.realm-header {
  background-image: url(/images/pale/catbg.png);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 40px 30px;
  color: #e0d2bc;
  position: relative;
  border-top: 3px solid var(--bordercolor);
  border-bottom: 3px solid var(--bordercolor);
}
.realm-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.realm-header * {
  position: relative;
  z-index: 2;
}
.realm-header h2 {
  font-family: 'Uncial Antiqua', serif;
  font-size: 36px;
  margin: 0;
  text-shadow: 1px 1px 3px black;
}
.realm-header p {
  font-family: 'Georgia', serif;
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.9;
}

.forum_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background: var(--back);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.realm-icon {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.realm-icon img {
  width: 120px;
  height: 220px;
  border: 2px solid var(--bordercolor);
  background: #1a1510;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
  object-fit: cover;
}

.desc {
  flex: 3 1 300px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--txt);
}
.absent-users {
  font-size: 13px;
  margin-top: 15px;
  font-style: italic;
  color: #998a74;
}

/* Zitate Zitate und Zitate */



.quote-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  color: #cbb994;
  font-weight: bold;
}

.zitatbox {
  background: var(--back);
  padding: 12px 15px;
  border-left: 4px solid var(--bordercolor);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  color: #c9bca6;
  font-size: 13px;
  line-height: 1.5;
}

.zitatbox blockquote {
  font-style: italic;
  margin: 10px 0;
  padding-left: 10px;
  border-left: 2px solid #998a74;
}

.quote-meta {
  font-size: 12px;
  margin-bottom: 4px;
  color: #998a74;
}

.qdate {
  font-style: italic;
  opacity: 0.8;
  font-size: 11px;
  margin-left: 4px;
}

.zitathinweis {
  font-size: 11px;
  text-align: right;
  margin-top: 8px;
}
.zitathinweis a {
  color: #cbb994;
  text-decoration: none;
}
.zitathinweis a:hover {
  text-decoration: underline;
}

/* statistiken  */

.realm-stats {
  flex: 1 1 300px;
  font-size: 12px;
  padding: 10px 15px;
  background: var(--lightback);
  border-left: 2px solid var(--bordercolor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #c9bca6;
}

.stat-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  border-bottom: 2px solid var(--bordercolor);
  padding-bottom: 4px;
  margin-bottom: 5px;
  color: #cbb994;
}

.index_stats {
  line-height: 1.8;
  text-align: center;
  font-size: 12px;
  color: #998a74;
}

.index_stats u {
  text-decoration: none;
  border-bottom: 1px dashed #cbb994;
  margin-right: 6px;
}

.newest-soul {
  margin-top: 8px;
  font-style: italic;
  color: #c9bca6;
}


.catstats {
  background: none;
  text-align: center;
  font-size: 13px;
  color: #c9bca6;
  padding: 15px 0;
  border: none;
  font-style: italic;
}

/* nicht anfassen, bringt Ordnung rein */
.realm-icon,
.desc,
.realm-quotes,
.realm-stats {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .forum_wrap {
    flex-direction: column;
    align-items: center;
  }

  .realm-icon,
  .desc,
  .realm-quotes,
  .realm-stats {
    min-height: auto;
    width: 100%;
  }

  .realm-stats {
    border-left: none;
    border-top: 2px solid var(--bordercolor);
  }

  .realm-quotes {
    border-left: none;
    border-top: 2px solid var(--bordercolor);
  }
}

/* Bereichstitel */
.stat-title {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  color: #cbb994;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--bordercolor);
  padding-bottom: 5px;
}

/* User/Online-Block Hintergrund wie Zitatebox */
.user-block {
  background: #1A1510;
  padding: 15px 20px;
  border-left: 5px solid var(--bordercolor);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}


