/* === STANDARD (HELLER MODUS) === */
.password-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
}

.password-modal-content {
  background: #ffffff;
  color: #000000;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.password-modal-content h2 {
  margin-top: 0;
}

.password-modal-content input {
  padding: 0.7rem;
  margin-top: 1rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f9f9f9;
  color: #000000;
}

.password-modal-content button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background-color: #ffd700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #000000;
}

.password-modal-content button:hover {
  background-color: #ffcc00;
}

.password-modal-content a {
  color: #0066cc;
  text-decoration: underline;
}

.error-message {
  margin-top: 0.8rem;
  color: red;
  font-weight: bold;
}

/* ========= BASIS-DESIGN (HELLER MODUS) ========= */
.abi-box {
  font-family: sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: #fffbea;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  line-height: 1.6;
  color: #000;
}

.abi-box h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #000;
}

.abi-box hr {
  margin: 1rem 0;
  border-color: #ccc;
}

.abi-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.abi-box ul li {
  margin-bottom: 0.5rem;
}

.abi-box ul li i {
  margin-right: 0.5rem;
}

.abi-box .highlight {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.8rem;
}

.abi-button-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.cta-button {
  background-color: #ffd700;
  color: #000;
  padding: 0.75rem 1.25rem;
  font-weight: bold;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

.cta-button:hover {
  background-color: #ffcc00;
  transform: translateY(-1px);
}

.cta-button.secondary {
  background-color: #e0e0e0;
  color: #111;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, transform 0.1s ease;
}

.cta-button.secondary:hover {
  background-color: #d0d0d0;
  transform: translateY(-1px);
}




/* === DARK MODE === */
@media (prefers-color-scheme: dark) {
  .password-modal-content {
    background: #1e1e1e;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  }

  .password-modal-content input {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #555;
  }

  .password-modal-content button {
    background-color: #ffcc00;
    color: #000000;
  }

  .password-modal-content a {
    color: #66b3ff;
  }

  .error-message {
    color: #ff6b6b;
  }

      .abi-box {
    background-color: #1e1e1e;
    color: #f1f1f1;
    box-shadow: 0 0 15px rgba(255,255,255,0.05);
  }

  .abi-box h2 {
    color: #ffffff;
  }

  .abi-box hr {
    border-color: #444;
  }

  .cta-button {
    background-color: #ffd700;
    color: #000;
  }

  .cta-button:hover {
    background-color: #ffcc00;
  }

  .cta-button.secondary {
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #444;
  }
}