/* The Vault — Style d'affichage */
#theVaultGame {
  font-family: 'Bebas Neue', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  background: #000;
  padding: 24px 12px;
  text-align: center;
}

#theVaultGame .tv-panel {
  background: #000;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 22px;
  border-radius: 0;
}

#theVaultGame .tv-sub {
  opacity: .9;
  font-size: 20px;
  margin-bottom: 10px;
}

#theVaultGame .tv-form input[type=text],
#theVaultGame .tv-form input,
#theVaultGame #tvName,
#theVaultGame #tvCode {
  -webkit-appearance: none !important;
  appearance: none !important;
  background-color: #000000 !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 0 !important;
  padding: 10px !important;
  font-size: 18px !important;
  width: 28% !important;
  min-width: 180px !important;
  max-width: 360px !important;
  margin: 0 8px 16px !important;
  transition: background-color 0.3s ease, background 0.3s ease !important;
  box-shadow: none !important;
}

#theVaultGame .tv-form input:-webkit-autofill,
#theVaultGame .tv-form input:-webkit-autofill:hover,
#theVaultGame .tv-form input:-webkit-autofill:focus,
#theVaultGame .tv-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #000000 inset !important;
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s;
}

#theVaultGame .tv-form input[type=text]::placeholder,
#theVaultGame .tv-form input::placeholder {
  color: #dddddd !important;
  opacity: 1 !important;
}

#theVaultGame .tv-form input[type=text]:focus,
#theVaultGame .tv-form input:focus {
  background-color: #111111 !important;
  background: #111111 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .3) !important;
}

#theVaultGame .tv-btn {
  display: none;
  background: #fff;
  color: #000;
  border: 0;
  border-radius: 0;
  padding: 12px 25px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
}

#theVaultGame .tv-btn:hover {
  background: #ddd;
}

#theVaultGame .tv-error {
  color: #ff4c4c;
  margin-top: 10px;
  font-size: 18px;
}

#theVaultGame .tv-result {
  margin-top: 22px;
}

@media(max-width:640px) {

  #theVaultGame .tv-form input[type=text],
  #theVaultGame .tv-form input,
  #theVaultGame #tvName,
  #theVaultGame #tvCode {
    width: 100% !important;
    margin: 0 0 12px !important;
  }
}