body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f0f0f0; /* Rest of your normal page background */
}

.scratch-topbar {
  background-color: #4d97ff; /* Classic Scratch blue */
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.scratch-topbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  margin-right: 20px;
}

.scratch-topbar a:hover {
  text-num: underline;
}

.scratch-logo {
  font-size: 18px !important;
  font-family: sans-serif;
  letter-spacing: -0.5px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
}

.join-btn {
  background-color: #ffab19; /* Scratch orange button */
  padding: 6px 12px;
  border-radius: 4px;
}

.join-btn:hover {
  background-color: #ff8c00;
}