* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: #f5f5f5;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 70px;
  border-bottom: 1px solid rgba(255,0,0,.3);
  transition: all .4s;
  z-index: 1000;
}

header.scrolled {
  background: rgba(0,0,0,.9);
  padding: 5px 20px;
}

header img {
  height: 85px;
  transition: transform .3s;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 500;
  letter-spacing: .5px;
  position: relative;
  transition: all .2s;
}

nav a:hover {
  color: #ff3333;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #ff3333;
  transition: .4s;
}

nav a:hover::after {
  width: 100%;
}


/* Hamburger Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.9rem;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.nav-toggle:hover {
  transform: scale(1.15);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 90%;
  object-fit: cover;
  filter: brightness(.3) saturate(1.3);
  z-index: -1;
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 800;
  text-shadow: 0 0 25px rgba(255,0,0,.6);
  animation: fadeInDown 1.5s;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 25px;
  color: #dcdcdc;
  max-width: 700px;
  animation: fadeInUp 2s;
}

.hero button {
  margin-top: 40px;
  padding: 15px 45px;
  background: linear-gradient(90deg,#ff0000,#b80000);
  border: none; color: #fff;
  font-size: 1.2rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all .3s ease;
}

.hero button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255,0,0,.6);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Generic section animation */
section {
  padding: 120px 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}


/* Info */
.info {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.info img {
  width: 420px;
  border-radius: 25px;
  box-shadow: 0 0 50px rgba(255,0,0,.5);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.info h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #ff3333;
  text-shadow: 0 0 15px rgba(255,0,0,.3);
}

.info p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}


/* Join */
.join {
  text-align: center;
  background: linear-gradient(180deg, rgba(255,0,0,0.1) 0%, rgba(0,0,0,1) 100%);
  padding: 120px 40px;
  border-top: 2px solid red;
  border-bottom: 2px solid red;
}

.join h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: red;
  text-shadow: 0 0 20px rgba(255,0,0,.8);
}

.join p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.join .server-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.join input{
  display: none;
}

.join .card {
  background: rgba(255,255,255,.05);
  border-radius: 15px;
  padding: 30px;
  padding-bottom: 10px;
  min-width: 250px;
  transition: transform .4s, box-shadow .4s;
}

.join .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255,0,0,.6);
}

.join button {
  background: red;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255,0,0,.5);
  transition: all .3s ease;
}

.join button:hover {
  background: #fff;
  color: red;
  box-shadow: 0 0 40px rgba(255,0,0,1);
}

.discord {
  margin-top: 40px;
  font-size: 1.1rem;
}

.discord a {
  color: red;
  text-decoration: none;
  transition: all .3s ease;
  font-weight: bold;
}

.discord a:hover { color: #fff; }

/* Navbar CTA (Bewerbung) */
nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  margin-left: 14px;
  background: linear-gradient(90deg, #ff0000, #b80000);
  border: 1px solid rgba(255, 51, 51, 0.35);
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.18);
  letter-spacing: 0.2px;
  color: #fff !important;
}

nav a.nav-cta::after {
  display: none;
}

nav a.nav-cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 0, 0, 0.26);
}

nav a.nav-cta i {
  font-size: 1.05rem;
}


/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.gallery div {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(255,0,0,.2);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}

.gallery div:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}


/* Team (enhanced) */
.team {
  background: linear-gradient(300deg, rgba(255,0,0,0.1) 0%, rgba(0,0,0,1) 100%);
  border-top: 1px solid rgba(255,0,0,0.08);
  border-bottom: 1px solid rgba(255,0,0,0.08);
}

/* Titel & Beschreibung */
.team h2 {
  color: #ff6666;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 6px;
  text-shadow: 0 0 12px rgba(255,0,0,0.2);
}

.team p.lead {
  text-align: center;
  color: #d9d9d9;
  max-width: 900px;
  margin: 0 auto 18px;
}

/* Team-Grid */
.members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

/* Einzelne Teamkarte */
.member {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255,0,0,.06);
  position: relative;
  overflow: hidden;
  transform: translateY(0) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  will-change: transform, box-shadow;
}

.member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(255,0,0,.25);
}


