/* In deiner CSS-Datei */
.top-right-icons {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 1000;
}

.theme-toggle, .home-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #00ffc3;
  cursor: pointer;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.home-icon {
  text-decoration: none;
}

.theme-toggle:hover, .home-icon:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

/* WICHTIG: Korrigierte Light-Mode Regeln */
body.light-mode {
  background: linear-gradient(135deg, #f5f7fa, #e4e8f0, #d8dee9);
  color: #333;
}

body.light-mode .container-box {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
  color: #333;
}

body.light-mode .theme-toggle,
body.light-mode .home-icon {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.1);
  color: #0077ff;
}

body.light-mode footer a {
  color: #666;
}