  body {
      background-color: #000000;
      color: #fff;
      font-family: Arial, sans-serif;
      padding: 20px;
  }

  .container {
      max-width: 500px;
      margin: auto;
  }

  .profile-preview {
      text-align: center;
      margin-top: 20px;
  }

  .profile-preview img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
  }

  .alert-custom {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 9999;
      width: 300px;
      display: none;
  }

  .movie-search-results img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 5px;
      cursor: pointer;
      transition: opacity 0.3s;
  }

  .movie-search-results img:hover {
      opacity: 0.7;
  }

  /* Para o slider, deixar as imagens atrás */
  .background-slider {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      overflow: hidden;
  }

  .background-slider img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
}

/* Estilos para o PIN no Passo 3 */
#profilePin {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    letter-spacing: 15px;
    padding-left: 25px;
    font-weight: bold;
    border-radius: 12px;
}

#profilePin:focus {
    border-color: #e50914;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.form-check-input:checked {
    background-color: #e50914;
    border-color: #e50914;
}

.background-slider img.active {
      opacity: 1;
  }

  /* Para navegadores baseados em WebKit (Chrome, Edge, Safari) */
  ::-webkit-scrollbar {
      width: 12px;
      /* Largura da barra */
  }

  ::-webkit-scrollbar-track {
      background: #00000000;
      /* Cor do fundo da barra */
  }

  ::-webkit-scrollbar-thumb {
      background-color: red;
      /* Cor da barra de rolagem */
      border-radius: 6px;
      border: 3px solid red;
      /* Espaço ao redor da barra */
  }

  /* Indicador de Etapas */
  .progress-steps {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
  }

  .step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0.5;
      transition: opacity 0.3s;
  }

  .step-item.active {
      opacity: 1;
  }

  .step-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #333;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      transition: all 0.3s;
  }

  .step-item.active .step-number {
      background: linear-gradient(45deg, #ff0000, #0000ff);
      box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  }

  .step-divider {
      width: 60px;
      height: 2px;
      background: #333;
      margin: 0 10px;
  }

  .step-item.active ~ .step-divider {
      background: linear-gradient(90deg, #ff0000, #0000ff);
  }

  /* Hover nas imagens */
  .avatar-option,
  #movieResults img,
  #gifResults img {
      transition: all 0.3s ease;
      border: 3px solid transparent;
      border-radius: 8px;
      cursor: pointer;
  }

  .avatar-option:hover,
  #movieResults img:hover,
  #gifResults img:hover {
      transform: scale(1.1);
      border-color: #ff0000;
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  }

  .avatar-option.selected,
  #movieResults img.selected,
  #gifResults img.selected {
      border-color: #ff0000;
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
      transform: scale(1.05);
  }

  /* Feedback do input */
  .form-control {
      background-color: #ffffff !important;
      color: #000 !important;
      border-color: #ccc;
  }

  .form-control:focus {
      background-color: #ffffff !important;
      color: #000 !important;
      border-color: #ff0000;
      box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
  }

  .form-control.is-valid {
      border-color: #28a745;
  }

  .form-control.is-invalid {
      border-color: #dc3545;
  }

  #nameFeedback {
      font-size: 0.875rem;
      margin-top: 0.25rem;
  }

  /* Preview melhorado */
  .profile-preview img {
      border: 4px solid #ff0000;
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  }