body {
  background: #111;
  font-family: sans-serif;
}

section.relative::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(to bottom, #1e1b4b00 30%, #1e1b4b 100%);
  z-index: 15;
  pointer-events: none;
}





.dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown > li {
  position: relative;
  display: inline-block;
}

.dropdown > li > a, .dropdown > li > p {
  background: #1070ff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  cursor: pointer;
}

.dropdown > li > a:hover, .dropdown > li > p:hover {
  background: #0b5ee6;
}

.dropdown .dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #222;
  padding: 10px 0;
  margin: 0;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.18s ease;
  transform: scale(0.98);
  pointer-events: none;
  z-index: 50;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.dropdown > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.dropdown .dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.dropdown .dropdown-menu li a:hover {
  background: #333;
  transform: scale(1.05);
}

.fixed-dropdown {
  position: fixed;
  top: 20px;
  right: 20px;
  margin: 0;
  z-index: 1000;
  list-style: none;
}

.fixed-dropdown > li > p {
  border-radius: 50%;
  padding: 12px 15px;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1070ff;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.14s ease, background 0.18s ease;
}

.fixed-dropdown > li > p:hover {
  transform: translateY(-2px);
  background: #0b5ee6;
}


.gradient-transition {
  position: relative;
  height: 100px;
  background: linear-gradient(to bottom, #7c3aed, #1e1b4b);
  margin-top: -1px; 
}

.fade-in-sections {
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections styling */
.producers-section, .voiceactors-section {
  margin-top: 4rem;
}

.voiceactors-section img {
  transition: transform 0.3s ease;
}

.voiceactors-section img:hover {
  transform: scale(1.05);
}
