#preferenceSurveyModal {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.survey-modal-bg {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.65);
}
.survey-modal-content {
  position: relative;
  background: #181818;
  color: #fff;
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: 12px;
  min-width: 350px;
  max-width: 95vw;
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
  z-index: 2;
  text-align: center;
}
.survey-modal-content h2 {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.survey-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  margin: 0.6rem 0 1.2rem 0;
  justify-content: center;
}
.survey-genres label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.survey-modal-content select {
  width: 80%;
  padding: 0.5rem;
  margin: 0.7rem 0 1.4rem 0;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  background: #222;
  color: #fff;
}
.survey-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}
.survey-actions button {
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.survey-actions button:hover {
  background: #b00610;
}
