/* FIXED TOP-BAR */
.dc-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 6px 20px;
  background: rgb(105 105 105 / 31%);
  border-bottom: 1px solid rgb(105 105 105 / 31%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  font-size: 12px;
}

/* Content nach unten schieben, damit die Bar nichts überdeckt */
body {
  padding-top: 80px; /* Höhe ggf. anpassen */
}

/* LINKER BLOCK */
.dc-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.dc-avatar {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid #2d0105b5;
}
.dc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-left-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

/* Panel-Links (UserCP, Alerts, ModCP, AdminCP) */
.dc-panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Listen-Styles neutralisieren (MyBB wirft oft <ul><li> rein) */
.dc-panel-links,
.dc-panel-links ul,
.dc-panel-links li,
.dc-quick-links,
.dc-quick-links ul,
.dc-quick-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dc-panel-links a {
  font-size: 11px;
}

/* Buttons für Szenen & SMS */
.dc-action-buttons {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

/* Button-Style */
.dc-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(135deg, #2d0105b5 0%, #4d4748 100%);
  box-shadow: 0 0 6px rgba(0,0,0,0.6);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .2s ease, background .2s ease;
  /* globale a-Styles neutralisieren */
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-background-clip: border-box !important;
}
.dc-btn:hover {
  background: linear-gradient(135deg, #2d0105 0%, #666666 100%);
  box-shadow: 0 0 10px rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.dc-btn .material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 20;
  font-size: 16px;
}

/* MITTE: Wappen */
.dc-topbar-center {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
}
.dc-crest {
  position: absolute;
  z-index: 7;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 78px;
  background: url(../../../images/styles/nowornever/wappen.png) center/cover no-repeat;
}

/* RECHTS: schnelle Links + Scroll-Pfeile */
.dc-topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 10px;
}

.dc-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.dc-quick-links a {
  font-size: 14px;
  /* hier dürfen deine globalen a-Verläufe greifen */
}

/* Alerts hervorheben (MyAlerts) – Klassen je nach Plugin evtl. anpassen */
.dc-quick-links #myalerts_headericon a,
.dc-quick-links a.myalerts_unread {
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c62828 0%, #ff8a65 100%);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-background-clip: border-box !important;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* optional: Puls-Effekt für ungelesene Alerts */
@keyframes dc-alert-pulse {
  0%   { box-shadow: 0 0 6px rgba(255,255,255,0.2); transform: translateY(0); }
  50%  { box-shadow: 0 0 10px rgba(255,255,255,0.5); transform: translateY(-1px); }
  100% { box-shadow: 0 0 6px rgba(255,255,255,0.2); transform: translateY(0); }
}
.dc-quick-links a.myalerts_unread {
  animation: dc-alert-pulse 1.8s infinite;
}

/* Scroll-Pfeile rechts */
.dc-scroll-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.dc-scroll-btn {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  display: inline-grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease, box-shadow .2s ease;
}
.dc-scroll-btn:hover {
  background: rgba(45, 1, 5, 0.85);
  box-shadow: 0 0 6px rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.dc-scroll-btn svg {
  display: block;
}

/* Responsiv etwas abspecken */
@media (max-width: 900px) {
  .dc-topbar {
    padding: 6px 10px;
    gap: 10px;
  }
  .dc-topbar-center {
    display: none; /* Wappen ausblenden, wenn es zu eng wird */
  }
}

/**/
.nameforum{
	position:relative;
	margin-top: -150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-align: center;
}
h11{
    font-size: 83px;
	font-family: var(--font-base2);
}
 h33{  
	 font-family: var(--font-base6);
	 padding:2px;
	 color:#fff;
	 letter-spacing:2px;
	 line-height:10px;
	 margin-top: -40px;
}

#headercrossevil{ 
	position: relative;
    border: 1px solid #2d0105b5;
    outline: 1px solid #2d0105b5;
    background-color: #2d0105b5;
    background-image: url(https://devilscrossroads.gedankenschloss.de/images/styles/nowornever/platzhalter.png);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 2;
    align-items: center;
    justify-content: center;
    padding: 20px;
	min-height:100px;
}
