
/* ALLGEMEINER STIL DER SITE */


html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1 {
  font-size: xx-large;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 0;
  margin: 0;
  background: linear-gradient(90deg, #00d4ff 0%, #ff00ff 100%);
  overflow-x: hidden; /* Kein horizontaler Scrollbalken */
}

/* Cookie Banner */
.cookie-banner button{
  cursor: pointer;
}

/* CONTAINER FÜR HEADER und WILLKOMMEN */

/* .kopf {
  background: linear-gradient(90deg, #00d4ff 0%, #ff00ff 100%);
} */

/* HEADER */

header video {
  width: 100%;
  height: auto;
}


/* Grundlegendes Styling für das Burger-Menü */



.menu-container {
  z-index: 1000;
  position: fixed;
}

.menu-icon {
  display: inline-block;
  cursor: pointer;
  padding: 10px;
}

.menu-icon img {
  width: 180px;
}

/* Pfeilanimation für Burger-Menü */

.menu-arrow {
  text-align: center;
  margin-top: 5px;
  /* Abstand zum Burger-Menü */
  animation: arrow-bounce 1.5s infinite;
  /* Animation für den Pfeil */
}

@keyframes arrow-bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    /* Startposition */
  }

  40% {
    transform: translateY(10px);
    /* Nach unten bewegen */
  }

  60% {
    transform: translateY(5px);
    /* Leicht zurück nach oben */
  }
}



/* Menü-Navigation */
.menu {
  display: none;
  /* Standardmäßig ausblenden */
  position: absolute;
  top: 100%;
  /* Direkt unter dem Menü-Icon */
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  /* Dunkler Hintergrund */
  border-radius: 8px;
  /* Abgerundete Ecken */
  padding: 1rem;
  /* Innenabstand */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  /* Schatten für Tiefe */
  z-index: 1000;
  /* Sicherstellen, dass das Menü über anderen Inhalten liegt */
  width: 400px;  /* Standardbreite des Menüs */
  max-width: 100vw; /* Verhindert, dass das Menü breiter als der Bildschirm wird */
  overflow-y: auto; /* Falls das Menü zu lang wird, nur vertikal scrollen */
  overflow-x: hidden; /* Kein horizontaler Scrollbalken */
  color: white;
}


/* Logo-Container */
.logo-container {
  text-align: center;
  /* Zentriert das Logo */
  margin-bottom: 1rem;
  /* Abstand zwischen Logo und Menü-Punkten */
 
}

.logo {
  max-width: 100%;
  /* Logo passt sich der Breite des Containers an */
  height: auto;
  /* Höhe wird proportional zur Breite angepasst */
}

/* Menü-Punkte */
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-bottom: 0.5rem;
  /* Abstand zwischen den Menü-Punkten */
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  display: block;
  /* Vollständige Breite nutzen */
}

/* Anzeigen des Menüs bei Klick */
.menu-container.open .menu {
  display: block;
  /* Menü anzeigen */
}


.menu ul {
  list-style-type: none;
  padding: 0;
}

.menu li {
  margin: 15px 0;
}

.menu a {
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  display: inline-block;
  /* Notwendig für die Skalierung */
  transition: color 0.3s ease, transform 0.3s ease;
  /* Sanfte Übergänge */
}

.menu a:hover {
  color: #ff00ff !important;
  /* ClipStar Rosa */
  transform: scale(1.3);
  /* Vergrößerung der Schrift */
}

/* Zeigt das Menü an, wenn die Klasse .show hinzugefügt wird */
.menu.show {
  display: block;
}


/* Schließen-Button */
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}


/* WILLKOMMEN */

.willkommen {
  width: 70vw;
  min-height: 67.5vh;
  display: flex;
  flex-direction: column;
  /* text-align: justify; */
  justify-content: center;
  align-items: center;
  margin: auto;
  color: white;
  /* border-radius: 15px; */
  padding: 1rem;
}

.willkommen h1 {
  font-size: 4.0rem;
  color: black;
  text-shadow: -5px 5px 0px rgb(0, 212, 255), -10px 10px 0px rgb(255, 0, 255);
  overflow: visible;
  text-align: center;
}

.kickstarter {
  width: 70vw;
  min-height: 67.5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 1rem;
  color: white;
}

