/* ================================
   DIGITAL UNDERGROUND AI — CYBERPUNK NEON THEME
   LEVEL 3 — ENERGIZED NEON GLOW (BLUE + PURPLE)
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
:root {
  --bg: #f4f4f6;
  --bg-alt: #ffffff;
  --accent-blue: #2b2b2b;
  --accent-cyan: #1a1a1a;
  --accent-purple: #000000;
  --accent-purple-strong: #000000;
  --text: #0a0a0a;
  --muted: #4a4a4a;
  --card-bg: #ffffff;
  --border: rgba(0,0,0,0.15);
  --radius-xl: 24px;
  --shadow-neon: 0 0 0 transparent;
  --shadow-neon-blue: 0 0 0 transparent;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
}

/* GLOBAL RESET --------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f7 100%);
  color: var(--text);
  position: relative;
}

/* Eye-Grafik zentriert im Hintergrund sichtbar */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('./images/image_eye.png') no-repeat center 30vh;
  background-size: clamp(360px, 52vw, 560px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
}

/* LANGUAGE SWITCH ------------------------------------------------ */
.lang-switch {
  position: absolute;
  top: 22px;
  right: 30px;
  font-size: 14px;
  z-index: 999;
}

.lang-switch a {
  color: var(--accent-purple);
  text-decoration: none;
  margin: 0 4px;
  transition: 0.25s;
}

.lang-switch a:hover {
  color: var(--accent-blue);
  text-shadow: var(--shadow-neon-blue);
}

.lang-switch .active-lang {
  color: #fff;
  text-shadow: var(--shadow-neon);
  font-weight: 600;
}

/* HERO SECTION --------------------------------------------------- */

.hero {
  padding: 4rem 1.5rem 2rem;
  background: linear-gradient(to bottom,
      rgba(110, 80, 255, 0.12),
      rgba(0, 0, 0, 0));
  border-bottom: 1px solid rgba(140, 120, 255, 0.15);
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
}



/* HEADLINE – Modern Futuristic */
h1 {
  font-family: "Anton", sans-serif !important;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin: 0 0 1.2rem 0;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
}

/* AI / WATCH Rot färben */
h1 .ai-red {
  color: #c62828 !important;
  /* dunkles Rot – gleich wie Score */
  border-bottom: 3px solid #c62828;
  padding-bottom: 3px;
  display: inline-block;
}

h1 .brand-watch {
  color: #c62828;
}

.subtitle {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.75rem;
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.back-home-btn:hover {
  color: #c62828;
}

.report-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px auto 8px;
  padding: 0.45rem 1rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  background: #c62828;
}

/* SCANLINE EFFECT ------------------------------------------------ */
.cyber-scan {
  position: relative;
  overflow: hidden;
}

.cyber-scan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 4px);
  animation: scanMove 7s linear infinite;
  pointer-events: none;
}

@keyframes scanMove {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* HERO BUTTONS --------------------------------------------------- */

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions a {
  position: relative;
  padding: 0.75rem 1.8rem;
  text-decoration: none;
  color: #e9ecff;
  font-size: 0.95rem;
  border: none;
  background: transparent;
  backdrop-filter: blur(4px);
  transition: 0.2s;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-actions a::before,
.hero-actions a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  color: #000;
  text-shadow: none;
}

.hero-actions a::before {
  content: "⟦";
  left: 0px;
}

.hero-actions a::after {
  content: "⟧";
  right: 0px;
}

.hero-actions a:hover {
  color: var(--accent-purple-strong);
  text-shadow: 0 0 15px var(--accent-purple);
  transform: translateY(-2px);
}


/* SECTION STANDARD ---------------------------------------------- */
.section {
  padding: 3rem 1.5rem;
}

.section h2 {
  max-width: 900px;
  margin: 0 auto 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  text-shadow: none;
  letter-spacing: 0.08em;
  font-family: "Anton", sans-serif !important;
}

/* Desktop: Überschriften etwas schlanker halten */
/* Desktop: Überschriften sauberer rendern */
@media (min-width: 851px) {
  h1 {
    /* Anton ist nativ schon fett. Keine künstliche Fettschrift erzwingen! */
    font-weight: 400;
    /* Etwas mehr Abstand auf großen Screens sieht edler aus */
    letter-spacing: 0.1em;
  }

  .section h2 {
    font-weight: 400;
    letter-spacing: 0.09em;
  }
}

.section-text {
  max-width: 900px;
  margin: 0.75rem auto 1.4rem;
  line-height: 1.75;
  color: var(--muted);
}

/* CARD ----------------------------------------------------------- */

.card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 1.7rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  backdrop-filter: none;
  transition: 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-neon);
  transform: translateY(-4px);
}

