/* === Basis === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === Body & Container === */
body {
  background: #2b2d3a;
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 60px 40px;
}

.container {
  width: 100%;
  max-width: 1450px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #8c91a8;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8c91a8, transparent);
}

.subtitle {
  font-size: 1.4rem;
  opacity: 0.85;
  margin-bottom: 30px;
  font-weight: 300;
  color: #c0c2cc;
}

/* === Zurück Button === */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 30, 40, 0.8);
  color: #f0f0f0;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 50px;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 100, 120, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-btn:hover {
  transform: translateY(-3px);
  background: rgba(40, 40, 50, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


.anime-stage {
  position: relative;
  width: 100%;
  min-height: 1300px;
  margin-bottom: 80px;
}


.anime-item {
  position: absolute;
  width: 260px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.anime-item:hover {
  transform: translateY(-8px) scale(1.02);
}


.anime-image {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(130, 135, 160, 0.22);
  background: rgba(25, 25, 35, 0.75);
  margin-bottom: 14px;
}

.anime-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}



.anime-item h3 {
  font-size: 1.7rem;
  color: #f2f4f8;
  margin-bottom: 10px;
}

.anime-item p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #d9dce7;
  font-style: italic;
  max-width: 260px;
  font-weight: 500;
}


.goku {
  top: 20px;
  left: 70px;
}

.erwin {
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
}

.ruffy {
  top: 60px;
  right: 80px;
}

.zorro {
  top: 680px;
  left: 300px;
}

.thors {
  top: 760px;
  right: 280px;
}


.goku img {
  object-position: center 20%;
}

.erwin img {
  object-position: center 15%;
}

.ruffy img {
  object-position: center 18%;
}

.zorro img {
  object-position: center 20%;
}

.thors img {
  object-position: center 12%;
}

footer {
  margin-top: 20px;
  text-align: center;
  color: rgba(250, 250, 250, 0.6);
  font-size: 0.9rem;
  padding: 20px;
  border-top: 1px solid rgba(100, 100, 120, 0.2);
  width: 100%;
}

.anime-item:hover {
  transform: translateY(-8px) scale(1.02);
}

.erwin:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.005);
}


@media (max-width: 1200px) {
  .anime-stage {
    min-height: 1500px;
  }

  .goku {
    top: 20px;
    left: 30px;
  }

  .erwin {
    top: 500px;
    left: 90px;
    transform: none;
  }

  .ruffy {
    top: 120px;
    right: 30px;
  }

  .zorro {
    top: 920px;
    left: 60px;
  }

  .thors {
    top: 980px;
    right: 60px;
  }
}

/* === Mobile === */
@media (max-width: 768px) {
  body {
    padding: 40px 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .anime-stage {
    position: static;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
  }

  .anime-item {
    position: static;
    width: 100%;
    max-width: 420px;
    transform: none !important;
  }

  .anime-image {
    height: 300px;
  }

  .anime-item p {
    max-width: 100%;
  }
}