body {
  background-color: #0d0d0d;
  font-family: 'Courier New', monospace;
  color: #ffbb33;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  text-align: center;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5;
  filter: brightness(0.7) saturate(1.1);
}

.container {
  max-width: 600px;
  width: 100%;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
}

input, select {
  width: 90%;
  padding: 10px;
  border: 1px solid #ff8800;
  border-radius: 5px;
  margin-bottom: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffe066;
  text-align: center;
}

button {
  padding: 10px 30px;
  border: none;
  background-color: #ff6600;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

button:hover {
  background-color: #ff8533;
  transform: scale(1.03);
}

#log-output {
  margin-top: 20px;
  max-height: 300px;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffbb33;
  text-align: left;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ff660033;
}

.notice {
  font-size: 13px;
  color: #ffaa00;
  margin: 10px 0;
}

.warning {
  color: #ff4444;
  font-size: 13px;
  margin-top: 15px;
}

.recaptcha-wrap {
  display: flex;
  justify-content: center;
}

.faucet-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.animated-icon {
  animation: bounce 1.5s infinite;
  color: #ff6600;
}

.log-note {
  font-size: 13px;
  color: #ffbb33;
  margin: 10px 0 5px;
  text-align: center;
}

.language-selector {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 2;
  font-size: 14px;
  color: #ffbb33;
}

.language-selector select {
  padding: 5px;
  background: rgba(0,0,0,0.6);
  color: #ffbb33;
  border: 1px solid #ff8800;
  border-radius: 5px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 600px) {
  .container {
    padding: 15px;
  }

  input, select {
    width: 100%;
  }
}