.kickstarter>h1 {
  font-size: 3.5rem;
  color: black;
  text-shadow: -5px 5px 0px rgb(0, 212, 255), -10px 10px 0px rgb(255, 0, 255);
  overflow: visible;
  text-align: center;
}

.kickstarter>p {
  font-size: 2.0rem;
  color: white;
  overflow: visible;
  text-align: center;
}

.email-field {
  margin-bottom: 1rem;
}

#kickstarter-btn {
  padding: 12px;
  font-size: 1.2em; 
  font-weight: bold;
  background: #ffcc00; 
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#kickstarter-btn:hover{
  transform: scale(1.0);
}

@media (max-width: 800px) {
  #kickstarter-btn { 
      font-size: 1em; /* Anpassung für kleine Displays */
  }
}

@media (max-width: 600px) {
  #kickstarter-btn { 
      font-size: 14px; /* Anpassung für kleine Displays */
  }
}

@media (max-width: 445px) {
  #kickstarter-btn { 
      font-size: 12px; /* Anpassung für kleine Displays */
  }
}

@media (max-width: 380px) {
  #kickstarter-btn { 
      font-size: 8px; /* Anpassung für kleine Displays */
  }
}


/* Einleitung */

.Einleitung {
  font-size: 16px;
  max-width: 100%;
}

@media (max-width: 400px) {
  .Einleitung {
      font-size: 9.5px;
      line-height: 1.4;
      text-align: justify;
  }
}

/* img, video {
  pointer-events: none;
} */

.teaser {
  width: 400px;
  border: 4px solid white;
  border-radius: 10px;
}

.teaser2 {
  width: 600px;
  border: 4px solid white;
  border-radius: 10px;
  padding: 50px 20px;
  background: linear-gradient(90deg, #FFD700, #ff00ff);
}

.teaser2 h2 {
  font-size: 2em;
}

.willkommen h2 {
  font-size: 1.5rem;
  text-align: center;
  color: black;
}

.willkommen p {
  font-size: 1.4rem;


}

.einleitung>h2 {
  font-size: 2.5rem;
  color: black;
}

.hauptaussage {
  text-align: center;
}

/* Leuchtreklame für "Meist gekauft!" */
.highlighted-label {
  color: gold;
  font-weight: bold;
  font-size: 1rem;
  /* Ausgangsgröße der Schrift */
  text-align: center;
  margin-top: 1rem;
  animation: glowPulse 1s infinite, textSizePulse 0.5s infinite;
}

/* Goldener Leuchteffekt */
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 5px gold, 0 0 10px gold, 0 0 15px gold, 0 0 20px gold, 0 0 25px gold;
  }

  100% {
    text-shadow: 0 0 10px gold, 0 0 20px gold, 0 0 30px gold, 0 0 40px gold, 0 0 50px gold;
  }
}

/* Schriftgröße pulsieren */
@keyframes textSizePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

.highlight {
  border: 4px solid gold;
  box-shadow: 0 0 20px gold;
  /* Intensiverer Glanz-Effekt */
  animation: highlightGlow 1s infinite alternate;
  /* Schnellere Leucht-Animation */

}

@keyframes highlightGlow {
  0% {
    box-shadow: 0 0 10px gold;
  }

  100% {
    box-shadow: 0 0 25px gold;
  }
}


.highlighted-text {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  display: block;
  margin: 0 auto;
  color: red;
  animation: colorShift 2s infinite;
}

@keyframes colorShift {
  0% {
    color: #ff0;
  }

  /* Yellow */
  25% {
    color: #f00;
  }

  /* Red */
  50% {
    color: #0f0;
  }

  /* Green */
  75% {
    color: #00f;
  }

  /* Blue */
  100% {
    color: #ff0;
  }

  /* Back to Yellow */
}

/* Stil für die Abo-Buttons */
.abo-button {
  cursor: pointer;
  /* Hand-Cursor, wenn über den Button gefahren wird */
  /* Weitere Stilregeln für die Buttons hier */
}