/* CARDS GRID LAYOUT (3 Columns Desktop → 2 Tablet → 1 Mobile) */
.cards {
  max-width: 1120px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* 2 Columns auf Tablets */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 1 Column auf Handy */
@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* TABLE ---------------------------------------------------------- */

.table-container {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  backdrop-filter: none;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

@media (min-width: 769px) {
  .du-table {
    width: auto !important;
    max-width: 1100px !important;
  }
  .du-table th,
  .du-table td {
    white-space: nowrap;       /* keep desktop look */
  }
}

.du-table {
  width: max-content;
  border-collapse: collapse;
  font-size: 15px;
}

.du-table thead {
  background: #eaeaea;
}

.du-table th {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: #000;
  cursor: pointer;
  text-shadow: none;
}

.du-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.du-table tr:hover td {
  background: rgba(140, 110, 255, 0.08);
}

/* TREND COLORS --------------------------------------------------- */

.trend-green { color: #0b7a33 !important; text-shadow: none; }
.trend-red { color: #b30021 !important; text-shadow: none; }
.trend-gray { color: #555 !important; opacity: 0.8; }

/* MONO FONT FOR NUMBERS ------------------------------------------ */

.cyber-mono {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* FOOTER --------------------------------------------------------- */

.footer {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  opacity: 0.85;
  font-size: 0.85rem;
}

/* NEWS GRID (3 Columns → responsive) */
/* NEWS GRID (3 Columns → responsive) */
.news-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  justify-items: stretch;
}

/* ===========================================================
   CYBERPUNK NEWS CARDS — NEON STYLE
   (für NEURALNETWATCH)
   =========================================================== */

.news-item {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: 0.25s ease-in-out;
  backdrop-filter: none;
}

/* Neon Hover Glow */
.news-item:hover {
  border-color: rgba(0,0,0,0.4);
  background: #fafafa;
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0,0,0,0.1);
}

/* Titel-Link */
.news-item h3 a {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #000 !important;
  text-shadow: none;
}

.news-item h3 a:hover {
  color: #444 !important;
  text-shadow: none;
}

/* Meta Text */
.news-meta {
  font-size: 13px;
  margin-top: 6px;
  opacity: 0.85;
  color: var(--muted);
}

/* Subtle scanline effect */
.news-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 4px);
  pointer-events: none;
  opacity: 0.4;
}


/* Safari Safe-Area Fix */
body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* Damit absolut nichts Weiß bleibt */
* {
  background-clip: border-box;
}



/* ============================================================
   CYBERPUNK VERTICAL DATA PARTICLES (Neon-Datenpunkte)
   Wandernde Energieimpulse – 100% CSS
   ============================================================ */

.data-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

/* Einzelner Partikel */
.data-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #000;
  opacity: 0.06;
  filter: blur(2px);
  animation: particleMove 6s linear infinite;
}

/* Random Positionen */
.data-particles span:nth-child(1) {
  left: 10%;
  animation-delay: 0.1s;
}

.data-particles span:nth-child(2) {
  left: 22%;
  animation-delay: 1.2s;
}

.data-particles span:nth-child(3) {
  left: 35%;
  animation-delay: 0.7s;
}

.data-particles span:nth-child(4) {
  left: 49%;
  animation-delay: 2.2s;
}

.data-particles span:nth-child(5) {
  left: 63%;
  animation-delay: 1.6s;
}

.data-particles span:nth-child(6) {
  left: 78%;
  animation-delay: 0.4s;
}

.data-particles span:nth-child(7) {
  left: 88%;
  animation-delay: 2.9s;
}

/* Animation: von unten nach oben, flackern, glühen */
@keyframes particleMove {
    0% {
      opacity: 0;
      transform: translateY(110vh) scale(0.4);
      /* ganz unten starten */
    }

    10% {
      opacity: 1;
      transform: translateY(80vh) scale(0.7);
    }

    20% {
      opacity: 0.5;
      filter: blur(3px);
    }

    50% {
      opacity: 0.8;
      filter: blur(1px);
    }

    80% {
      opacity: 0.4;
    }

    100% {
      opacity: 0;
      transform: translateY(-60vh) scale(0.3);
      /* ganz nach oben raus */
    }
  }

    .table-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      /* smoother scrolling on iPhone */
    }
  
    .du-table {
      width: auto;
      max-width: 100%;
    }
    .du-table th,
    .du-table td {
      white-space: nowrap;
      /* verhindert Umbruch */
      padding: 8px 12px;
      font-size: 14px;
    }
    

