.league-intro {
  width: 100%;
  padding: 45px 0 15px 0;
  text-align: center;
}

.league-intro h1 {
  font-size: 3.5rem;
  color: #000;
  font-weight: bold;
  margin: 25px 0;
  cursor: default;
}

.league-intro p {
  color: #afafaf;
  font-size: 1.2rem;
  margin: 25px;
}

.league-intro div {
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.league-intro a {
  background: var(--primary-color);
  padding: 15px 30px;
  color: #fff;
  border-radius: 1000px;
  text-align: center;
  transition: 0.3s;
}

.league-intro a:hover {
  box-shadow: 0 0 10px 2px var(--primary-light-color);
}

.steps {
  width: 100%;
  padding: 35px;
  display: flex;
  flex-direction: column;
  max-width: 950px;
  margin: 0 auto;
}

.step {
  display: flex;
  float: right;
  cursor: default;
}

.step-number {
  font-size: 4rem;
  font-weight: bold;
  color: var(--primary-color);
  padding: 0 25px;
}

.step-desc {
  flex: 1;
  text-align: right;
  display: flex;
  align-items: center;
}

.timer-container {
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  scale: 1;
}

.timer {
  font-size: 5rem;
  display: flex;
  flex-direction: row-reverse;
  cursor: default;
}

.timer > div {
  width: 145px;
  height: 145px;
  background: #fff;
  color: #000;
  border-radius: 25px;
  margin: 0 15px;
  position: relative;
  border: 1px solid #ccc;
  box-shadow: 0 3px 5px 1px #e9e9e9;
  perspective: 500px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: rotateX(0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timer > div > .timer-part-top {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 15px;
  z-index: 999;
}

.timer > div > .timer-part-top > .timer-part-pin {
  width: 8px;
  height: 25px;
  border-radius: 1000px;
  background: #000;
  box-shadow: 0 0 2px 1px #686868;
}

.timer > .timer-second .timer-part-front,
.timer > .timer-second .timer-part-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  top: 0;
  left: 0;
  right: 0;
  backface-visibility: hidden;
  transform-origin: top;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timer > .timer-second .timer-part-front {
  transform: rotateX(0);
  transition: transform 1s ease-in;
}

.timer > .timer-second .timer-part-back {
  transform: rotateX(360deg);
  transition: transform 1s ease-in;
}

.timer .timer-label {
    position: absolute;
    font-size: 1.2rem;
    font-weight: bold;
    bottom: -45px;
}

.top-participants {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px;
    margin-top: 35px;
    & table {
        width: 100%;
        & caption {
            font-size: 2rem !important;
            padding: 50px 0;
            font-weight: bold;
        }
        & th,
        & td {
            padding: 15px 18px;
            border-bottom: 1px solid #ccc;
            text-align: center;
        }
    }
}