button {
  width: 100%;
  background: linear-gradient(90deg, #00d4ff 0%, #ff00ff 100%);
  color: black;
  padding: 15px 30px;
  font-size: 1.5em;
  border-radius: 8px;
  border: 2px solid white;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0px 5px 15px rgba(255, 0, 255, 0.7);
  /* animation: pulse 1.5s infinite alternate; */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

button:hover {
  background: #ffcc00;
  transform: scale(1.15);
  box-shadow: 0px 5px 25px rgba(255, 204, 0, 0.9);

}

button a {
  font-weight: bold;
  font-size: large;
  color: white;
  text-decoration: none;
}

.buttons {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.abo-icon {
  width: 80px;
  height: auto;
  border: 4px solid transparent;
  /* Start ohne sichtbaren Rand */
  border-radius: 50%;
  /* Wenn du die Icons rund machen möchtest */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  /* Weicher Schatten */
  animation: glow 2s linear infinite;
  /* Die Animation für den Leuchteffekt */
}

@keyframes glow {
  0% {
    border-color: #FF00FF;
    /* ClipStar Farbe 1 (z.B. Pink) */
    box-shadow: 0 0 10px #FF00FF, 0 0 20px #FF00FF, 0 0 30px #FF00FF;
  }

  50% {
    border-color: #00FFFF;
    /* ClipStar Farbe 2 (z.B. Blau) */
    box-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 30px #00FFFF;
  }

  100% {
    border-color: #FF00FF;
    /* Wieder zu ClipStar Farbe 1 */
    box-shadow: 0 0 10px #FF00FF, 0 0 20px #FF00FF, 0 0 30px #FF00FF;
  }
}

.highlight {
  transform: none;
  /* Entfernt Skalierungseffekte auf kleineren Bildschirmen */
}


span {
  text-decoration: underline;
}


/* Für Bildschirmgrößen unter 768px (Handy) */
@media only screen and (max-width: 1230px) {
  .flex-row {
    flex-direction: column;
    align-items: center;
  }



  .article {
    width: 90%;
    /* Abo-Artikel nimmt fast die gesamte Bildschirmbreite ein */
    margin-bottom: 1.5rem;
    /* Abstand zwischen den Abo-Boxen */
  }

  .article h2 {
    font-size: 1.5rem;
    /* Anpassung der Überschrift */
  }

  .article p {
    font-size: 1rem;
    /* Anpassung des normalen Texts */
  }

  .article ol li {
    font-size: 0.9rem;
    /* Anpassung der Listenpunkte */
  }

  .buttons button {
    width: 100%;
    /* Schaltflächen füllen die Breite aus */
  }

  .buttons a {
    font-size: 1rem;
    /* Text in den Buttons anpassen */
  }
}

.shop {
  color: white;
  font-size: small;
}

.shop img {
  width: .5rem;

}


.kleingedrucktes p {
  text-align: center;
  /* Zentriert den gesamten Text */

}

.kleingedrucktes b {
  display: block;
  /* Macht das <b> block-level, sodass der Text darunter steht */

}


/* ANMELDEFORMULAR */

/* Hintergrund verwischen */
/* Pop-up Styling */
/* Standardmäßig ist das Modal unsichtbar */
/* Modal (der unsichtbare, vollständige Bildschirmbereich, der als Overlay erscheint) */
.modal {
  visibility: hidden;
  /* Das Modal ist standardmäßig unsichtbar */
  opacity: 0;
  /* Das Modal ist standardmäßig durchsichtig */
  position: fixed;
  /* Das Modal bleibt an der gleichen Position, wenn die Seite gescrollt wird */
  z-index: 1000;
  /* Stellt sicher, dass das Modal über allen anderen Inhalten angezeigt wird */
  left: 0;
  top: 0;
  width: 100%;
  /* Dehnt das Modal über die gesamte Breite des Bildschirms */
  height: 100%;
  /* Dehnt das Modal über die gesamte Höhe des Bildschirms */
  background-color: rgba(0, 0, 0, 0.5);
  /* Halbtransparenter, dunkler Hintergrund für den Modal-Overlay */
  display: flex;
  /* Flexbox-Layout wird verwendet, um die Inhalte innerhalb des Modals zu positionieren */
  justify-content: center;
  /* Zentriert den Modal-Inhalt horizontal */
  align-items: center;
  /* Zentriert den Modal-Inhalt vertikal */
  transition: visibility 0s, opacity 0.5s ease;
  /* Weiche Übergänge: Sichtbarkeit sofort und Opazität über 0,5s */
}

/* Modal Styling - für jedes Modal */
#anmeldungModal,
#anmeldungModal1,
#anmeldungModal2 {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 1000;
  left: 50%;
  /* Horizontale Zentrierung */
  top: 50%;
  /* Vertikale Zentrierung */
  transform: translate(-50%, -50%);
  /* Exakte Zentrierung auf der Seite */
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Abdunklung des Hintergrunds */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: visibility 0s, opacity 0.5s ease;
}

/* Modal-Inhalt - für jedes Modal */
#anmeldungModal .modal-content,
#anmeldungModal1 .modal-content,
#anmeldungModal2 .modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 33%;
  /* Setzt die Breite auf 1/3 des Bildschirms */
  max-width: 500px;
  /* Begrenze die maximale Breite auf 500px */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* Schatten für besseren Kontrast */
  position: relative;
  /* Um das Schließen-Icon korrekt zu positionieren */
}

/* Wenn die Klasse "show" hinzugefügt wird, wird das Modal sichtbar */
#anmeldungModal.show,
#anmeldungModal1.show,
#anmeldungModal2.show {
  visibility: visible;
  opacity: 1;
}



