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

body {
  background: #1a1410;
  background-image: 
    radial-gradient(ellipse at center, #2a2018 0%, #0d0a07 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'IM Fell English SC', serif;
  cursor: default;
}

#tv-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#canvas {
  display: block;
}

#controls-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#footer {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'IM Fell English SC', serif;
  font-size: 11px;
  color: #6b5a42;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#footer a {
  color: #8b7355;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

#footer a:hover {
  color: #c4a86b;
}

@media (max-width: 768px) {
  body {
    justify-content: flex-start;
    padding-top: 10px;
  }
  #footer {
    margin-top: 8px;
    font-size: 9px;
  }
}