/* ======================================
   FINAL MOBILE FIX FOR THE TABLE
   ====================================== */

@media (max-width: 768px) {

  /* Container scroll */
  .table-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: block !important;
  }

  /* Make table wider than screen */
  .du-table {
    width: max-content !important;
    min-width: 720px !important;
    /* genug für alle Spalten */
  }

  /* ALLE SPALTEN dürfen umbrechen */
  .du-table th,
  .du-table td {
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* OPTIONAL: Firmenname enger setzen */
  .du-table td:nth-child(2) {
    max-width: 160px !important;
  }
}


.fi {
  margin-right: 8px;
  border-radius: 3px;
}


/* === TOP 3 LEADERS CARDS === */
.leaders-grid {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.leader-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1.4rem 1.8rem;
  border-radius: 14px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.25s;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.leader-rank {
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: none !important;
  color: #111 !important;
  margin-bottom: 0.4rem;
}

.leader-model {
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: none !important;
  color: #111 !important;
}

.leader-company {
  opacity: 0.65;
  margin-top: 0.2rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  text-shadow: none !important;
  color: #111 !important;
}

.leader-score {
  font-size: 1.3rem;
  font-weight: bold;
  text-shadow: none !important;
  color: #111 !important;
  margin-top: 0.4rem;
}

/* Score main number */
.score-value {
  font-size: 1.15rem;
  /* kleiner als vorher */
  font-weight: 700;
  color: #c62828;
  text-shadow: none !important;
}

/* /100 small suffix */
.score-max {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-left: 4px;
  position: relative;
  top: -1px;
  text-shadow: none !important;
  color: #777;
}

/* New Power Score label */
.score-label {
  margin-top: 2px;
  font-size: 0.75rem;
  opacity: 0.8;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #444;
  text-shadow: none !important;
  visibility: visible !important;
}

.disclaimer-text {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(201, 26, 26, 0.908);
  margin-top: 8px;
  margin-bottom: 0;
  font-family: var(--font-mono);
}

/* === CREATOR TRENDS GRID === */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.creator-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(120, 200, 255, 0.25);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 0 14px rgba(100, 150, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: 0.2s;
}

.creator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(120, 200, 255, 0.45);
}

.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.creator-score {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.creator-summary {
  margin: 0.8rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 50px;
}

.creator-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.creator-link {
  display: block;
  margin-top: 1rem;
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 600;
}

.creator-link:hover {
  color: var(--accent-cyan);
  text-shadow: var(--shadow-neon);
}

/* ===========================================
   MOBILE NOTFALL-LÖSUNG (Holzhammer)
   =========================================== */

/* Desktop: Menü verstecken */
.hamburger.mobile-only {
  display: none;
}

@media (max-width: 850px) {

  /* 1. Desktop Links ausblenden */
  .nav-links.desktop-only {
    display: none !important;
  }

  /* 2. Nav Container aufräumen */
  .nav {
    display: block;
    /* Kein Flexbox-Chaos mehr */
    height: 60px;
    /* Platzhalter-Höhe */
    position: relative;
    /* Wichtig für Absolute Positionierung */
  }

  /* 3. Hamburger: Hart nach rechts kleben */
  .hamburger.mobile-only {
    display: block;
    position: absolute;
    /* Nimm es aus dem Fluss raus */
    right: 20px;
    /* Klebe 20px vom rechten Rand */
    top: 5px;
    /* Klebe 5px von oben */

    font-size: 2.2rem;
    color: #000;
    cursor: pointer;
    text-shadow: none;
  }

  /* 4. Das Menü selbst */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.15);
    padding: 1rem 1.1rem;
    border-radius: 10px;
    width: calc(100% - 32px);
    max-width: 360px;
    margin: 20px auto 0 auto;
    /* Dezenter Abstand nach oben */
    text-align: center;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    z-index: 999;
  }

  .mobile-menu a {
    color: #000;
    text-decoration: none;
    margin: 0.6rem 0;
    font-size: 1.05rem;
    display: block;
    padding-bottom: 0.35rem;
  }
}

/* DESKTOP */
@media (min-width: 851px) {

  /* Desktop keeps full nav */
  .hamburger.mobile-only,
  #mobile-menu {
    display: none !important;
  }
}
/* ===========================================
   GLOBAL NAVIGATION (DESKTOP + MOBILE)
   =========================================== */

