/* Globales Layout */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-weight: 700;
  text-align: center;
  color: #00f7ff;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

p {
  text-align: center;
  color: #ccc;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

/* Glitch Effekt */
.glitch {
  position: relative;
  color: #00fff7;
  font-size: 3.2rem;
  text-shadow: 0 0 5px #00fff7, 0 0 15px #00fff7;
  text-align: center; /* Sicherstellen, dass der Glitch-Text zentriert ist */
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0.8;
}
.glitch::before {
  animation: glitchTop 2s infinite linear;
  color: #ff00c8;
  top: -2px;
  clip-path: inset(0 0 50% 0);
}
.glitch::after {
  animation: glitchBottom 2s infinite linear;
  color: #00ffff;
  top: 2px;
  clip-path: inset(50% 0 0 0);
}
@keyframes glitchTop {
  0% { transform: translateX(0); }
  20% { transform: translateX(-2px); }
  40% { transform: translateX(2px); }
  60% { transform: translateX(-1px); }
  80% { transform: translateX(1px); }
  100% { transform: translateX(0); }
}
@keyframes glitchBottom {
  0% { transform: translateX(0); }
  20% { transform: translateX(2px); }
  40% { transform: translateX(-2px); }
  60% { transform: translateX(1px); }
  80% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

/* Hero Bereich */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.15);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

/* Call to Action */
.cta-button, .small-button, .secondary-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center; /* Text innerhalb des Buttons zentrieren */
}
.cta-button {
  background: #00f7ff;
  color: #0a0a0a;
  box-shadow: 0 0 12px rgba(0, 247, 255, 0.3);
}
.cta-button:hover {
  background: #00cfd4;
  transform: scale(1.07);
}
.secondary-button {
  border: 2px solid #00f7ff;
  color: #00f7ff;
  background: none;
}
.secondary-button:hover {
  background: #00f7ff;
  color: #0a0a0a;
}
.small-button {
  background: #1e1e1e;
  border: 1px solid #00f7ff;
  color: #00f7ff;
  font-size: 0.9rem;
}
.small-button:hover {
  background: #00f7ff;
  color: #0a0a0a;
}

/* Sektionen */
section {
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1300px;
  text-align: center; /* Zentriert den Inhalt der Sektionen */
}

/* Zielgruppen */
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.audience-box {
  background: #1a1a1a;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 0 15px rgba(0,255,255,0.05);
  text-align: center; /* Zentriert den Text in der Audience Box */
}
.audience-box ul {
  padding-left: 1.2rem;
  list-style: none;
  text-align: center; /* Zentriert die Liste im Audience Box */
  display: inline-block; /* Damit padding-left und text-align funktionieren */
}
.audience-box li::before {
  content: '✔';
  color: #00fff7;
  margin-right: 0.5rem;
}

/* Carousel */
.carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  justify-content: center; /* Zentriert die Carousel-Items */
}
.carousel-item {
  flex: 0 0 auto;
  width: 240px;
  background: #121212;
  border-radius: 12px;
  padding: 1.5rem;
  scroll-snap-align: center;
  text-align: center;
}

/* Stats */
.usp-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}
.stat-box {
  background: #181818;
  padding: 2rem;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00fff7;
  box-shadow: 0 0 10px rgba(0,255,255,0.05);
  text-align: center; /* Zentriert den Text in der Stat Box */
}

/* Kundenfeedback */
.kundenfeedback blockquote {
  font-style: italic;
  color: #aaa;
  border-left: 3px solid #00f7ff;
  padding-left: 1rem;
  margin: 2rem auto;
  max-width: 700px;
  text-align: center; /* Zentriert den Text im Blockquote */
}
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.trust-logos img {
  max-height: 40px;
  filter: brightness(1.2);
}

/* Werte */
.werte-liste {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.werte-liste li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: #555;
  font-size: 0.85rem;
  margin-top: 6rem;
  border-top: 1px solid #1a1a1a;
  background: #0f0f0f;
}

/* Unternehmen Sektion */
.unternehmen-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #0e0e0e;
}

.unternehmen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.unternehmen-box {
  background: #161616;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.05);
  text-align: center; /* Zentriert den Text in der Unternehmen Box */
}

.unternehmen-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
}

.unternehmen-box img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 12px rgba(0, 247, 255, 0.05);
}