/* Schließen-Button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Gemeinsame Stile für alle Formulare */
form {
  display: flex;
  flex-direction: column;
  align-items: center;

}

label {
  margin-top: 10px;
  text-align: left;
  width: 100%;
  font-size: 16px;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

/* Für den Geburtsdatums-Container */
.birthdate-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.birthdate-container select,
.birthdate-container input {
  width: 32%;
  /* Stellt sicher, dass Tag, Monat und Jahr nebeneinander passen */
}


/* Individuelle Klassen für die Formulare */
.formSupporter,
.formCreator,
.formClipstar {
  width: 100%;
  /* Die Breite der Formulare */
  max-width: 500px;
  /* Maximale Breite für größere Bildschirme */
}

.formSupporter {
  background-color: #f9f9f9;
}

.formCreator {
  background-color: #eef9f9;
}

.formClipstar {
  background-color: #f0f8ff;
}

.payment-options label {
  display: flex;
  /* Flexbox aktivieren, um Radio-Button und Text nebeneinander zu zeigen */
  flex-direction: row;
  /* Radio-Button und Text in einer Zeile anordnen */

}

/* Radio-Button Styling (optional) */
.payment-options input[type="radio"] {
  margin-bottom: 5px;
  /* Abstand zwischen Radio-Button und dem Text */
}

/* Media Query für sehr kleine Bildschirme */
@media (max-width: 320px) {
  .birthdate-container {
    flex-direction: column;
    gap: 10px;
  }

  /* .payment-options {
    flex-direction: column;
    align-items: flex-start;
  } */
}

/* Für Bildschirme, die kleiner als 600px sind */
@media (max-width: 600px) {
  .birthdate-container {
    flex-direction: column;
  }

  .birthdate-container select,
  .birthdate-container input {
    width: 100%;
    margin-bottom: 10px;
    /* Abstand zwischen den Feldern auf kleinen Bildschirmen */
  }
}

/* Fehleranzeige für das Jahr-Eingabefeld */
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

/* Button Styling */
button[type="submit"] {
  width: 100%;
  /* Button nimmt die volle Breite des Containers ein */
  padding: 10px 0;
  /* Polsterung oben und unten, damit der Button ausreichend Platz hat */
  font-size: 16px;
  /* Schriftgröße für den Button */
  color: #fff;
  /* Textfarbe des Buttons */
  border: none;
  /* Kein Rahmen für den Button */
  border-radius: 5px;
  /* Abgerundete Ecken für den Button */
  cursor: pointer;
  /* Zeigt den Cursor als Hand an, wenn darüber gefahren wird */
  transition: background-color 0.3s ease;
  /* Übergangseffekt für die Hintergrundfarbe */
}



button[type="submit"]:hover {
  box-shadow: inset 0 0 0 2px rgba(255, 0, 255, 1);
  /* simuliert eine innere Border */
  color: black;
}




/* Für Bildschirme, die kleiner als 600px sind */
@media (max-width: 600px) {
  button[type="submit"] {
    font-size: 14px;
    /* Kleinere Schriftgröße auf sehr kleinen Bildschirmen */
    padding: 12px 0;
    /* Etwas mehr Polsterung auf kleinen Bildschirmen */
  }
}

/* Countdown-Container */
.countdown-container {
  text-align: center;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  margin: 20px auto;
  max-width: 600px;
}

/* Countdown-Titel */
.countdown-container h3 {
  font-size: 24px;
  color: rgba(0, 212, 255, 1);
  /* Gold für den "HYPE"-Effekt */
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Countdown-Zahlen */
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
}

/* Jedes Element im Countdown */
.countdown-timer span {
  background: rgb(255, 0, 255);
  ;
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 50px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(255, 69, 0, 0.6);
}


/* Probleme */

.problems {
  padding: 50px 20px;
  background-color: #1e1e1e;
  border: 4px dotted #ff4500;
  border-radius: 10px;
}

.problems h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.problem-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.problem {
  width: 300px;
  padding: 20px;
  background-color: #222;
  border-radius: 10px;
  text-align: left;
}

.problem h3 {
  color: #ff4500;
}

/* Quizz */

.quiz-container {
  max-width: 600px;
  margin: auto;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1) !important;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(0, 212, 255, 0.5);
}
.question {
  margin-bottom: 15px;
  color: black;
  font-weight: bold;
}
.quiz button{
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 2px solid white;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
  /* animation: pulse 1.5s infinite alternate; */
}

