body {
  margin: 0;
  background: #f4f4f4;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.title {
  font-size: 64px;
  margin-bottom: 60px;
}

.matchup {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.profile {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border: 2px solid black;
  cursor: pointer;
}

.or {
  font-size: 28px;
  font-weight: bold;
}

.podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
}

.place {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label {
  font-weight: bold;
  margin-bottom: 8px;
}

.mini {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid black;
  margin-bottom: 10px;
}

.block {
  width: 140px;
}

.first .block { height: 240px; }
.second .block { height: 180px; }
.third .block { height: 210px; }

.gold { background: #FFD700; }
.silver { background: #C0C0C0; }
.bronze { background: #CD7F32; }