body {
  margin: 0;
  background: #000;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

#logo {
  height: 50px;
}

#branding h1 {
  color: gold;
  margin: 0;
}

#branding p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

#copyright {
  font-size: 12px;
  color: #ccc;
}

main {
  position: relative;
}

#video, #overlay {
  width: 100%;
  height: auto;
}

#hud {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  padding: 8px;
  border-radius: 6px;
  text-align: left;
  font-size: 12px;
}

#hud button {
  margin-top: 5px;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
}

#reset {
  background: gold;
  color: black;
  font-weight: bold;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 12px;
  color: #ccc;
}

#flag {
  height: 20px;
  margin-right: 5px;
}
