/* ── Fußball-WM 2026 (11. Juni – 19. Juli 2026) ── */
:root {
  --primary:       #1B4F8A;
  --primary-dark:  #0D2E52;
  --primary-light: #EBF2FB;
  --bg:            #F5F8FC;
  --border:        #C5D8EE;
}

.gdn-nav { background: linear-gradient(135deg, #0D2E52 0%, #1B4F8A 100%) !important; }
.gdn-nav .navbar-brand,
.gdn-nav .nav-link { color: #D4A94A !important; }
.gdn-nav .nav-link:hover { color: #fff !important; }
.gdn-nav .nav-link.active { background: rgba(212,169,74,.2) !important; border-radius: 4px; }
.gdn-nav .gdn-logo       { color: #F5D78E !important; }
.gdn-nav .gdn-logo span  { color: #fff !important; }

/* ── Header Banner ── */
.gdn-theme-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1E3A 0%, #0D2E52 35%, #1B4F8A 65%, #0D2E52 100%);
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

/* Goldene Linie oben */
.gdn-theme-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #D4A94A 20%, #F5D78E 50%, #D4A94A 80%, transparent 100%);
}

/* Goldene Linie unten */
.gdn-theme-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #D4A94A 20%, #F5D78E 50%, #D4A94A 80%, transparent 100%);
}

.gdn-theme-slogan {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  color: #D4A94A;
  text-align: center;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(212,169,74,.3);
}
.gdn-theme-slogan::before { content: '⚽  '; font-style: normal; }
.gdn-theme-slogan::after  { content: '  ⚽'; font-style: normal; }

.gdn-theme-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(212,169,74,.55);
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Goldener Akzentstreifen an Karten */
.gdn-card { border-top: 2px solid #D4A94A !important; }
.gdn-widget-header { border-left: 3px solid #D4A94A !important; }
