body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: 'Courier New', monospace;
  text-align: center;
}

/* LOADING SCREEN STYLES */
#loading-screen {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  flex-direction: column;
}

#loading-text-container {
  text-align: center;
}

#loading-text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.loading-bar-container {
  width: 300px;
  height: 10px;
  border: 2px solid white;
  overflow: hidden;
  margin: 0 auto;
  background-color: #111;
  border-radius: 5px;
}

.loading-bar {
  height: 100%;
  width: 50%;
  background: white;
  animation: loadingSlide 2s linear infinite;
  border-radius: 5px;
}

/* MAIN CONTENT */
#main-content {
  padding: 2rem;
}

#logo {
  width: 300px;
  max-width: 80%;
  margin-bottom: 2rem;
}

button {
  background: none;
  color: white;
  border: 2px solid white;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
}

button:hover {
  background: white;
  color: black;
  transition: 0.3s;
}

/* Persistent loader (smaller bar) */
.persistent-loader {
  margin-top: 3rem;
}

.loading-bar-container.small {
  width: 200px;
  height: 6px;
}

/* Token Address Styles */
.contract-address {
  margin: 1rem auto 2rem;
}

#contract {
  background: black;
  color: white;
  border: 1px solid white;
  padding: 0.4rem;
  width: 80%;
  max-width: 400px;
  font-family: monospace;
  cursor: pointer;
  font-size: 0.9rem;
}

#contract:focus {
  outline: none;
  border-color: gray;
}

@keyframes loadingSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