/* Avatar-Bild */
.avatar {
  width: 84px;
  min-width: 84px;
  aspect-ratio: 1 / 1;
  flex: 0 0 84px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #2b0000, #5a0000);
  border: 3px solid rgba(255,0,0,0.12);
  display: inline-block;
  position: relative;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.status-dot {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #141414;
  background: #7a7a7a;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.status-dot.is-online {
  background: #29d34a;
  box-shadow:
    0 0 0 4px rgba(41, 211, 74, 0.18),
    0 0 14px rgba(41, 211, 74, 0.55);
}

.status-dot.is-offline {
  background: #7a7a7a;
  box-shadow: 0 0 0 4px rgba(140, 140, 140, 0.14);
}

/* Meta-Informationen */
.meta h3 {
  color: #ffdede;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.meta p {
  color: #d5d5d5;
  font-size: 0.95rem;
  line-height: 1.35;
  margin: 6px 0;
}

/* Rollen-Badge */
.member .role {
  background: rgba(255,0,0,0.08);
  color: #ffbdbd;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(255,0,0,0.06);
}

/* Kontakt-Buttons */
.member .contacts {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.member .contacts a {
  background: rgba(255,255,255,0.02);
  color: #fff;
  border: 1px solid rgba(255,0,0,0.04);
  border-radius: 999px;
  padding: 6px 10px;
  text-decoration: none;
  transition: 0.2s;
}

/* Hover-Effekt für Kontakte */
.member .contacts a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(255,0,0,0.08);
}

/* Badge (z. B. Teamrolle oder Rang) */
.member .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 6px 20px rgba(255,0,0,0.12);
}

/* Kleine Zusatztexte oder Tooltips */
.hint {
  font-size: 0.82rem;
  color: #ffdddd;
  opacity: 0.9;
}

/* SOCIAL MEDIA SECTION (Advanced) */
.socials {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(255,0,0,0.08), rgba(0,0,0,1) 80%);
  padding: 140px 30px;
  text-align: center;
  border-top: 1px solid rgba(255,0,0,.2);
  border-bottom: 1px solid rgba(255,0,0,.2);
  perspective: 1000px;
}

.socials .container {
  position: relative;
  z-index: 3;
}

.social-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,0,0,0.06), transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes pulseGlow {
  from { opacity: .3; transform: scale(1); }
  to { opacity: .6; transform: scale(1.1); }
}

.socials h2 {
  color: #ff6666;
  font-size: 2.6rem;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255,0,0,.3);
}

.socials .lead {
  color: #d9d9d9;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.6;
}

/* GRID */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* CARD */
.social {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,0,0,.15);
  border-radius: 24px;
  padding: 40px 30px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform .4s ease, box-shadow .4s ease, border .4s ease;
  box-shadow: 0 0 25px rgba(255,0,0,0.05);
  backdrop-filter: blur(8px);
  transform-style: preserve-3d;
}

.social i {
  font-size: 2.8rem;
  transition: transform .35s ease, text-shadow .35s ease;
}

.social span {
  font-size: 1rem;
  letter-spacing: .4px;
}

.social:hover {
  transform: translateY(-14px) rotateX(8deg);
  box-shadow: 0 0 35px rgba(255,0,0,.5);
  border: 1px solid rgba(255,0,0,.4);
}

.social:hover i {
  transform: scale(1.3);
  text-shadow: 0 0 25px rgba(255,0,0,.9);
}

.social-grid.enhanced {
  gap: 28px;
}

/* Social Card */
.social-card {
  width: 260px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,0,0,0.08);
  box-shadow: 0 8px 30px rgba(255,0,0,0.06);
  transition: transform .35s ease, box-shadow .35s ease, border .35s ease;
}

.social-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 50px rgba(255,0,0,0.15);
  border: 1px solid rgba(255,0,0,0.28);
}

.social-card .icon {
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  color: #ff0000;
  padding: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  width: 74px;
  height: 74px;
  transition: transform .3s ease;
}

.social-card .platform {
  font-weight: 900;
  color: #ff0000;
  letter-spacing: .5px;
  font-size: 20px;
}

.social-card .followers {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
}

.social-card .platform-desc {
  color: #ffffff;
  font-size: .95rem;
  text-align: center;
  line-height: 1.3;
  margin-top: 6px;
  min-height: 44px;
}

