body {
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: white;
  margin: 0;
}

.draft-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  height: 100vh;
}

.team {
  background: #111;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bans, .picks {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.bans img, .picks img {
  width: 50px;
  height: 50px;
  border: 2px solid #555;
  border-radius: 8px;
}

.draft-board {
  text-align: center;
  padding: 20px;
  overflow-y: auto;
}

.phase {
  margin: 10px 0;
  font-size: 1.2em;
}

.champion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 64px);
  gap: 8px;
  justify-content: center;
}

.champion-grid img {
  width: 64px;
  height: 64px;
  border: 2px solid #333;
  border-radius: 8px;
  transition: 0.2s;
  cursor: pointer;
}

.champion-grid img:hover {
  transform: scale(1.1);
  border-color: gold;
}

.team-blue      { border-right: 2px solid #222; }
.team-red       { border-left: 2px solid #222; }
