.content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 47.87px 240px 0;

  .first-title {
    text-align: left;
  }

  h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
  }

  @media (max-width: 1194px) {
    padding: 37.81px 60px 0;
  }

  @media (max-width: 812px) {
    gap: 32px;
    padding: 0px 16px 0;
    margin-top: 24px;
  }

  @media (max-width: 640px) {
    h3 {
      font-size: 16px;
    }
  }

  .highlighted {
    color: #fff;
  }

  .branding-highlighted {
    color: #ffab00;
  }

  .button {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    background: linear-gradient(to bottom, #ffc610 0, #f90 100%);
    color: #212121;
    border-radius: 8px;
    padding: 12px 20px;
    height: 44px;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    grid-gap: 0.5rem;
    user-select: none;
    text-decoration: none;
    margin: 0 auto;
    margin-top: -40px;

    @media (max-width: 640px) {
      padding: 8px 12px;
      font-size: 16px;
      margin-top: -16px;
    }

    &:hover {
      background: #ffc610;
    }
  }
}

.when {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 16px;
  background: #191919;
  backdrop-filter: blur(5px);
  padding: 24px;

  p {
    color: #999;
    font-weight: 500;
    line-height: 24px;
  }

  .highlighted {
    font-weight: 700;
    color: #fff;
  }

  .time-wrapper {
    display: flex;
    gap: 1rem;

    @media (max-width: 640px) {
      flex-direction: column;
    }
  }

  .time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    padding: 16px 10px;
  }

  @media (max-width: 1194px) {
    h3 {
      text-align: left;
      margin-bottom: 0;
    }
  }

  @media (max-width: 812px) {
    gap: 12px;
    p {
      font-size: 12px;
      line-height: 20px;
    }

    .time {
      max-width: 260px;
      font-size: 12px;
      border-radius: 12px;

      img {
        height: 16px;
      }
    }
  }

  @media (max-width: 640px) {
    gap: 8px;
    padding: 16px;

    h3 {
      font-size: 14px;
      line-height: 20px;
    }

    .time {
      justify-content: flex-start;
      max-width: unset;
    }
  }
}

.how-to-win {
  p {
    color: #999;
    font-size: 16px;
  }

  .steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
  }

  @media (max-width: 640px) {
    p {
      font-size: 12px;
    }
  }
}

.phases-wrapper {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  row-gap: 24px;
  user-select: none;

  @media (max-width: 640px) {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    font-size: 14px;

    .phase-button {
      display: flex;
      justify-content: space-between;
    }
  }

  .phase-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    cursor: pointer;
  }

  .phase-options {
    display: none;
    p:not(:last-child) {
      margin-bottom: 14px;
    }
  }

  .active {
    display: block;
  }

  .arrow-icon {
    transform: rotate(-180deg);
    width: 14px;
  }

  .rotated {
    transform: rotate(0);
  }
}

ul {
  color: #999;
  font-weight: 500;
  margin-left: 20px;

  li:not(:last-child) {
    margin-bottom: 16px;
  }

  @media (max-width: 640px) {
    font-size: 12px;
  }
}

.participating-games {
  color: #999;

  @media (max-width: 640px) {
    p {
      font-size: 12px;
    }
  }

  .games-list {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;

    ul li {
      margin: 0;
      line-height: 24px;
    }

    @media (max-width: 640px) {
      flex-direction: column;
      gap: 1rem;
    }
  }
}
