:root{
  --bg: #1e1b4b;
  --card: #ffffff;
  --muted: #9aa0c3;
  --accent: #ff6b9a;
  --glass: rgba(255,255,255,0.06);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg) 0%, #121026 100%);
  color: #f6f7fb;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.card{
  width:100%;
  max-width:720px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius:14px;
  padding:28px;
  box-shadow: 0 8px 30px rgba(2,2,10,0.6);
  border: 1px solid rgba(255,255,255,0.04);
}


h1{
  margin:0 0 6px 0;
  font-size:20px;
  letter-spacing:0.2px;
  color:#fff;
}
.lead{
  margin:0 0 18px 0;
  color:var(--muted);
  font-size:14px;
}

.form label{
  display:block;
  margin:10px 0 6px 0;
  color:var(--muted);
  font-size:13px;
}
input[type="text"],
input[type="email"],
textarea{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color:#f2f4fb;
  font-size:15px;
  outline:none;
  transition: box-shadow .15s, border-color .15s, transform .05s;
}
input:focus, textarea:focus{
  box-shadow: 0 6px 18px rgba(20,8,45,0.5);
  border-color: rgba(255,107,154,0.85);
  transform: translateY(-1px);
}

.row{
  display:flex;
  gap:10px;
  margin-top:14px;
  align-items:center;
}
.btn{
  border: none;
  padding:10px 14px;
  border-radius:10px;
  background:var(--accent);
  color:white;
  font-weight:600;
  cursor:pointer;
  min-width:120px;
  box-shadow: 0 6px 18px rgba(255,107,154,0.12);
  transition: transform .12s, opacity .12s;
}
.btn:hover{ transform: translateY(-3px) }
.btn.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:var(--muted);
  font-weight:600;
  min-width:92px;
}

.hint{ margin-top:10px; color:#c9d0ef; font-size:13px }
.small{ margin-top:12px; color:var(--muted); font-size:13px }
.mail-link{ color: rgba(255,255,255,0.9); text-decoration:underline; }

@media (max-width:520px){
  .card{ padding:18px }
  .btn{ min-width:92px; padding:10px }
}

.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);
}