.social-card .cta {
  margin-top: 10px;
  background: linear-gradient(90deg,#ff2b2b,#c90000);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-card .cta.secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}


@media(max-width:720px){
  .social-card { width: 100%; max-width: 420px; }
}


/* Footer */
footer {
  background: #111;
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
  border-top: 1px solid rgba(255,0,0,.3);
}

footer a {
  color: #ff3333;
  text-decoration: none;
}

footer a:hover { color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
  animation: lightboxIn 0.3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.2);
  color: #fff;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,0,0,0.2);
  transform: scale(1.1);
}

.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-close {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* Responsive */
@media(max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 25px;
  }

  header img {
    height: 70px;
    margin-bottom: 5px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  nav a {
    margin: 6px 10px;
    font-size: 0.95rem;
  }

  .hero {
    height: 90vh;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1rem;
    max-width: 90%;
  }

  .hero button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  section {
    padding: 70px 20px;
  }

  .info {
    flex-direction: column;
    text-align: center;
  }

  .info img {
    width: 100%;
    max-width: 340px;
    margin-bottom: 20px;
  }

  .join .server-info {
    flex-direction: column;
    gap: 20px;
  }

  .join .card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .gallery img {
    width: 200px;
  }

  .team .members {
    grid-template-columns: 1fr;
  }

  .member {
    flex-direction: column;
    text-align: left;
    padding: 20px;
  }

  .avatar {
    width: 85px;
    min-width: 70px;
  }

  .social-grid.enhanced {
    grid-template-columns: 1fr;
  }

  .social-card {
    width: 100%;
    max-width: 360px;
  }

  footer {
    padding: 40px 15px;
    font-size: 0.9rem;
  }
}

@media(max-width: 480px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .join h2 {
    font-size: 1.8rem;
  }

  .join p, .info p {
    font-size: 1rem;
  }

  .social-card .platform {
    font-size: 1.1rem;
  }

  .social-card .icon {
    font-size: 2.4rem;
    width: 60px;
    height: 60px;
  }
}

/* --- Mobile Styles --- */
@media (max-width: 900px) {
  header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 15px 25px !important;
    position: relative !important;
    z-index: 100 !important;
  }
  /* --- Hamburger sichtbar --- */
  .nav-toggle {
    display: block !important;
    position: relative !important;
    z-index: 120 !important;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .nav-toggle:hover {
    transform: scale(1.15);
  }

  /* --- Desktop-Navi ausblenden --- */
  header nav {
    display: none !important;
    position: static !important;
  }

  /* --- Slide-in Menü von rechts --- */
  nav.show {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 85% !important;
    max-width: 400px !important;
    height: 100vh !important;
    background: linear-gradient(145deg, rgba(25,25,25,0.95), rgba(15,15,15,0.98)) !important;
    backdrop-filter: blur(15px) !important;
    padding: 120px 25px 40px !important;
    z-index: 110 !important;
    border-left: 1px solid rgba(255,0,0,0.15);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  /* Menülinks */
  nav.show a {
    width: 100% !important;
    padding: 16px 24px !important;
    margin: 8px 0 !important;
    font-size: 1.1rem !important;
    color: #fff !important;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,0,0,0.1);
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
  }

  /* Link Hover Effects */
  nav.show a:hover {
    background: rgba(255,0,0,0.1);
    border-color: rgba(255,0,0,0.3);
    transform: translateX(8px);
    color: #ff3333 !important;
  }

  /* Active Link Style */
  nav.show a.active {
    background: linear-gradient(90deg, rgba(255,0,0,0.15), transparent);
    border-color: rgba(255,0,0,0.4);
    color: #ff4444 !important;
  }

  /* Link Decoration */
  nav.show a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff3333;
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  nav.show a:hover::before {
    transform: scaleY(1);
  }

  /* Hamburger Button */
  .nav-toggle {
    width: 50px !important;
    height: 50px !important;
    border-radius: 14px !important;
    background: rgba(255,0,0,0.1) !important;
    border: 1px solid rgba(255,0,0,0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 120 !important;
  }

  .nav-toggle:hover {
    background: rgba(255,0,0,0.15) !important;
    transform: scale(1.05);
  }

  .nav-toggle i {
    color: #ff3333;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
  }

  /* CTA im Mobile-Menü */
  nav.show a.nav-cta {
    background: linear-gradient(90deg, rgba(255,0,0,0.85), rgba(184,0,0,0.85)) !important;
    border-color: rgba(255, 51, 51, 0.55) !important;
    color: #fff !important;
    justify-content: center !important;
    font-weight: 700 !important;
  }

  nav.show a.nav-cta::before { display: none; }

  nav.show a.nav-cta:hover {
    transform: none !important;
    background: linear-gradient(90deg, rgba(255,0,0,0.95), rgba(184,0,0,0.95)) !important;
    color: #fff !important;
  }


  /* Menu Overlay */
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 1;
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Slide Animations */
  nav.slide-in {
    animation: slideIn 0.4s ease forwards;
  }

  nav.slide-out {
    animation: slideOut 0.4s ease forwards;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideOut {
    from {
      transform: translateX(0);
      opacity: 1;
    }
    to {
      transform: translateX(100%);
      opacity: 0;
    }
  }
}

/* Füge diese Animationen nach den bestehenden @keyframes hinzu */
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes fadeOutOverlay {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Ändere die nav.show Regel */
nav.show {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 75% !important;
  max-width: 360px !important;
  height: 100vh !important;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.97), rgba(40, 40, 40, 0.97)) !important;
  backdrop-filter: blur(12px) !important;
  padding: 100px 30px 30px 30px !important;
  gap: 28px !important;
  z-index: 110 !important;
  border-left: 1px solid rgba(255, 0, 0, 0.2);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

/* Füge diese neuen Klassen hinzu */
nav.slide-in {
  animation: slideInRight 0.35s forwards ease;
}

nav.slide-out {
  animation: slideOutRight 0.35s forwards ease;
}

body.overlay-fade-out::before {
  animation: fadeOutOverlay 0.3s ease forwards;
}

@media (max-width: 900px) {
  /* Header fixieren */
  header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(10,10,10,.95) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2) !important;
  }

  /* Scrolled Zustand */
  header.scrolled {
    background: rgba(0,0,0,.98) !important;
    padding: 10px 25px !important;
  }

  /* Anpassung der Logo-Größe */
  header.scrolled img {
    height: 55px !important;
  }
}


/* ===== REVIEW SHOWCASE - MAIN PAGE FIT ===== */

.review-showcase {
  position: relative;
  padding: 90px 80px;
  background:
    radial-gradient(circle at top, rgba(255, 0, 0, 0.08), rgba(0, 0, 0, 0) 45%),
    linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  border-top: 1px solid rgba(255, 0, 0, 0.14);
  border-bottom: 1px solid rgba(255, 0, 0, 0.10);
}

.review-showcase-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: stretch;
}

.review-summary-box,
.review-rotator-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255, 0, 0, 0.10);
  box-shadow: 0 14px 45px rgba(255, 0, 0, 0.08), 0 12px 30px rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
}

