.cookie-galactic-popup {
  position: fixed;
  bottom: 40px; /* über dem Footer */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(20, 20, 30, 0.95);
  border: 2px solid #00f0ff;
  border-radius: 12px;
  box-shadow: 0 0 20px #00f0ff;
  padding: 20px;
  max-width: 700px;
  width: 95%;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  animation: floatUp 3s ease-out;
}

.cookie-galactic-popup:hover {
  box-shadow: 0 0 30px #00f0ff;
  transform: translateX(-50%) translateY(-5px);
  transition: transform 0.3s ease;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-content h3 {
  margin-top: 0;
  font-size: 1.4em;
  color: #00f0ff;
  text-align: center;
}

.cookie-buttons {
  margin-top: 15px;
  text-align: center;
}

.cookie-buttons button {
  margin: 5px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background-color: #00f0ff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px #00f0ff;
}

.cookie-buttons button:hover {
  background-color: #00d0e0;
  box-shadow: 0 0 15px #00f0ff;
}

.cookie-links {
  margin-top: 10px;
  font-size: 0.9em;
  text-align: center;
}

.cookie-links a {
  color: #00f0ff;
  text-decoration: underline;
}
.cookie-content .form-check {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookie-content .form-check-input {
  margin-left: 0;
  margin-right: 0.5rem;
}
.form-check-input:checked {
  background-color: #00ff99;
  border-color: #00ff99;
  box-shadow: 0 0 10px rgba(0,255,153,0.6);
}
.galactic-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #00f0ff;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 12px #00f0ff;
  z-index: 99999;
  font-family: 'Orbitron', sans-serif;
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}
.cookie-settings-btn {
  background: none;
  border: none;
  font-size: 1.0em;
  margin-left: 0px;
  cursor: pointer;
  color: #00f0ff;
  transition: transform 0.2s ease;
}

.cookie-settings-btn:hover {
  transform: scale(1.2);
  color: #00d0e0;
}
@media (max-width: 576px) {
  .cookie-galactic-popup {
    bottom: 20px;
    padding: 12px;
    max-width: 95%;
    font-size: 0.85em;
    border-width: 1px;
    box-shadow: 0 0 12px #00f0ff;
  }

  .cookie-content h3 {
    font-size: 1.1em;
  }

  .cookie-buttons button {
    padding: 6px 12px;
    font-size: 0.85em;
    margin: 4px;
  }

  .cookie-links {
    font-size: 0.8em;
  }

  .cookie-content .form-check {
    gap: 0.5rem;
    flex-direction: row;
    align-items: center;
  }

  .cookie-content .form-check-label {
    font-size: 0.85em;
  }

  .form-check-input {
    transform: scale(0.85);
  }
}
