/* =========================
   Global
   ========================= */
:root {
  --primary: #a855f7;
  --secondary: #4f46e5;
  --accent-teal: #22d3ee;
  --text: #ffffff;
  --bg-dark: #000000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

/* Standard */
body {
  color: var(--text) !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #000;
  overflow-x: hidden;
}

/* Unterseiten Hintergrundbild */
body.with-bg {
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: -1;
}

/* Startseite mit Video: Overlay etwas schwächer */
body:not(.with-bg)::before {
  background: rgba(0, 0, 0, 0.45);
}

/* =========================
   Navbar
   ========================= */
.navbar-guild {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.96)) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.network-hint {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.navbar-brand {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-link i { font-size: 0.9rem; }

.nav-link.active { color: var(--accent-teal) !important; }

.dropdown-menu-dark {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.dropdown-item { color: #fff !important; }

/* =========================
   Startseiten Video
   ========================= */
.bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* =========================
   Layout
   ========================= */
.hero { padding: 5rem 0 4rem; }

.hero .container { max-width: 1200px; }

/* =========================
   Box Designs
   ========================= */
.hero-card,
.section-card,
.page-box {
  background: linear-gradient(145deg, rgba(15,23,42,0.96), rgba(6,12,30,0.96));
  border-radius: 24px;
  border: 1px solid rgba(148,163,184,0.4);
  color: #fff;
}

.hero-card {
  padding: 2.75rem;
  box-shadow:
    0 26px 80px rgba(15, 23, 42, 0.95),
    0 0 40px rgba(56, 189, 248, 0.25);
}

.section-card {
  padding: 2.3rem;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.9);
}

.page-box {
  padding: 2.4rem;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.9);
  max-width: 960px;
  margin: 3rem auto;
}

/* =========================
   Typo
   ========================= */
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-highlight {
  background: linear-gradient(90deg, var(--primary), var(--accent-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 0.98rem;
  color: rgba(229, 231, 235, 0.96);
  max-width: 34rem;
}

.page-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #fff !important;
}

.page-desc {
  opacity: 0.95;
  margin-bottom: 1.4rem;
  color: #fff !important;
}

p, h1, h2, h3, h4 { color: #fff !important; }

/* =========================
   Buttons
   ========================= */
.btn-primary-guild {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff !important;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.btn-primary-guild:hover { filter: brightness(1.05); }

.btn-outline-guild {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.btn-outline-guild:hover { background: rgba(255, 255, 255, 0.05); }

/* =========================
   Tabellen
   ========================= */
.table-dark { --bs-table-bg: transparent; color: #fff; }

.table-dark thead tr { border-bottom: 1px solid rgba(148,163,184,0.6); }

.table-dark tbody tr + tr { border-top: 1px solid rgba(30,64,175,0.5); }

/* =========================
   Footer
   ========================= */
.site-footer {
  background: rgba(0, 0, 0, 0.85);
  text-align: centerHook;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer a { color: #ffffff !important; }

/* =========================
   WoW Klassenfarben (Retail)
   ========================= */
.wow-class { font-weight: 800; }
.wow-warrior { color:#C79C6E; }
.wow-paladin { color:#F58CBA; }
.wow-hunter { color:#ABD473; }
.wow-rogue { color:#FFF569; }
.wow-priest { color:#FFFFFF; }
.wow-death-knight { color:#C41F3B; }
.wow-shaman { color:#0070DE; }
.wow-mage { color:#69CCF0; }
.wow-warlock { color:#9482C9; }
.wow-monk { color:#00FF96; }
.wow-druid { color:#FF7D0A; }
.wow-demon-hunter { color:#A330C9; }
.wow-evoker { color:#33937F; }

/* Rang-Badge */
.rank-badge{
  display:inline-flex;
  align-items:center;
  padding:.22rem .55rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.25);
  font-weight:800;
  font-size:.85rem;
}
.rank-gm { color:#ffd36b; }
.rank-offi { color:#9fe0ff; }
.rank-raider { color:#b8ffb8; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 992px) {
  .hero { padding-top: 4rem; }

  .hero-card, .section-card, .page-box {
    padding: 1.8rem;
    border-radius: 18px;
  }

  .page-box { margin-top: 2rem; }

  .hero-title { font-size: 2.4rem; }

  .network-hint { display: none; }
  .roster-name-link{
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.roster-name-link:hover{
  text-decoration: underline;
}

}
