* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1a1209;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'IM Fell English', serif;
}

#console-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#canvas {
  display: block;
  image-rendering: auto;
  cursor: none;
}

#footer {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.plaque {
  background: linear-gradient(180deg, #c9a84c 0%, #a07830 30%, #8b6914 60%, #a07830 100%);
  color: #2a1f0a;
  font-family: 'IM Fell English', serif;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 2px;
  border: 1px solid #6b5010;
  box-shadow: inset 0 1px 0 rgba(255,255,200,0.4), 0 2px 4px rgba(0,0,0,0.5);
  text-shadow: 0 1px 0 rgba(255,255,200,0.3);
  letter-spacing: 0.5px;
}

a.plaque {
  text-decoration: none;
  transition: filter 0.2s;
}

a.plaque:hover {
  filter: brightness(1.15);
}

@media (max-width: 600px) {
  #footer {
    margin-top: 4px;
    gap: 8px;
  }
  .plaque {
    font-size: 9px;
    padding: 3px 10px;
  }
}