* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#background {
  background-image: url("bg.png");
  background-size: cover;
  background-position: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: brightness(0.7);
}

#logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  width: 80%;
}

#steam-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.5);
  padding: 12px 16px;
  border-radius: 10px;
  color: white;
}

#steam-info img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 12px;
}

#steam-name {
  font-size: 18px;
  margin-bottom: 4px;
}

#steam-id {
  font-size: 14px;
  color: #ccc;
}

#yt-player {
  display: none;
}
