header {
  max-height: 8vh;
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  align-items: center;
  justify-items: center;

  position: fixed;

  background-color: #000000aa;
  backdrop-filter: blur(10px);

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

header .logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
header .logo a img {
  max-height: 6vh;
}

header .navigation .menu-entete-container ul {
  display: flex;
  align-items: center;
  height: 100%;

  gap: 2vw;
  list-style: none;
  margin: 0;
}
header .navigation .menu-entete-container ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);

  font-weight: lighter;
  font-size: 0.9rem;
}
header .navigation .menu-entete-container ul li a:hover {
  color: white;
  text-shadow: 0 0 10px #69e0ff, 0 0 20px #69e0ff, 0 0 40px #69e0ff;
}

header .compte {
  color: rgba(255, 255, 255, 0.8);

  font-weight: lighter;
  font-size: 0.9rem;
}

/* Manga */
.manga-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.manga-header {
  display: flex;
  gap: 40px;
}

.manga-thumbnail img {
  width: 320px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.manga-infos h1 {
  margin-top: 0;
  font-size: 32px;
}

.manga-synopsis {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
}

.manga-meta li {
  margin: 5px 0;
}

.manga-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.manga-btn {
  background: #111;
  color: white;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.2s;
}

.manga-btn:hover {
  background: #444;
}

.manga-comments {
  margin-top: 60px;
}

.home .hero-header {
  position: relative;
  height: 100vh;

  overflow: hidden;
}
.home .hero-header .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
