/* darkmode.css */

:root {
  --background-color: #121212;
  --text-color: #e0e0e0;
  --primary-color: #5eff1e; /* schönes Grün als Akzent */
  --secondary-color: #bb86fc; /* lila Akzent */
  --border-color: #333333;
  --link-color: var(--primary-color);
  --link-hover-color: #5599ff;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  margin: 20px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--primary-color);
  margin-bottom: 0.5em;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

p {
  margin-bottom: 1em;
}

section {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.4); /* halbtransparent */
  backdrop-filter: blur(10px); /* Blur-Effekt */
  -webkit-backdrop-filter: blur(10px); /* für Safari */
  border: 1px solid rgba(255, 255, 255, 0.2); /* leichter Rahmen */
  color: #fff;
}

footer {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-top: 40px;
}

.highlight-box {
background: rgba(0, 0, 0, 0.4);
border-radius: 15px;
padding: 20px;
margin: 20px;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: #fff;
}








.tabs {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 10px;
    margin: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.tab-button {
    background: rgba(0, 0, 0, 0.3);
    color: #0f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #0f0;
}

.tab-button.active {
  background-color: var(--primary-color);
  border-bottom: 1px solid var(--background-color);
  color: white;
}

.tab-content {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  min-height: 150px;
}

.tab-panel {
    display: none; /* ← wichtig! */
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    color: #fff;
}

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

.tab-panel ul {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  list-style-type: disc; /* Standard-Punkte */
  margin-left: 20px; /* Einrückung */
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.5;
}





/* Ergänze in deiner darkmode.css oder in <style> */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100%;
}

canvas#matrix {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    width: 100vw;
    height: 100vh;
}



