* { box-sizing: border-box; font-family: system-ui; }

body { margin: 0; background: #1e1e1e; color: white; }

#board { display: flex; height: 100vh; }

.match {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.left { background: #7c1f1f; }
.right { background: #1f7c45; }

.divider { width: 10px; background: black; }

.team-box {
  background: rgba(255,255,255,0.18);
  border-radius: 30px;
  padding: 32px;
  min-width: 300px;
  text-align: center;
}

.score { font-size: 96px; font-weight: 900; }
.legs { font-size: 28px; }

.host-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: #262626;
  padding: 50px;
  border-radius: 28px;
  text-align: center;
}

.login-box input, .login-box button {
  padding: 14px;
  font-size: 22px;
  border-radius: 18px;
  border: none;
  margin-top: 12px;
}

.login-box button { background: #5b8cff; color: white; font-weight: bold; }

.host-grid { display: flex; width: 100%; height: 100%; }

.host-match {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.host-panel {
  background: rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 26px;
}

input, button {
  border-radius: 16px;
  border: none;
  padding: 14px;
  font-size: 22px;
}

button { background: #5b8cff; color: white; font-weight: bold; }

.undo { background: #ff944d; }
.reset { background: #ff4d4d; }

.hidden { display: none; }


