* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0a0a0f;
  color: #fff;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 100;
}

.logo-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-header img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
}

.logo-header h1 {
  color: #a855ff;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #a855ff;
  text-shadow: 0 0 8px #a855ff;
}

.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1604147706283-7df3c58aabcc?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.hero .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h2 {
  font-size: 3.5em;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 0 20px #a855ff;
}

.hero span {
  color: #a855ff;
}

.hero p {
  font-size: 1.1em;
  color: #ccc;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  background: #a855ff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  margin-top: 25px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.btn:hover {
  background: #7a00ff;
  box-shadow: 0 0 20px #7a00ff;
}

section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5em;
  color: #a855ff;
  margin-bottom: 20px;
}

p {
  text-align: center;
  line-height: 1.7;
}

.team-grid, .gangs, .links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.member, .gang {
  background: rgba(20, 20, 30, 0.8);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  width: 250px;
  box-shadow: 0 0 20px #7a00ff33;
  transition: 0.3s;
}

.member:hover, .gang:hover {
  box-shadow: 0 0 30px #7a00ff77;
  transform: translateY(-5px);
}

/* Logo-Stil (über Name) */
.member img, .gang img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #7a00ff;
  box-shadow: 0 0 15px #7a00ff55;
  transition: 0.3s;
}

.member:hover img, .gang:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 25px #a855ff;
}

.member h3, .gang h3 {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.member p {
  color: #ccc;
  font-size: 0.95em;
}

footer {
  text-align: center;
  padding: 30px;
  color: #888;
  border-top: 1px solid #222;
  background: #0a0a0f;
}

a {
  color: #a855ff;
}

/* Scroll-Animation */
section, .member, .gang {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
