body {
  font-family: 'Courier New', monospace;
  background-color: #121212;
  color: #E0E0E0;
  font-size: 14px;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
}

a {
  color: #00F0FF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #121212;
  color: #e0e0e0;
  padding: 1rem 2rem 0.5rem;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.site-title {
  font-size: 14px;
  font-weight: bold;
  color: #e0e0e0;
}

.lang-switch {
  font-size: 12px;
  color: #999;
}

.lang-switch a {
  color: #66ccff;
  margin-left: 0.5rem;
  text-decoration: none;
}

.lang-switch a:hover {
  text-decoration: underline;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 13px;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #222;
  margin-bottom: 0.5rem;
}

nav a {
  color: #66ccff;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 5rem 4rem 3rem 8rem;
  max-width:1200px;
  margin: 0 auto;
  transform: translateX(-5rem);
}

.kommentar {
  display: inline-block;
  max-width: 85%;
  background-color: rgba(17, 34, 51, 0.15);
  border-left: 3px solid #3399ff;
  padding: 0.6rem 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #aaccee;
  border-radius: 4px;
  clear: both;
}

.abschnitt-box {
  display: inline-block;
  max-width: 90%;
  background-color: rgba(26, 26, 26, 0.12);
  border: 1px solid #333;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  color: #e0e0e0;
  margin: 0.8rem 0;
  line-height: 1.4;
  clear: both;
}


.codeblock {
  display: inline-block;
  max-width: 100%;
  background-color: rgba(17, 17, 17, 0.9);
  border: 1px solid #444;
  padding: 0.75rem 1rem;
  overflow-x: auto;
  color: #00cfff;
  font-family: monospace;
  font-size: 13px;
  margin: 1.5rem 0;
  border-radius: 4px;
  clear: both;
}


footer {
  background-color: #121212;
  padding: 1.2rem 2rem;
  font-size: 13px;
  color: #555;
  border-top: 1px solid #222;
  
}

.transparency-note {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 1rem;
  cursor: help;
  position: relative;
}

.transparency-note:hover::after {
  content: "Fact-check like your funding depends on it.";
  position: absolute;
  left: 0;
  bottom: 100%;
  background: #121212;
  color: #00F0FF;
  padding: 4px 8px;
  font-size: 0.8em;
  border: 1px solid #FF00AA;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

.transparency-note2 {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 1rem;
  cursor: help;
  position: relative;
}

.transparency-note2:hover::after {
  content: "Führen Sie einen Faktencheck durch, als ob Ihre Finanzierung davon abhinge.";
  position: absolute;
  left: 0;
  bottom: 100%;
  background: #121212;
  color: #00F0FF;
  padding: 4px 8px;
  font-size: 0.8em;
  border: 1px solid #FF00AA;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

@media (max-width: 600px) {
  .kommentar,
  .abschnitt-box,
  .codeblock {
    display: block;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid #222;
  padding-top: 0.75rem;
}

.daily-quote {
  font-style: italic;
  color: #999;
  flex-grow: 1;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.daily-quote.fade {
  opacity: 0;
}

.footer-links {
  white-space: nowrap;
}

.footer-links a {
  color: #66ccff;
  margin-left: 1rem;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.language-inline {
  display: flex;
  justify-content: flex-end;
  padding: 0.3rem 0.6rem 0 0;
  font-size: 12px;
  gap: 0.6rem;
  background-color: #121212;
  border: none;
  margin-top: -0.5rem;
}

.language-inline a {
  color: #66ccff;
  text-decoration: none;
  opacity: 0.6;
}

.language-inline a:hover {
  opacity: 1;
  text-decoration: underline;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.egg::after {
  content: "";
  display: none;
  position: absolute;
  top: -2rem;
  right: 0;
  background: #121212;
  color: #ff0077;
  font-size: 11px;
  padding: 0.3rem 0.6rem;
  border: 1px solid #444;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1000;
}

.egg:hover::after {
  content: "Here be dragons – AI Devs's worst nightmare";
  display: block;
}

.styled-header {
    margin-left: 1rem;
  font-size: 1.5em;
  font-weight: bold;
  color: #ffffff;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.3rem;
}

.styled-header::before {
  font-size: 1.2em;
}

.styled-header2 {
    margin-left: 1rem;
  font-size: 0.9em;
  color: #ffffff;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.3rem;
}

.styled-header2::before {
  font-size: 0.9em;
}

.quicknav {
  text-align: center;
  font-size: 13px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.quicknav a {
  color: #66ccff;
  text-decoration: none;
  margin: 0 0.4rem;
}

.quicknav a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.ghost-intro {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2);
  font-size: 3rem;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  animation: ghostFade 1.0s ease-out forwards;
}

@keyframes ghostFade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

.dark-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 15px;
  color: #e0e0e0;
  background-color: #1a1a1a;
}

.dark-table th,
.dark-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #444;
}

.dark-table thead th {
  font-weight: bold;
  color: #ffffff;
  background-color: #2a2a2a;
  border-bottom: 2px solid #555;
}

@media screen and (max-width: 600px) {
  .dark-table td,
  .dark-table th {
    padding: 0.6rem;
    font-size: 14px;
  }
}

#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background-color: #3399ff;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  background-color: #66ccff;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(-8px);
  
  background-color: #333; /* Dunkler Hintergrund für den Tooltip */
  color: #f0f0f0;       /* Heller Text */
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9em;
  white-space: nowrap;
  z-index: 10;
  
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  pointer-events: none;
}

[data-tooltip]::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% - 5px);
  transform: translateX(-50%);
  
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  pointer-events: none;
  z-index: 10;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
  visibility: visible;
  opacity: 1;
}

.attack-flow {
  background-color: #111;
  border-left: 4px solid #ff6b6b;
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 0.95em;
}
.attack-flow ol {
  padding-left: 18px;
}