.unternehmen-box h3 {
  color: #00f7ff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.unternehmen-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unternehmen-box li {
  margin-bottom: 0.6rem;
  color: #ccc;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

@media (max-width: 768px) {
  .unternehmen-section {
    padding: 3rem 1rem;
  }

  .unternehmen-box {
    padding: 1.5rem;
  }

  .unternehmen-box img {
    max-height: 120px;
  }

  .unternehmen-box h3 {
    font-size: 1.05rem;
  }
}

/* Visual Grid */
.visual-grid {
  text-align: center;
  margin-top: 5rem;
  padding: 0 1rem;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.visual-card {
  background: #161616;
  border: 1px solid #292929;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
}

.visual-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.visual-card h4 {
  padding: 1rem;
  font-size: 1.1rem;
  color: #00f7ff;
  background: #121212;
  margin: 0;
  text-align: center; /* Zentriert den Text in h4 der Visual Card */
}

.visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
}

.visual-card:hover img {
  transform: scale(1.05);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .visual-card img {
    height: 140px;
  }

  .visual-card h4 {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .grid-wrapper {
    gap: 1.5rem;
  }

  .visual-grid {
    margin-top: 3rem;
  }
}


/* Paketvergleich-Tabelle */
.paketvergleich {
  overflow: visible;
  position: relative;
  z-index: 1;
  text-align: center; /* Zentriert den Inhalt des Paketvergleichs */
}

.paketvergleich h3 {
  margin-bottom: 3.5rem; /* Abstand zur Tabelle */
}

/* Tabellen-Container */
.paket-table {
  width: 100%;
  overflow-x: auto;
  margin: 0 auto;
}

/* Tabelle selbst */
.paket-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 2rem;
}

/* Tabellenzellen */
.paket-table th,
.paket-table td {
  padding: 1rem;
  border: 1px solid #2c2c2c;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Erste Spalte */
.paket-table th:first-child,
.paket-table td:first-child {
  text-align: left; /* Behält die linke Ausrichtung für die erste Spalte bei */
  background-color: #111;
  color: #00f7ff;
  font-weight: bold;
  width: 22%;
}

/* Kopfzeile */
.paket-table th {
  background: #121212;
  color: #00f7ff;
  position: relative;
}

/* Zellenfarbe */
.paket-table td {
  color: #e0e0e0;
}

/* Tooltip Container */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  line-height: 1.2;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: #222;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 0.75rem;
  position: absolute;
  top: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.85rem;
  z-index: 99;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  white-space: normal;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #222 transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


/* Responsive: Tablet & kleiner */
@media (max-width: 1024px) {
  .paket-table table {
    font-size: 0.9rem;
  }
  .paket-table th,
  .paket-table td {
    padding: 0.75rem;
  }
}

/* Responsive: Mobil */
@media (max-width: 768px) {
  .paket-table table {
    font-size: 0.8rem;
  }
  .paket-table th,
  .paket-table td {
    padding: 0.6rem;
  }
  .tooltip .tooltiptext {
    width: 180px;
    font-size: 0.75rem;
    padding: 0.6rem;
  }
}


/* Tools & Apps Grid */
.tools-section .gamer-grid,
.tools-section .tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tool-Kacheln */
.tools-section a {
  text-decoration: none;
}

.tools-section a div {
  background: #161616;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center; /* Zentriert den Text in den Tool-Kacheln */
}

.tools-section a div:hover {
  background: #1e1e1e;
  transform: translateY(-4px);
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.1);
}

.tools-section h3 {
  color: #00f7ff;
  margin-bottom: 1rem;
}

.tools-section p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Deaktivierte Box (Coming Soon) */
.tools-section a[style*="opacity"] div {
  pointer-events: none;
}

.main-content {
  max-width: 1000px;
  margin: auto;
  padding: 3rem 2rem 5rem;
  color: #ccc;
  text-align: center; /* Zentriert den Inhalt des Hauptinhaltsbereichs */
}


.page-title {
  color: #00f7ff;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 12px #00f7ff;
}

.lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.info-box {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
  text-align: center; /* Zentriert den Inhalt der Info Box */
}

.info-box h2 {
  color: #00f7ff;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.info-box p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}




.cta-box {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 4rem;
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
}

.cta-box h2 {
  color: #00f7ff;
  margin-bottom: 1rem;
}

.cta-button {
  background: #00f7ff;
  color: #000;
  padding: 0.9rem 2rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 0 12px #00f7ff;
  display: inline-block;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #00d5dd;
}

/* --- Cookie Banner Styling --- */

/* Grundlegendes Styling für das Cookie-Banner */
#cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #00f7ff, #007bff);
  color: #ffffff; /* <-- HIER GEÄNDERT: Textfarbe auf Weiß */
  padding: 20px 25px;
  text-align: center;
  box-shadow: 0 -5px 20px rgba(0, 247, 255, 0.4);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: bottom 0.8s ease-out, opacity 0.8s ease-out;
  opacity: 0;
  font-family: 'Inter', sans-serif;
}

/* Zustände für die Animation bleiben gleich */
#cookie-banner.cookie-banner-hidden {
  bottom: -200px;
  opacity: 0;
}

#cookie-banner.cookie-banner-show {
  bottom: 0;
  opacity: 1;
}

/* Styling für den Textabsatz im Banner */
#cookie-banner p {
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 900px;
  color: #ffffff; /* <-- HIER HINZUGEFÜGT: Explizite Farbe für den Absatztext */
  text-align: center; /* Sicherstellen, dass der Text im Cookie-Banner zentriert ist */
}

/* Styling für den Link in der Cookie-Nachricht */
#cookie-banner a {
  color: #e0e0e0; /* <-- HIER GEÄNDERT: Linkfarbe auf helleres Grau */
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

#cookie-banner a:hover {
  color: #c0c0c0; /* <-- HIER GEÄNDERT: Link wird beim Hover etwas dunkler */
}

/* Styling für den "Akzeptieren"-Button bleibt gleich */
#cookie-banner button {
  background-color: #1a1a1a;
  color: #00f7ff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#cookie-banner button:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#cookie-banner button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Media Query für größere Bildschirme bleibt gleich */
@media (min-width: 768px) {
  #cookie-banner {
      flex-direction: row;
      justify-content: space-between;
      padding: 20px 40px;
  }

  #cookie-banner p {
      margin: 0;
      text-align: left; /* Behält die linke Ausrichtung auf größeren Bildschirmen bei */
  }
}