/* ===========================================
   GLOBAL NAVIGATION (DESKTOP + MOBILE)
   =========================================== */

/* Desktop navigation container */
.nav {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

/* Desktop links - HIER IST DER FIX FÜR ABSTAND */
.nav-links {
  list-style: none;
  display: flex;
  gap: 3.5rem;
  /* Viel Platz für die Klammern */
  padding: 0;
  margin: 0;
  align-items: center;
}

/* Der Link-Text: Weiss und scharf (EDEL) */
.nav-links li a {
  color: #000;
  text-decoration: none;

  /* HIER ÄNDERN: Statt 700 oder 500 auf 400 (normal) setzen! */
  font-weight: 400;

  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;

  /* HIER ÄNDERN: Etwas mehr Abstand, damit die kleine Schrift lesbar bleibt */
  letter-spacing: 0.08em;

  font-family: "Anton", sans-serif;
}

/* Die Klammern: Türkis und leuchtend */
.nav-links li a::before,
.nav-links li a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  text-shadow: none;
  font-family: monospace;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Linke Klammer */
.nav-links li a::before {
  content: "[";
  left: -20px;
}

/* Rechte Klammer */
.nav-links li a::after {
  content: "]";
  right: -20px;
}

/* Hover Effekt */
.nav-links li a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.nav-links li a:hover::before,
.nav-links li a:hover::after {
  color: var(--accent-purple);
  text-shadow: 0 0 12px var(--accent-purple);
}


/* ===========================================
   MOBILE NAVIGATION (LINKS + MENÜ TEXT)
   =========================================== */

/* Desktop: Menü verstecken */
.hamburger.mobile-only {
  display: none;
}

@media (max-width: 850px) {

  /* 1. Desktop Links ausblenden */
  .nav-links.desktop-only {
    display: none !important;
  }

  /* 2. Nav Container */
  .nav {
    display: block;
    height: 60px;
    position: relative;
  }

  /* 3. Hamburger: Jetzt LINKS kleben */
  .hamburger.mobile-only {
    display: flex;
    align-items: center;
    gap: 10px;

    position: absolute;
    left: 20px;
    /* HIER: Links statt Rechts */
    top: 5px;
    /* Höhe anpassen */

    font-size: 2.2rem;
    /* Icon Größe */
    color: #000;
    cursor: pointer;
    text-shadow: none;
    z-index: 200;
    /* Damit es immer oben liegt */
  }

/* 4. Das Wort: Standard ist Englisch (MENU) */
  .hamburger.mobile-only::after {
    content: "MENU";     /* Standard Englisch */
    font-size: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    letter-spacing: 1px;
    padding-top: 4px;
  }

    /* 4. Das Wort: Standard ist Englisch (MENU) */
    .hamburger.mobile-only::after {
      content: "MENU";
      /* Standard Englisch */
      font-size: 1rem;
      font-family: 'JetBrains Mono', monospace;
      font-weight: bold;
      letter-spacing: 1px;
      padding-top: 4px;
    }
  
    /* 4b. Wenn JS sagt: "Es ist Deutsch", dann überschreibe es */
    body.lang-de .hamburger.mobile-only::after {
      content: "MENÜ";
      /* Deutsch Override */
    }

  /* 5. Falls das Logo im Weg ist: Logo auf Handy ausblenden? */
  /* Wenn du das Logo behalten willst, lösche diesen Block: */
  .flex.items-center.gap-3 h1 {
    /* Wir machen die Schrift vom Logo auf Handy kleiner, damit Platz ist */
    font-size: 1.2rem !important;
    margin-left: 120px;
    /* Platz für das Menü schaffen */
  }

  /* 6. Das Menü selbst */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.15);
    padding: 1rem 1.1rem;
    border-radius: 10px;
    width: calc(100% - 32px);
    max-width: 360px;
    margin: 20px auto 0 auto;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    z-index: 999;
    backdrop-filter: blur(6px);
  }

  .mobile-menu a {
    color: #000;
    text-decoration: none;
    margin: 0.6rem 0;
    font-size: 1.05rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.35rem;
  }
}

/* DESKTOP ONLY (ab 851px) */
@media (min-width: 851px) {

  .hamburger.mobile-only,
  #mobile-menu {
    display: none !important;
  }
}
.leader-extras {
  font-size: 0.75rem;
  color: #555;
  margin-top: 4px;
  text-shadow: none;
}