.btn-a {
  background: linear-gradient(90deg, #FFD700, #ff00ff);
  box-shadow: 0px 5px 15px rgba(255, 204, 0, 0.7);
}
.btn-b {
  background: linear-gradient(90deg, #00ccff, #ff4444);
  box-shadow: 0px 5px 15px rgba(0, 212, 255, 0.7);
}
.btn-c {
  background: linear-gradient(90deg, #ff4444, #FFD700);
  box-shadow: 0px 5px 15px rgba(255, 0, 0, 0.7);
}
@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.result {
  display: none;
  font-size: 20px;
  margin-top: 20px;
}
.restart-button {
  background: linear-gradient(90deg, #ff00ff, #00ccff);
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
  box-shadow: 0px 5px 15px rgba(0, 212, 255, 0.7);
  display: none;
}

/* Gamechanger-Bereich – deine bisherigen Styles bleiben */
.gamechanger {
  background: linear-gradient(135deg, #1f1f1f, #292929);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border: 4px solid #ffcc00;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.gamechanger h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #FFD700, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Grid-Layout der Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  position: relative; /* für z-index und Positionierung */
}

/* Grunddesign der Features */
.feature {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1; /* Grund-Z-Index */
}

.feature i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  background: linear-gradient(90deg, #ffcc00, #ff6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #FFD700, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.feature p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
}

/* Leichter Hover-Effekt, wenn KEIN Feature aktiv ist */
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

/* Wenn ein Feature "aktiv" ist, kommen die krassen Styles */
.feature.active {
  /* position fixed + Mitte des Bildschirms */
  position: fixed;
  top: 50%;
  left: 50%;
  width: 320px;
  height: auto;
  padding: 30px 20px;
  font-size: 1.2rem;
  background: #ffcc00;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  z-index: 9999;
  /* Startzustand: transform: rotate(0deg) => Animation => Ende: rotate(360deg) */
  animation: spinIn 0.6s ease-in-out forwards;
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.8);
}

/* Die Keyframe-Animation für das 1x Rotieren */
@keyframes spinIn {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1.1);
  }
}

/* Wenn ein Feature aktiv ist, dimme alle anderen */
.feature-grid.active-mode .feature:not(.active) {
  opacity: 0.2;
}

 
.feature-answer {
  display: none;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 320px;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.6), 
              0 10px 25px rgba(255, 0, 255, 0.7), 
              0 15px 35px rgba(255, 204, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
  z-index: 9999;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Interview mit der Kairos C. */
.interview {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: #161b22;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.background {
  
    width: 100vw;
    min-height: 100vh;
    background-color: black;
    z-index: -1;
}

article .question {
  font-weight: bold;
  color: #f7786b;
  margin-top: 20px;
}
.answer {
  font-style: italic;
  color: #c9d1d9;
  margin-bottom: 20px;
}


/* Responsive Anpassungen */
@media (max-width: 1034px) {
  .menu-icon img {
    width: 160px;
  }

  .countdown-container {
    max-width: 500px;
  }

  .countdown-timer {
    font-size: 26px;
    gap: 12px;
  }

  .countdown-timer span {
    padding: 8px 12px;
    min-width: 45px;
  }

  .kickstarter {
    width: 80vw;
    min-height: 60vh;
    padding: 0.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .kickstarter > h1 {
    font-size: 3rem;
  }

  .kickstarter > p {
    font-size: 1.8rem;
  }
}

@media (max-width: 934px) {
  .menu-icon img {
    width: 120px;
  }

  .countdown-container {
    max-width: 450px;
  }

  .countdown-timer {
    font-size: 24px;
    gap: 10px;
  }

  .countdown-timer span {
    padding: 7px 10px;
    min-width: 42px;
  }

  .kickstarter {
    width: 85vw;
    min-height: 55vh;
    padding: 0.7rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .kickstarter > h1 {
    font-size: 2.6rem;
  }

  .kickstarter > p {
    font-size: 1.6rem;
  }
}

@media (max-width: 834px) {
  .menu-icon img {
    width: 100px;
  }

  .countdown-container {
    max-width: 420px;
  }

  .countdown-timer {
    font-size: 22px;
    gap: 8px;
  }

  .countdown-timer span {
    padding: 6px 9px;
    min-width: 38px;
  }

  .kickstarter {
    width: 88vw;
    min-height: 50vh;
    padding: 0.6rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .kickstarter > h1 {
    font-size: 2rem;
  }

  .kickstarter > p {
    font-size: 1.4rem;
  }
}

@media (max-width: 738px) {
  .menu-icon img {
    width: 100px;
  }

  .countdown-container {
    max-width: 400px;
  }

  .countdown-timer {
    font-size: 20px;
    gap: 7px;
  }

  .countdown-timer span {
    padding: 6px 8px;
    min-width: 35px;
  }

  .kickstarter {
    width: 90vw;
    min-height: 48vh;
    padding: 0.5rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  .kickstarter > h1 {
    font-size: 2.2rem;
  }

  .kickstarter > p {
    font-size: 1.3rem;
  }
}

@media (max-width: 634px) {
  .menu-icon img {
    width: 80px;
  }

  .countdown-container {
    max-width: 380px;
  }

  .countdown-timer {
    font-size: 18px;
    gap: 6px;
  }

  .countdown-timer span {
    padding: 5px 7px;
    min-width: 32px;
  }

  .kickstarter {
    width: 92vw;
    min-height: 45vh;
    padding: 0.4rem;
  }

  h2 {
    font-size: 1rem;
  }

  .kickstarter > h1 {
    font-size: 2rem;
  }

  .kickstarter > p {
    font-size: 1.2rem;
  }
}

@media (max-width: 534px) {
  .menu-icon img {
    width: 60px;
  }

  .countdown-container {
    max-width: 350px;
  }

  .countdown-timer {
    font-size: 16px;
    gap: 5px;
  }

  .countdown-timer span {
    padding: 4px 6px;
    min-width: 30px;
  }

  .kickstarter {
    width: 94vw;
    min-height: 42vh;
    padding: 0.3rem;
  }

  h2 {
    font-size: 0.9rem;
  }

  .kickstarter > h1 {
    font-size: 1.8rem;
  }

  .kickstarter > p {
    font-size: 1.1rem;
  }
}

@media (max-width: 434px) {
  .menu-icon img {
    width: 40px;
  }

  .countdown-container {
    max-width: 320px;
  }

  .countdown-timer {
    font-size: 14px;
    gap: 4px;
  }

  .countdown-timer span {
    padding: 3px 5px;
    min-width: 28px;
  }

  .kickstarter {
    width: 96vw;
    min-height: 40vh;
    padding: 0.2rem;
  }

  h2 {
    font-size: 0.8rem;
  }

  .kickstarter > h1 {
    font-size: 1.6rem;
    text-shadow: -2px 2px 0px rgb(0, 212, 255), -4px 4px 0px rgb(255, 0, 255);
  }

  .kickstarter > p {
    font-size: 1rem;
  }
}

@media (max-width: 334px) {
  .menu-icon img {
    width: 20px;
  }

  .countdown-container {
    max-width: 280px;
  }

  .countdown-timer {
    font-size: 12px;
    gap: 3px;
  }

  .countdown-timer span {
    padding: 2px 4px;
    min-width: 25px;
  }

  .kickstarter {
    width: 98vw;
    min-height: 38vh;
    padding: 0.1rem;
  }

  h2 {
    font-size: 0.7rem;
  }

  .kickstarter > h1 {
    font-size: 1.4rem;
    text-shadow: -1px 1px 0px rgb(0, 212, 255), -2px 2px 0px rgb(255, 0, 255);
  }

  .kickstarter > p {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .teaser {
    width: 90vw; /* Passt sich dem Viewport an */
    border: 3px solid white;
    border-radius: 8px;
  }
}

@media (max-width: 350px) {
  .teaser {
    width: 85vw;
    border: 2px solid white;
    border-radius: 6px;
  }
}

@media (max-width: 300px) {
  .teaser {
    width: 80vw;
    border: 1px solid white;
    border-radius: 4px;
  }
}

@media (max-width: 1034px) {
    .gamechanger h2 {
        font-size: 2.2rem;
    }
    .feature-grid {
        gap: 15px;
    }
}

@media (max-width: 934px) {
    .gamechanger {
        padding: 50px 15px;
    }
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 834px) {
    .gamechanger h2 {
        font-size: 2rem;
    }
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    .feature p {
        font-size: 1rem;
    }
}

@media (max-width: 738px) {
    .gamechanger {
        padding: 40px 10px;
    }
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 634px) {
    .gamechanger h2 {
        font-size: 1.8rem;
    }
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }
}

@media (max-width: 534px) {
    .gamechanger {
        padding: 30px 8px;
    }
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }
    .feature h3 {
        font-size: 1.4rem;
    }
    .feature p {
        font-size: 0.9rem;
    }
}

@media (max-width: 434px) {
    .gamechanger h2 {
        font-size: 1.6rem;
    }
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 334px) {
    .gamechanger h2 {
        font-size: 1.4rem;
    }
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Bestehende Styles bleiben unverändert ... */

/* Ab einer Bildschirmbreite von 738px: Features horizontal scrollbar anzeigen */
/* Standardmäßig Pfeile ausblenden */
.arrow {
  display: none;
  font-size: 30px;
  /* cursor: pointer; */
  color: white;
  transition: color 0.2s ease-in-out;
}

/* Pfeile nur bei kleinen Bildschirmen (max-width: 444px) einblenden */
@media (max-width: 444px) {
  .arrow {
    display: inline-block; /* Pfeile sichtbar machen */
    
  }

  .feature-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 10px;
    width: 400px;
  }

  .feature {
    flex: 0 0 105%;
    scroll-snap-align: start;
  }
}

/* Zusätzliche Breitenanpassungen */
@media (max-width: 420px) {
  .feature-grid {
    width: 380px;
  }
}

@media (max-width: 400px) {
  .feature-grid {
    width: 360px;
  }
}

.scroll-arrows {
  text-align: center;
  margin: 10px 0;
}

/* .arrow:hover {
  color: #0ff;
} */

/* Responsivität Cookie Banner */

@media (max-width: 1034px) {
  .cookie-banner {
      padding: 12px;
  }
  .cookie-banner button {
      font-size: 0.9rem;
  }
}

@media (max-width: 934px) {
  .cookie-banner {
      padding: 10px;
  }
  .cookie-banner button {
      font-size: 0.85rem;
  }
}

@media (max-width: 834px) {
  .cookie-banner {
      flex-direction: column;
      padding: 8px;
  }
  .cookie-banner button {
      font-size: 0.8rem;
      padding: 8px 12px;
  }
}

@media (max-width: 738px) {
  .cookie-banner {
      padding: 6px;
  }
  .cookie-banner button {
      font-size: 0.75rem;
  }
}

@media (max-width: 634px) {
  .cookie-banner {
      padding: 5px;
  }
  .cookie-banner button {
      font-size: 0.7rem;
      padding: 6px 10px;
  }
}

@media (max-width: 534px) {
  .cookie-banner {
      flex-direction: column;
      padding: 4px;
  }
  .cookie-banner button {
      font-size: 0.65rem;
      padding: 5px 8px;
  }
}

@media (max-width: 434px) {
  .cookie-banner {
      padding: 3px;
  }
  .cookie-banner button {
      font-size: 0.6rem;
      padding: 4px 7px;
  }
}

@media (max-width: 334px) {
  .cookie-banner {
      padding: 2px;
  }
  .cookie-banner button {
      font-size: 0.55rem;
      padding: 3px 6px;
  }
}

  .cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    text-align: center;
    z-index: 9999;
    display: none; /* Standardmäßig versteckt */
  }

  .cookie-options {
    margin: 10px 0;
  }

  .cookie-options label {
    display: block;
    margin: 5px 0;
  }

  .quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-left: 5px solid #ffcc00;
    margin: 20px 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.quote cite {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffcc00;
}

/* Fragenkatalog */

.faq-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 212, 255, 0.5);
  max-width: 800px;
  width: 90%;
  margin: auto;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-question {
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 212, 255, 1), rgba(255, 0, 255, 1));
  color: white;
  border: none;
  padding: 15px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.faq-question:hover {
  background: rgba(255, 0, 255, 0.8);
}
.faq-answer {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: white;
  text-align: left;
  margin-top: 5px;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-answer ul {
  padding-left: 20px;
  text-align: left;
}
.faq-answer li {
  list-style-type: disc;
  margin-bottom: 5px;
}
.toggle-icon {
  font-size: 1.5em;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
      padding: 30px;
  }
  .faq-question {
      font-size: 1em;
      padding: 12px;
  }
  .faq-answer {
      font-size: 1em;
      padding: 12px;
  }
}
@media (max-width: 480px) {
  .faq-section {
      padding: 20px;
  }
  .faq-question {
      font-size: 0.9em;
      padding: 10px;
  }
  .faq-answer {
      font-size: 0.9em;
      padding: 10px;
  }
}

/* Responsive Anpassungen für das Zitat */
@media (max-width: 1034px) {
    .quote {
        font-size: 1.1rem;
        padding: 18px;
        max-width: 85%;
    }
    .quote cite {
        font-size: 0.95rem;
    }
}

@media (max-width: 934px) {
    .quote {
        font-size: 1rem;
        padding: 16px;
        max-width: 90%;
    }
    .quote cite {
        font-size: 0.9rem;
    }
}

@media (max-width: 834px) {
    .quote {
        font-size: 0.95rem;
        padding: 14px;
        max-width: 92%;
    }
    .quote cite {
        font-size: 0.85rem;
    }
}

@media (max-width: 738px) {
    .quote {
        font-size: 0.9rem;
        padding: 12px;
        max-width: 95%;
    }
    .quote cite {
        font-size: 0.8rem;
    }
}

@media (max-width: 634px) {
    .quote {
        font-size: 0.85rem;
        padding: 10px;
        max-width: 98%;
    }
    .quote cite {
        font-size: 0.75rem;
    }
}

@media (max-width: 534px) {
    .quote {
        font-size: 0.8rem;
        padding: 8px;
        max-width: 100%;
    }
    .quote cite {
        font-size: 0.7rem;
    }
}

@media (max-width: 434px) {
    .quote {
        font-size: 0.75rem;
        padding: 6px;
        max-width: 100%;
    }
    .quote cite {
        font-size: 0.65rem;
    }
}

@media (max-width: 334px) {
    .quote {
        font-size: 0.7rem;
        padding: 5px;
        max-width: 100%;
    }
    .quote cite {
        font-size: 0.6rem;
    }
}

/* Responsive Anpassungen für die Probleme */
@media (max-width: 1034px) {
  .problem {
    width: 85%;
  }
}

@media (max-width: 934px) {
  .problem {
    width: 90%;
  }
}

@media (max-width: 834px) {
  .problem {
    width: 92%;
  }
}

@media (max-width: 738px) {
  .problem {
    width: 95%;
  }
}

@media (max-width: 634px) {
  .problem {
    width: 98%;
  }
}

@media (max-width: 534px) {
  .problem {
    width: 100%;
  }
}

@media (max-width: 434px) {
  .problem {
    font-size: 0.9rem;
    padding: 15px;
  }
}

@media (max-width: 334px) {
  .problem {
    font-size: 0.85rem;
    padding: 12px;
  }
}

/* Responsive Anpassung für niedrige Bildschirmhöhe */
@media (max-height: 658px) {
  .menu-icon img {
    width: 100px; /* Breite reduzieren */
    height: auto; /* Höhe proportional anpassen */
  }
}

@media (max-height: 458px) {
  .menu-icon img {
    width: 75px; /* Breite reduzieren */
    height: auto; /* Höhe proportional anpassen */
  }
}

/* Responsive Anpassung für niedrige Bildschirmhöhe */
@media (max-height: 600px) {
  .menu {
    width: 440px;
    height: 200px;
    overflow-y: auto; /* Nur vertikales Scrollen erlauben */
    overflow-x: hidden; /* Kein horizontaler Scrollbalken */
  }
}

@media (max-height: 400px) {
  .menu {
    width: 400px;
    height: 150px;
    overflow-y: auto; /* Nur vertikales Scrollen */
    overflow-x: hidden;
  }
}