.review-summary-box::before,
.review-rotator-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #ff3333, transparent 72%);
}

.review-summary-box {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.15);
  color: #ffb5b5;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.review-summary-box h2 {
  font-size: 2.2rem;
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,0,0,0.12);
}

.review-score-line {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}

.review-score-line strong {
  font-size: 4.2rem;
  line-height: 0.9;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 24px rgba(255,0,0,0.18);
}

.review-score-line span {
  color: #b8bcc6;
  font-size: 1.35rem;
  font-weight: 700;
  transform: translateY(-4px);
}

.review-score-stars {
  color: #ffd15a;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-shadow: 0 0 14px rgba(255, 209, 90, 0.22);
}

.review-score-text {
  color: #c7cad3;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.review-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.review-btn-primary,
.review-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.review-btn-primary {
  background: linear-gradient(90deg,#ff0000,#b80000);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,0,0,.22);
}

.review-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255,0,0,.38);
}

.review-btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,0,0,.12);
  color: #fff;
}

.review-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(255,0,0,.16);
  border-color: rgba(255,0,0,.25);
}

.review-rotator-box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-rotator-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-rotator-head span {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.review-rotator-dots {
  display: flex;
  gap: 8px;
}

.review-rotator-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  transition: all .25s ease;
}

.review-rotator-dot.active {
  width: 22px;
  background: #ff3333;
  box-shadow: 0 0 12px rgba(255,0,0,.35);
}

.review-rotator-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,0,0,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.01);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}

.review-rotator-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-rotator-stars {
  color: #ffd15a;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(255, 209, 90, 0.18);
}

.review-rotator-card h3 {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.08;
  margin-bottom: 12px;
}

.review-rotator-card p {
  color: #d7dbe3;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  min-height: 88px;
}

.review-rotator-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #b0b6c0;
  font-size: 0.94rem;
  font-weight: 600;
}

/* Hover leicht, damit es zum rest passt */
.review-summary-box:hover,
.review-rotator-box:hover {
  box-shadow: 0 18px 50px rgba(255, 0, 0, 0.12), 0 14px 35px rgba(0,0,0,0.36);
}

