body {
  font-family: "Poppins", sans-serif;
  margin: 20px 30px;
}

@media (max-width: 768px) {
  body {
    margin: 10px;
  }
}

.image {
  width: 300px;
  height: 90px;
}

.player {
  display: flex;
}

.player:first-of-type {
  border-bottom: 1px solid #555;
}

.player .name {
  flex: 1;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.player .score {
  background: #ff8533;
  color: #fff;
  padding: 0px 10px;
}

.title-container {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .title-container {
    flex-direction: column;
  }
}

.stream a {
  font-weight: bold;
  color: white;
}

.stream {
  font-size: 1rem !important;
  text-align: center;
}

.title {
  font-size: 2.2rem;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  justify-content: center;
  border-left: 1px solid #ddd;
  margin: 10px 20px;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.4rem;
    border-left: 0;
    margin: 0;
    padding: 0;
    text-align: center;
  }
}

.bracket-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bracket {
  display: grid;
  grid-template-columns: repeat(3, 30vw);
  gap: 1vw;
}

.round {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.center {
  justify-content: center;
}

.match span:not(.score) {
  font-weight: 600;
}

.match {
  background: #1e1e1e;
  border: 2px solid #333;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, border 0.3s;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .match {
    font-size: 0.8rem;
  }
}

.match:hover {
  background: #2a2a2a;
  border-color: #555;
}

.match.winner {
  border-color: #ff8533;
}

.match.winner:hover {
  background: #ff8533;
  border-color: #ddd;
}

.match span {
  display: block;
  margin: 5px 0;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #ff8533;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.3rem;
  }
}
