body.Events-page {
  background: url("../images/backgrounds/ring.webp") no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  color: #ff3c00;
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
}

.events-section {
  padding-top: 170px;
  text-align: center;
}

.champion-card {
  margin-bottom: 40px;
}

.champion-card h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #ff3c00;
}

.card {
  display: inline-block;
  margin: 10px;
  cursor: pointer;
}

.card img {
  width: 150px;
  height: auto;
  border: 3px solid #ff3c00;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.05);
}

.match-block {
  margin-bottom: 60px;
}

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

.vs {
  width: 60px;
  height: auto;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}

.popup img {
  max-width: 80%;
  max-height: 80%;
  border: 5px solid #ff3c00;
  border-radius: 10px;
}

.close-btn {
  color: white;
  font-size: 2rem;
  margin-top: 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .matchup-row {
    flex-direction: column;
  }

  .card img {
    width: 120px;
  }

  .vs {
    width: 40px;
  }
}
