@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: #111;
            color: #fff;
            overflow-x: hidden;
        }
        
        .hero {
            min-height: calc(100vh - 80px);
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            padding-top: 140px;
            padding-bottom: 80px;
        }
        
        .hero-logo {
            width: 250px;
            height: 250px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.5s ease forwards;
        }
        
        .hero-title {
            font-size: 2.3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.5s ease forwards 0.3s;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            text-align: center;
            max-width: 800px;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.5s ease forwards 0.6s;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #111;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.5s ease forwards 0.9s;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }
        
        .bg-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            background: rgba(255, 215, 0, 0.2);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23222" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,165.3C960,149,1056,171,1152,186.7C1248,203,1344,213,1392,218.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .content-section {
            background-color: #222;
            padding: 100px 20px;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlide 0.8s ease forwards;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

        
        .section-title.visible {
            animation: fadeInUp 1s ease forwards;
        }
        
        .card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .card {
            background-color: #333;
            border-radius: 15px;
            overflow: hidden;
            width: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .card.visible {
            animation: fadeInUp 1s ease forwards;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }
        
        .card-img {
            width: 100%;
            height: 200px;
            background-color: #444;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 3rem;
            color: #FFD700;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #FFD700;
        }
        
        .card-text {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .card-link {
            display: inline-block;
            color: #FFD700;
            font-weight: 600;
            text-decoration: none;
            padding-bottom: 3px;
            border-bottom: 2px solid #FFD700;
            transition: padding-bottom 0.3s ease;
        }
        
        .card-link:hover {
            padding-bottom: 6px;
        }
        
        footer {
            background-color: #111;
            padding: 50px 20px;
            text-align: center;
        }
        
        .footer-logo {
            width: 100px;
            margin-bottom: 20px;
        }
        
        .footer-text {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 30px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            color: #FFD700;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .instagram-icon {
            width: 22px;  
            height: 22px;
          }
        
        .social-icon:hover {
            background-color: #FFD700;
            color: #111;
            transform: translateY(-5px);
        }
        
        .copyright {
            font-size: 0.8rem;
            color: #555;
        }
        .idea-form {
            margin-top: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .idea-form input,
        .idea-form textarea {
            width: 100%;
            padding: 10px;
            margin: 8px 0;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }
        .idea-form button {
            padding: 10px 20px;
            font-size: 16px;
            background-color: white;
            color: #00aaff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .scroll-anchor {
            scroll-margin-top: 60px; /* Abstand für den Header */
        }
        .success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease forwards;
  margin-top: 40px;
}

.success-message .checkmark {
  font-size: 5rem;
  color: #00ff88;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.8);
  animation: popIn 0.8s ease forwards;
}

.success-message .thanks-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00ff88;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


        
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-100px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-logo {
                width: 250px;
                height: 250px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            .header-wrapper {
                flex-direction: column;
                gap: 10px;
                padding: 15px 40px;
                align-items: center;
            }

            .nav-left,
.nav-right {
  display: flex;
  gap: 20px;
}

.logo-wrapper {
  flex: 0 0 auto;
}

            .nav-links {
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
                text-align: center;
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            .logo-center {
                height: 60px;
                margin: 10px 0;
            }
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 15, 26, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 80px;
            z-index: 999;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
          }
      
          .header-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1400px;
            gap: 80px;
          }
      
          .nav-links {
            display: flex;
            gap: 40px;
            font-weight: 600;
            font-size: 1.2rem;
          }
      
          .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
          }
      
          .nav-links a:hover {
            color: #FFD700;
          }
      
          .logo-center {
            height: auto;
            max-height: 60px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
          }


          .scrolled .logo-center {
            height: 50px;
          }

          .promo-block {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
          }
      
          .promo-block.visible {
            opacity: 1;
            transform: translateY(0);
          }
      
          .promo-img-wrapper {
            position: relative;
            width: 260px;
            text-align: center;
            opacity: 0;
            transition: opacity 1.5s ease;
          }
      
          .promo-img-wrapper.visible {
            opacity: 1;
          }
      
          .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
            animation: pulseBackground 8s infinite ease-in-out;
            z-index: 0;
          }
      
          @keyframes pulseBackground {
            0% { opacity: 0.2; }
            50% { opacity: 0.4; }
            100% { opacity: 0.2; }
          }

          .player-card {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
            background: #1c1c1c;
            border-radius: 15px;
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
          }
          
          .player-cover {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
          }
          
          .player-info {
            flex: 1;
          }
          
          .player-info h3 {
            margin: 0 0 10px;
            font-size: 1.4rem;
            color: #FFD700;
          }
          
          .player-info p {
            margin: 0 0 10px;
            font-size: 1rem;
            color: #ccc;
          }
          
          audio {
            width: 100%;
          }

          a {
            color: inherit;
            text-decoration: none;
          }
          
          a:visited {
            color: inherit;
          }

          
          .card a {
            color: #FFD700;
            font-weight: 600;
            text-decoration: underline;
          }
          
          .card a:visited {
            color: #FFD700;
          }

          .card-content a,
.card-content a:visited,
.card-content a:hover,
.card-content a:active {
  color: #FFD700 !important;
  text-decoration: underline;
  font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      display: none;
    }
  }
  
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0f1a;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .mobile-menu.show {
    display: flex;
  }
  
  .mobile-menu a {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px;
    text-decoration: none;
  }

  .team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  background: #1c1c1c;
  border-radius: 15px;
  padding: 20px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-name {
  font-size: 1.3rem;
  color: #FFD700;
  margin-bottom: 5px;
}

.team-role {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.9rem;
  color: #aaa;
}

#idee .animated-bg {
  z-index: -1;
}





.form-box {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #1c1c1c;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-box input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.form-box button {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #111;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.form-box button:hover {
  opacity: 0.9;
}

.error-text {
  color: red;
  text-align: center;
  margin-top: 10px;
}



.admin-ideen-liste {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-ideen-card {
  background: #1c1c1c;
  border-radius: 10px;
  padding: 20px;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.admin-ideen-card h4 {
  color: #FFD700;
  margin-bottom: 8px;
}

.admin-ideen-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
}

.admin-add-btn {
  position: fixed;
  top: 150px; /* unter dem Header */
  right: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #111;
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  z-index: 1000;
}


.admin-add-btn:hover {
  opacity: 0.9;
}

.modal {
  display: none; /* Start: unsichtbar */
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background: #1c1c1c;
  margin: 10% auto;
  padding: 20px;
  border-radius: 15px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.close-btn:hover {
  color: #FFD700;
}



.auth-btn-container {
  position: absolute;
  top: middle;
  right: 80px;
  display: flex;
  gap: 15px;
}

.auth-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #111;
  padding: 8px 14px;
  font-size: 1.0rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  z-index: 10;
}

.auth-btn:hover {
  opacity: 0.9;
}

