body {
  margin: 0;
  padding: 0;
  background-color: #1e1f00;
  font-family: monospace;
  color: yellow;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* center vertically */
  align-items: center;
}

.title {
  font-size: 80px;
  font-weight: bold;
  margin-top: 100px;
  letter-spacing: 2px;
  text-transform: lowercase;
}

#title {
  color: #665c00;
  font-size: 6.8vw;
  text-align: center;
  margin-bottom: 180px; /* increased space below title */
}

.button-bar {
  display: flex;
  gap: 40px;
  /* Removed: position and top offset */
}

.square-button {
  width: 150px;
  height: 150px;
  background: #908200;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: yellow;
  text-align: center;
  padding: 10px;
  border: none;
  outline: none;
  box-shadow: 0 0 10px #222;
  text-decoration: none;
  font-size: 20px;
  text-transform: lowercase;
}

.square-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px yellow;
}

.button-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: brightness(1.2) contrast(1.1);
}

h1 {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

#message {
  font-family: monospace;
  color: yellow;
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 40px;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.flicker {
  color: #ffff00;
  text-shadow: 0 0 8px #ffff00;
  transition: color 0.1s ease, text-shadow 0.1s ease;
}

.cd-button img {
  width: 48px;   /* adjust size */
  height: 48px;
  margin-right: 8px;
  vertical-align: middle;
}

