body {
  margin: 0;
  padding: 2rem;
  background: #0a0a0a;
  color: #00ffea;
  font-family: 'Courier New', monospace;
}

header h1 {
  font-size: 2rem;
  text-shadow: 0 0 5px #00ffee;
  margin-bottom: 1rem;
}

.intro {
  margin-bottom: 2rem;
}

.checkboxes label {
  display: block;
  margin: 0.5rem 0;
}

#statusOutput {
  margin-top: 2em;
  padding: 1em;
  background-color: #1a1a1a;
  border: 1px solid #00ffcc;
  border-radius: 6px;
  color: #66ffe0;
  box-shadow: 0 0 8px #00ffcc44;
  font-size: 1em;
  font-family: monospace;
}


.checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1.2;
  margin: 0.2em 0;
  font-size: 0.95em;
}

.checkboxes input[type="checkbox"] {
  margin: 0;
  transform: scale(1); /* optional: makes checkbox a bit more visible */
  background: #0a0a0a;
  color: #00ffea;
}
.checkboxes label:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #00ffcc;
}

.checkboxes input[type="checkbox"]:hover {
  cursor: pointer;
}

.checkboxes .box {
  background: #111;
  border: 1px solid #00ffcc;
  border-radius: 8px;
  padding: 1em;
  box-shadow: 0 0 10px #00ffcc33;
}

#statusOutput {
  transition: opacity 0.2s ease;
}

.geo-box {
  margin-top: 1em;
  padding: 0.8em;
  border-left: 4px solid #00ffcc;
  background-color: #1f1f1f;
  color: #66ffe0;
  font-style: italic;
}

.heatmap-mini {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 200px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9998;
  opacity: 0.8;
  pointer-events: none;
  display: none;
  background: rgba(0, 0, 0, 0.1);
}

.profil-box {
  background-color: #111;
  border: 2px solid #00ffcc;
  border-radius: 8px;
  padding: 2em;
  box-shadow: 0 0 20px #00ffee55;
  max-width: 800px;
  margin: 2em auto;
  font-size: 1em;
  line-height: 1.5;
}

.profil-box h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid #00ffee;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}

.profil-box p {
  margin: 0.5em 0;
  color: #00ffea;
}

.profil-box strong {
  color: #ffffff;
  text-shadow: 0 0 5px #00ffee;
}

.profil-box code {
  color: #66ffe0;
  background: #0a0a0a;
  padding: 0.2em 0.4em;
  border: 1px solid #00ffee33;
  border-radius: 4px;
}

.ghostline {
  opacity: 0.6;
  font-style: italic;
  animation: flicker 1.5s infinite;
  margin-top: 2em;
}

@keyframes flicker {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.profil-box::before {
  content: "CLASSIFIED";
  display: block;
  font-size: 1.2em;
  color: #ff0055;
  text-align: center;
  letter-spacing: 4px;
  font-weight: bold;
  border: 2px dashed #ff0055;
  padding: 0.3em;
  margin-bottom: 1em;
  text-shadow: 0 0 5px #ff0055;
}

.profil-box::after {
  content: "Letzte Analyse: " attr(data-analyzed);
  display: block;
  text-align: right;
  font-style: italic;
  font-size: 0.85em;
  margin-top: 2em;
  color: #888;
}

.profil-box {
  position: relative;
  padding: 2em;
  border: 2px solid #00ffcc;
  background: #111;
  box-shadow: 0 0 12px #00ffcc55;
  border-radius: 12px;
  overflow: hidden;
}

/* Wasserzeichen */
.profil-box::after {
  content: "TOP SECRET";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  font-size: 4rem;
  color: rgba(255, 0, 0, 0.15);
  font-weight: bold;
  pointer-events: none;
  letter-spacing: 0.1em;
  white-space: nowrap;
  z-index: 1;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  opacity: 0; /* Start ausgeblendet */
  transition: opacity 0.5s ease;
}

.profil-box.reveal-secret::after {
  opacity: 1;
}

  /* Tab-Buttons-Container */
  .tabs {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    display: flex;
    border-bottom: 2px solid #00ffcc;
  }

  .tab-button {
    flex-grow: 1;
    background: #111;
    border: none;
    color: #00ffea;
    padding: 1em;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 -4px 0 transparent;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
  }

  .tab-button:hover {
    background-color: #222;
  }

  .tab-button.active {
    box-shadow: inset 0 -4px 0 #00ffcc;
    background-color: #222;
    color: #ffffff;
  }

  /* Tab-Content */
  .tab-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #111;
    border: 2px solid #00ffcc;
    border-top: none;
    padding: 2em;
    box-shadow: 0 0 20px #00ffee55;
    border-radius: 0 0 12px 12px;
    display: none;
    line-height: 1.5;
  }

  .tab-content.active {
    display: block;
  }

  .tab-content h2, .tab-content h3 {
    margin-top: 0;
  }
