body {
  background-color: #001f3f;
  color: #fff;
  padding-top: 20px;
  transition: background-color 0.3s ease;
}

body:hover {
  background-color: #002a57;
}

textarea#jsonInput {
  display: block;
  margin: 60px auto;
  width: 90%;
  transition: box-shadow 0.3s ease;
}

textarea#jsonInput:hover {
  box-shadow: 0 0 10px rgba(255, 159, 69, 0.5);
}

button {
  display: block;
  margin: 0 auto 60px;
  background-color: #ff9f45;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover {
  transform: scale(1.1);
  background-color: #ff7f00;
}

.container {
  background-color: #001f3f;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  margin-top: 60px;
  transition: box-shadow 0.3s ease;
}

.container:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.match {
  background-color: #001f3f;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  border-left: 5px solid #ff9f45;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.match.highlight {
  border-left: 5px solid #ff7f00;
  background-color: #3a1a1ab0;
}

.match:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

.match-link {
  border: 2px solid #ff9f45;
  height: 50px;
  width: 5px;
  background-color: #ff9f45;
  margin: 5px auto;
  transition: background-color 0.3s ease;
}

.match-link:hover {
  background-color: #ff7f00;
}

.col-md-6:nth-of-type(odd) .match {
  border-right: 3px solid #ff9f45;
}

.team,
.vs {
  text-align: center;
  margin: 10px 0;
}

.vs {
  font-weight: bold;
}

.cup-title {
  text-align: center;
  margin: 60px 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.tournament {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bracket {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.match-id {
  font-weight: bold;
  margin-bottom: 5px;
}

.vs {
  text-align: center;
  margin: 5px 0;
}

.match:nth-child(even) {
  margin-bottom: 70px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #001f3f;
}

::-webkit-scrollbar-thumb {
  background-color: #ff9f45;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ff7f00;
}

#cupName {
  font-size: 10px;
  text-align: center;
  color: #ff9f45;
}

@keyframes neon {
  from {
    text-shadow: 0 0 10px rgba(255, 159, 69, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 159, 69, 1);
  }
}