/* Responsive */
@media (max-width: 1100px) {
  .review-showcase-grid {
    grid-template-columns: 1fr;
  }

  .review-summary-box,
  .review-rotator-box {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .review-showcase {
    padding: 70px 20px;
  }
}

@media (max-width: 640px) {
  .review-summary-box h2 {
    font-size: 1.8rem;
  }

  .review-score-line strong {
    font-size: 3.3rem;
  }

  .review-score-stars {
    font-size: 1.45rem;
  }

  .review-summary-actions {
    flex-direction: column;
  }

  .review-btn-primary,
  .review-btn-secondary {
    width: 100%;
  }

  .review-rotator-card {
    min-height: auto;
    padding: 18px;
  }

  .review-rotator-card h3 {
    font-size: 1.35rem;
  }

  .review-rotator-card p {
    min-height: 0;
    font-size: 0.96rem;
  }

  .review-rotator-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== REVIEW SHOWCASE COMPACT OVERRIDE ===== */

.review-showcase {
  padding: 70px 80px;
}

.review-showcase-grid {
  grid-template-columns: 300px 1fr;
  gap: 20px;
}

.review-summary-box,
.review-rotator-box {
  border-radius: 20px;
}

.review-summary-box {
  padding: 22px;
}

.review-eyebrow {
  padding: 7px 12px;
  font-size: 0.76rem;
  margin-bottom: 12px;
}

.review-summary-box h2 {
  font-size: 1.8rem;
  line-height: 1.05;
  margin-bottom: 14px;
}

.review-score-line {
  gap: 8px;
  margin-bottom: 6px;
}

.review-score-line strong {
  font-size: 3.1rem;
}

.review-score-line span {
  font-size: 1.05rem;
  transform: translateY(-2px);
}

.review-score-stars {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.review-score-text {
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.review-summary-actions {
  gap: 10px;
}

.review-btn-primary,
.review-btn-secondary {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.review-rotator-box {
  padding: 18px;
}

.review-rotator-head {
  margin-bottom: 12px;
}

.review-rotator-head span {
  font-size: 0.95rem;
}

.review-rotator-card {
  min-height: 180px;
  padding: 18px;
  border-radius: 16px;
}

.review-rotator-stars {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.review-rotator-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.review-rotator-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 14px;
  min-height: 64px;
}

.review-rotator-meta {
  font-size: 0.86rem;
}

@media (max-width: 1100px) {
  .review-showcase {
    padding: 60px 20px;
  }

  .review-showcase-grid {
    grid-template-columns: 1fr;
  }

  .review-summary-box,
  .review-rotator-box {
    padding: 18px;
  }
}

/* ===== HEADER BETA BADGE V2 ===== */

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.beta-badge-header {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 14px 8px 12px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;

  background:
    linear-gradient(135deg, rgba(255, 20, 20, 0.14), rgba(120, 0, 0, 0.18)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.18);
  box-shadow:
    0 10px 24px rgba(255, 0, 0, 0.10),
    0 10px 18px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease,
    min-height .22s ease,
    padding .22s ease;
}

.beta-badge-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #ff3333, transparent 72%);
  opacity: 0.9;
}

.beta-badge-header:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 0, 0.28);
  box-shadow:
    0 14px 28px rgba(255, 0, 0, 0.16),
    0 12px 22px rgba(0, 0, 0, 0.28);
}

.beta-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 34, 34, 0.92), rgba(180, 0, 0, 0.92));
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.18);
}

.beta-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.65);
  flex-shrink: 0;
  animation: betaBadgePulse 1.8s infinite;
}

.beta-badge-live-text {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.beta-badge-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.beta-badge-title {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beta-badge-sub {
  color: #ffb8b8;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beta-badge-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: transform .22s ease, background .22s ease;
}

.beta-badge-header:hover .beta-badge-arrow {
  transform: translateX(2px);
  background: rgba(255,255,255,0.08);
}

@keyframes betaBadgePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.82;
  }
}

/* scrolled kompakter */
header.scrolled .beta-badge-header {
  min-height: 42px;
  padding: 5px 10px 5px 8px;
  gap: 8px;
}

header.scrolled .beta-badge-live {
  padding: 6px 9px;
}

header.scrolled .beta-badge-live-text {
  font-size: 0.66rem;
}

header.scrolled .beta-badge-title {
  font-size: 0.82rem;
}

header.scrolled .beta-badge-sub {
  display: none;
}

header.scrolled .beta-badge-arrow {
  width: 28px;
  height: 28px;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 900px) {
  .brand-wrap {
    gap: 10px;
    min-width: 0;
  }

  .beta-badge-header {
    min-height: 42px;
    padding: 5px 10px 5px 8px;
    gap: 8px;
    max-width: 220px;
  }

  .beta-badge-live {
    padding: 6px 8px;
  }

  .beta-badge-live-text {
    font-size: 0.64rem;
    letter-spacing: 0.07em;
  }

  .beta-badge-title {
    font-size: 0.8rem;
  }

  .beta-badge-sub {
    display: none;
  }

  .beta-badge-arrow {
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }
}

@media (max-width: 640px) {
  .beta-badge-header {
    max-width: 160px;
  }

  .beta-badge-copy {
    display: none;
  }

  .beta-badge-header {
    padding-right: 8px;
  }
}