.footer-bar {
  background-color: #0f1624; /* dunkler Hintergrund */
  color: #ccc;               /* helles Grau für Text */
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* Icons */
.theme-toggle,
.cookie-settings-btn {
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-color);
}

.footer-left {
  flex: 1;
}

.badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.2);
  background: #222;
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Statusfarben mit Glow */
.badge-success {
  background: #28a745;
  color: #fff;
  text-shadow: 0 0 4px rgba(40, 167, 69, 0.6);
}

.badge-warning {
  background: #ffc107;
  color: #222;
  text-shadow: 0 0 4px rgba(255, 193, 7, 0.6);
}

.badge-danger {
  background: #dc3545;
  color: #fff;
  text-shadow: 0 0 4px rgba(220, 53, 69, 0.6);
}

.badge-secondary {
  background: #444;
  color: #eee;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}
.banktransfer-firm {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #00c9ff;
  text-shadow: 0 0 4px rgba(0, 201, 255, 0.4);
}

.banktransfer-message {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}
.toast-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  animation: toastFadeIn 0.5s forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast-message {
  background: linear-gradient(135deg, #0ff, #00f0ff);
  color: #111;
  box-shadow: 0 0 20px #00f0ff, 0 0 40px #0ff inset;
  border: 1px solid #00f0ff;
  text-shadow: 0 0 2px #00f0ff;
}
@keyframes toastFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.language-switch select {
  background-color: #141428;
  color: #00f0ff;
  border: 1px solid rgba(0,255,255,0.3);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  box-shadow: 0 0 6px rgba(0,255,255,0.2);
}

.language-switch select {
  background-color: #141428;
  color: #00f0ff;
  border: 1px solid rgba(0,255,255,0.3);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  box-shadow: 0 0 6px rgba(0,255,255,0.2);
}
.language-switch select {
  background-image: url('/assets/img/flags/de.png');
  background-repeat: no-repeat;
  background-position: 0.3rem center;
  background-size: 1rem;
  padding-left: 2rem;
}
.language-switch select:has(option[value="en"]:checked) {
  background-image: url('/assets/img/flags/en.png');
}

.footer-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: inherit;
}
.galactic-search-card {
  background: linear-gradient(145deg, #0b0f2b, #1a1f3c);
  border-radius: 1rem;
  box-shadow:
    0 0 12px rgba(0,255,255,0.3),
    0 0 24px rgba(0,255,255,0.2),
    inset 0 0 8px rgba(0,255,255,0.1);
  padding: 2rem;
  color: #e0e0ff;
}
html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      background-color: #0b0f2b;
      color: #e0e0ff;
      font-family: 'Segoe UI', sans-serif;
    }

    .page-wrapper {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header {
      position: sticky;
      top: 0;
      background-color: #141428;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 0 12px rgba(0,255,255,0.2);
      z-index: 100;
    }

    header img {
      max-height: 40px;
      border-radius: 6px;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    header img:hover {
      transform: scale(1.05);
    }

    main {
      flex: 1;
      padding: 2rem;
      max-width: 800px;
      margin: 0 auto;
    }

    footer {
      background-color: #141428;
      color: #aaa;
      text-align: center;
      padding: 1rem;
      font-size: 0.85rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

.cms-floating-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 1200px;
  margin-top: 6rem;
}

.cms-floating-box {
  flex: 1 1 250px;
  max-width: 280px;
  background: radial-gradient(circle at center, #0b0f2b, #1a1f3c);
  border: 2px solid rgba(0,255,255,0.2);
  box-shadow: 0 0 16px rgba(0,255,255,0.3);
  border-radius: 1rem;
  padding: 2rem 1rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cms-box-heading {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #0b0f2b;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  font-weight: bold;
  color: #00ffff;
  box-shadow: 0 0 8px rgba(0,255,255,0.5);
  z-index: 2;
}

.cms-box-heading {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}

.cms-box {
  display: block;
  width: 100%;
  background: radial-gradient(circle at center, #2c2f4a, #0b0f2b);
  border: 2px solid rgba(0,255,255,0.3);
  box-shadow: 0 0 12px rgba(0,255,255,0.4);
  border-radius: 0.8rem;
  padding: 0.6rem 1rem;
  color: #e0e0ff;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 0.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  word-break: break-word;
}

.cms-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,255,255,0.6);
}

@media (max-width: 768px) {
  .cms-floating-box {
    max-width: 90%;
    padding: 1rem;
  }
}

    @media (max-width: 576px) {
      header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      header img {
        margin-bottom: 0.5rem;
      }
    }

    /* ? Toast styles */
    .galactic-toast {
      position: fixed;
      top: 1rem;
      right: 1rem;
      background: linear-gradient(135deg, #0b0f2b, #203a43);
      color: #00f0ff;
      padding: 0.8rem 1.2rem;
      border-radius: 0.6rem;
      box-shadow: 0 0 12px rgba(0,255,255,0.4);
      font-size: 0.9rem;
      z-index: 9999;
      animation: fadeInOut 3s ease forwards;
    }

    @keyframes fadeInOut {
      0%   { opacity: 0; transform: translateY(-10px); }
      10%  { opacity: 1; transform: translateY(0); }
      90%  { opacity: 1; }
      100% { opacity: 0; transform: translateY(-10px); }
    }

@media (max-width: 768px) {
  .footer-bar {
    display: block;
    text-align: center;
    padding: 1 rem 0.5rem;
    background-color: #141428;
    color: #aaa;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .footer-left {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .footer-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .language-switch select {
    background-color: #141428;
    color: #00f0ff;
    border: 1px solid rgba(0,255,255,0.3);
    border-radius: 0.4rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    box-shadow: 0 0 4px rgba(0,255,255,0.15);
    background-repeat: no-repeat;
    background-position: 0.4rem center;
    background-size: 0.8rem;
    padding-left: 1.6rem;
  }

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  text-align: center;
}

  .theme-toggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #00f0ff;
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 768px) {
  main {
    max-width: none;
    margin: 0;
    padding: 1rem;
  }
}
