
body {
  background-color: #0e0e0e;
  color: #f7931a;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#bonk-header {
  background: linear-gradient(90deg, #1a1a1a, #111);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  box-shadow: 0 0 25px #f7931a66;
  position: sticky;
  top: 0;
  z-index: 999;
}

#bonk-img {
  height: 120px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 0 12px #f7931a;
}

nav {
  display: flex;
  gap: 15px;
}

nav button {
  background-color: #0e0e0e;
  border: 2px solid #f7931a;
  color: #f7931a;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px transparent;
}

nav button:hover {
  background-color: #f7931a;
  color: #0e0e0e;
  box-shadow: 0 0 15px #f7931a;
}

main {
  padding: 40px 20px;
}

.panel {
  margin: 30px auto;
  padding: 30px;
  border: 2px solid #f7931a;
  border-radius: 16px;
  background-color: #1a1a1a;
  box-shadow: 0 0 25px #f7931a33;
  max-width: 900px;
}

input {
  width: 70%;
  padding: 12px;
  margin-top: 15px;
  margin-right: 10px;
  background: #111;
  color: #f7931a;
  border: 1px solid #f7931a;
  border-radius: 6px;
  font-size: 15px;
}

button {
  padding: 12px 18px;
  background: #f7931a;
  border: none;
  border-radius: 6px;
  color: #0e0e0e;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
}

.log {
  max-height: 400px;
  overflow-y: auto;
  background: #0a0a0a;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #f7931a;
  box-shadow: inset 0 0 10px #f7931a33;
}
