.cookie-popup {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-popup .popup-content {
  background: radial-gradient(circle at top left, #0d1b2a, #1b263b, #415a77);
  color: #e0e0e0;
  box-shadow:
    0 0 60px rgba(0, 123, 255, 0.7),
    0 0 120px rgba(0, 123, 255, 0.5),
    inset 0 0 30px rgba(0, 123, 255, 0.3);
  border: 2px solid rgba(0, 123, 255, 0.4);
  animation: pulseGlow 6s infinite ease-in-out;
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 30px;
  max-width: 550px;
  width: 90%;
}
.popup-content h1 i {
  color: #00c6ff;
  text-shadow: 0 0 10px #00c6ff;
}
.popup-content button {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease;
}

.popup-content button:hover {
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
  transform: scale(1.05);
}
/* ?? Glow-Effekt für Buttons */
.popup-content button,
.banner-buttons button {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease;
}

.popup-content button:hover,
.banner-buttons button:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    transform: scale(1.05);
}
.cookie-btn {
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #a6a6a6 !important;
  border: none;
  box-shadow: 0 0 10px rgba(44, 62, 80, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: linear-gradient(135deg, #34495e, #2c3e50);
  box-shadow: 0 0 18px rgba(44, 62, 80, 0.6);
  color: #ff3300 !important;
  transform: scale(1.05);
}
.form-check-input {
  width: 50px;
  height: 25px;
  background-color: #1f2a38; /* dunkler Hintergrund */
  border: none;
  box-shadow: 0 0 8px rgba(0, 195, 255, 0.3);
  transition: all 0.3s ease;
}
.form-check-label {
  color: #e0e0e0;
}
.form-check-input {
  border-radius: 25px;
}
.form-check-input:checked {
  background-color: #00c6ff; /* Glow-Blau beim Aktivieren */
  box-shadow: 0 0 15px rgba(0, 195, 255, 0.6);
}
.alert-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(circle at top left, #1f2a38, #2c3e50); /* Dunkelblau-Grau */
    color: #e0e0e0;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow:
        0 0 20px rgba(0, 195, 255, 0.4),
        0 0 40px rgba(0, 195, 255, 0.2),
        inset 0 0 10px rgba(0, 195, 255, 0.1);
    font-size: 1rem;
    animation-duration: 0.5s;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 195, 255, 0.2);
}

.alert-modern .alert-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.alert-modern i {
    font-size: 1.5rem;
    color: #00c6ff;
    text-shadow: 0 0 8px #00c6ff;
}

.alert-modern .btn-close {
    background: transparent;
    border: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, color 0.3s ease;
}

.alert-modern .btn-close:hover {
    transform: rotate(90deg);
    color: #00c6ff;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(0, 195, 255, 0.4),
            0 0 40px rgba(0, 195, 255, 0.2),
            inset 0 0 10px rgba(0, 195, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 30px rgba(0, 195, 255, 0.6),
            0 0 60px rgba(0, 195, 255, 0.3),
            inset 0 0 20px rgba(0, 195, 255, 0.2);
    }
}
@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(0, 123, 255, 0.5),
            0 0 60px rgba(0, 123, 255, 0.3),
            inset 0 0 15px rgba(0, 123, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 50px rgba(0, 123, 255, 0.7),
            0 0 90px rgba(0, 123, 255, 0.4),
            inset 0 0 25px rgba(0, 123, 255, 0.2);
    }
}

.cookie-banner {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    background: linear-gradient(90deg, #ffffff, #e6f2ff);
    animation: pulseGlow 6s infinite ease-in-out;
}
@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    60% {
        opacity: 1;
        transform: translateX(-10%);
    }
    80% {
        transform: translateX(5%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.animate__animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.animate__bounceInRight {
    animation-name: bounceInRight;
}

.animate__fadeOutRight {
    animation-name: fadeOutRight;
}

